-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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": "palifenlauncher",
"version": "1.0.1",
"productName": "Palifen Launcher",
"description": "Modded Minecraft Launcher",
"author": "Palifen (https://github.com/Palifen)",
"license": "UNLICENSED",
"homepage": "https://palifen.fr",
"bugs": {
"url": "https://github.com/Palifen/PalifenLauncher/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 ."
},
"engines": {
"node": "14.x.x"
},
"dependencies": {
"@electron/remote": "^1.0.4",
"adm-zip": "^0.5.4",
"async": "^3.2.0",
"discord-rpc": "^3.2.0",
"ejs": "^3.1.6",
"ejs-electron": "^2.1.1",
"electron-updater": "^4.3.8",
"fs-extra": "^9.1.0",
"github-syntax-dark": "^0.5.0",
"jquery": "^3.6.0",
"request": "^2.88.2",
"semver": "^7.3.5",
"tar-fs": "^2.1.1",
"winreg": "^1.2.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^12.0.1",
"electron-builder": "^22.10.5",
"eslint": "^7.22.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Palifen/PalifenLauncher.git"
}
}