-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 852 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
{
"name": "th155-nut-watcher",
"version": "0.3.0",
"description": "A package that makes modding squirrel .nut files for th155 easier",
"main": "index.js",
"author": "Horoneru",
"license": "MIT",
"dependencies": {
"chalk": "^4.0.0",
"chokidar": "^3.6.0",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"globals": "^15.10.0",
"pkg": "^5.8.1",
"resedit-cli": "^2.0.0"
},
"scripts": {
"build-linux": "pkg index.js -t linux -o nut-watcher",
"build-windows": "pkg -t windows index.js -o nut-watcher && npm run generate-icon-windows",
"generate-icon-windows": "npx resedit-cli --in nut-watcher.exe --out nut-watcher.exe --icon 1,assets/icon.ico --no-grow"
},
"pkg": {
"assets": "assets/**"
}
}