forked from dscalzi/HeliosLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "risecraftlauncher",
"version": "0.9.7",
"productName": "RiseCraft Launcher",
"description": "Modded Minecraft Launcher",
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
"license": "UNLICENSED",
"homepage": "https://github.com/TheCherry/RiseCraftLauncher/",
"bugs": {
"url": "https://github.com/TheCherry/RiseCraftLauncher/issues"
},
"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 .",
"deploy": "electron-builder build --win --publish always"
},
"engines": {
"node": "12.x.x"
},
"dependencies": {
"adm-zip": "^0.4.14",
"async": "^3.2.0",
"discord-rpc": "3.1.0",
"ejs": "^3.0.1",
"ejs-electron": "^2.0.3",
"electron-updater": "^4.2.5",
"fs-extra": "^8.1.0",
"github-syntax-dark": "^0.5.0",
"jquery": "^3.4.1",
"request": "^2.88.2",
"semver": "^7.1.3",
"tar-fs": "^2.0.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"cross-env": "^6.0.3",
"electron": "^8.1.1",
"electron-builder": "^22.4.1",
"eslint": "^6.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TheCherry/RiseCraftLauncher.git"
}
}