-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1007 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "setup-node",
"version": "1.0.0",
"description": "Advanced Node.js setup GitHub Action with caching, semver, and auto-detection",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:index && npm run build:post && npm run finalize",
"build:index": "ncc build src/index.ts -o dist/index",
"build:post": "ncc build src/post.ts -o dist/post",
"finalize": "cp dist/index/index.js dist/index.js && cp dist/post/index.js dist/post.js && rm -rf dist/index dist/post",
"tsc": "tsc"
},
"keywords": [
"github-actions",
"nodejs",
"setup-node",
"ci-cd"
],
"author": "Ananta Cloud",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1",
"@actions/exec": "^1.1.1",
"@actions/cache": "^3.2.1",
"semver": "^7.6.0"
},
"overrides": {
"undici": "^6.23.1"
},
"devDependencies": {
"@types/node": "^20.19.39",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}