-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.05 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.05 KB
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
{
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/glob": "^0.6.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"pnpm": {
"overrides": {
"undici@>=4.5.0 <5.28.5": ">=5.28.5",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12"
}
},
"scripts": {
"build": "for name in bundle rename; do npm run build:$name; done",
"build:bundle": "pnpm run /^build:bundle:.+$/",
"build:bundle:create-release": "ncc build src/create-release.ts -m -o dist/create-release",
"build:bundle:digest": "ncc build src/digest.ts -m -o dist/digest",
"build:rename": "find dist -mindepth 1 -type d -exec bash -c 'mv $1/index.js dist/${1#*/}.mjs && echo $1' -- {} \\; | xargs -exec rm -fr",
"clean": "rimraf dist/",
"prebuild": "npm run clean"
},
"type": "module"
}