-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
70 lines (70 loc) · 2.13 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "reg-actions",
"version": "0.0.0",
"private": true,
"description": "github actions for reg",
"main": "lib/main.js",
"type": "module",
"scripts": {
"package:entry": "esbuild node_modules/@bokuweb/reg-cli-wasm/dist/entry.cjs --bundle --platform=node --format=cjs --outfile=dist/lib/entry.cjs",
"package:worker": "esbuild node_modules/@bokuweb/reg-cli-wasm/dist/worker.cjs --bundle --platform=node --format=cjs --outfile=dist/lib/worker.cjs",
"package:wasm": "cp node_modules/@bokuweb/reg-cli-wasm/dist/shared/reg.wasm dist/lib/reg.wasm",
"package:main": "esbuild src/main.ts --bundle --platform=node --format=cjs --outfile=dist/lib/index.cjs",
"package": "npm run package:entry && npm run package:worker && npm run package:main && npm run package:wasm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bokuweb/reg-actions.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"pnpm": {
"overrides": {
"fsevents": "1.2.13.",
"ansi-regex": "^6.0.1",
"glob-parent": "^6.0.2",
"trim-newlines": "^4.0.2",
"axios": "^1.1.3",
"kind-of": "^6.0.3",
"minimist": "^1.2.7",
"shell-quote": "^1.7.3",
"braces": "^3.0.2"
}
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@bokuweb/reg-cli-wasm": "0.0.0-experimental1",
"@types/glob": "^8.1.0",
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cpy": "^11.1.0",
"exponential-backoff": "^3.1.1",
"fast-glob": "^3.3.2",
"glob": "^10.4.1",
"loglevel": "^1.9.2",
"make-dir": "^4.0.0",
"reg-cli": "^0.18.8"
},
"devDependencies": {
"@octokit/openapi-types": "^22.2.0",
"@types/adm-zip": "^0.5.5",
"@types/axios": "^0.14.0",
"@types/loglevel": "^1.6.3",
"@types/make-dir": "^2.1.0",
"esbuild": "^0.24.0",
"@types/node": "^22.7.7",
"@vercel/ncc": "^0.38.2",
"typescript": "^5.6.3"
}
}