forked from dscalzi/HeliosLauncher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·57 lines (57 loc) · 1.45 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
{
"name": "arpglauncher",
"version": "3.0.0",
"productName": "AncientRPG Launcher",
"description": "Modded Minecraft Launcher",
"author": "AncientRPG",
"license": "UNLICENSED",
"private": true,
"main": "index.js",
"scripts": {
"start": "electron .",
"cilinux": "node build.js WINDOWS && node build.js LINUX",
"cidarwin": "node build.js MAC",
"dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node build.js",
"dist:win": "npm run dist -- WINDOWS",
"dist:mac": "npm run dist -- MAC",
"dist:linux": "npm run dist -- LINUX",
"lint": "eslint --config .eslintrc.json ."
},
"engines": {
"node": "12.x.x"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"adm-zip": "^0.5.7",
"async": "^3.2.1",
"discord-rpc": "^3.1.4",
"ejs": "^3.1.5",
"ejs-electron": "^2.1.1",
"electron-updater": "^4.3.4",
"fs-extra": "^9.0.1",
"github-syntax-dark": "^0.5.0",
"jquery": "^3.5.1",
"request": "^2.88.2",
"semver": "^7.3.2",
"tar-fs": "^2.1.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"cross-env": "^7.0.2",
"electron": "^13.5.1",
"electron-builder": "^22.9.1",
"eslint": "^7.32.0"
},
"build": {
"publish": [
{
"provider": "generic",
"url": "https://arpg.vtc.gg"
}
],
"appId": "gg.vtc.arpg",
"nsis": {
"perMachine": true
}
}
}