-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.87 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
{
"name": "openheroselect",
"version": "4.9.5",
"description": "Open Source HeroSelect for Marvel Ultimate Alliance (2006)",
"main": "index.js",
"scripts": {
"pipsetup": "pip install auto-py-to-exe",
"envsetup": "node ./_build.js -e",
"clean": "npm i && npm run envsetup && node ./_build.js -c",
"fullclean": "npm i && npm run envsetup && node ./_build.js -f",
"build": "npm run envsetup && node ./_build.js -a win-x64",
"build32": "npm run envsetup && node ./_build.js -a win-x86",
"buildlinux": "npm run envsetup && node ./_build.js -a linux-x64",
"distpackage-x64": "npm run fullclean && npm run build && node ./_build.js -p",
"distpackage-x86": "npm run fullclean && npm run build32 && node ./_build.js -p 32",
"distpackagelinux-x64": "npm run fullclean && npm run buildlinux && node ./_build.js -p linux-64",
"buildohs": "npm run envsetup && node ./_build.js -t ohs -a win-x64",
"buildohs32": "npm run envsetup && node ./_build.js -t ohs -a win-x86",
"buildohslinux": "npm run envsetup && node ./_build.js -t ohs -a linux-x64",
"buildjson2xmlb": "node ./_build.js -t json2xmlb -a win-x64",
"buildjson2xmlb32": "node ./_build.js -t json2xmlb -a win-x86",
"buildjson2xmlblinux": "node ./_build.js -t json2xmlb -a linux-x64",
"buildcopyfiles": "node ./_build.js -t copyfiles"
},
"bin": {
"index": "./index.js"
},
"keywords": [],
"author": "Tony Stark @ MarvelMods (TheRealPSV @ GitHub)",
"dependencies": {
"cross-spawn": "^7.0.6",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"fast-xml-parser": "^4.4.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.12",
"minimist": "^1.2.8",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@yao-pkg/pkg": "^5.11.5",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"node-7z": "^3.0.0",
"rcedit": "^4.0.1"
}
}