-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 877 Bytes
/
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
{
"name": "wally-patch-package",
"version": "1.2.1",
"description": "",
"main": "src/app.js",
"bin": "src/app.js",
"scripts": {
"transpile": "esbuild --platform=node --bundle --outfile=build/app.js src/app.js",
"compile": "pkg --no-bytecode --public --targets latest-win-x64,latest-linux-x64 --public-packages '*' --compress brotli --out-path bin build/app.js",
"clean": "rimraf build",
"build": "run-s transpile compile clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"adm-zip": "^0.5.10",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"node-fetch": "^3.3.2",
"semver": "^7.6.0",
"simple-git": "^3.22.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@yao-pkg/pkg": "^5.11.1",
"esbuild": "^0.20.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5"
}
}