-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.21 KB
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
58
{
"name": "jagprox-launcher",
"version": "2.5.14",
"description": "Launcher for JagProx",
"main": "launcher/launcher.js",
"scripts": {
"start": "electron .",
"launcher": "electron .",
"build": "electron-builder"
},
"author": "JagHack",
"devDependencies": {
"electron-builder": "^24.13.3",
"electron": "^38.4.0"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"electron-log": "^5.1.4",
"electron-updater": "^6.1.8",
"jimp": "^0.22.12",
"minecraft-protocol": "^1.47.0",
"node-fetch": "^2.7.0",
"yaml": "^2.4.1"
},
"build": {
"extraResources": [
{
"from": "server-icon.png",
"to": "server-icon.png"
}
],
"appId": "com.jaghack.jagprox",
"productName": "JagProx",
"artifactName": "JagProx-Setup-${version}.${ext}",
"files": [
"**/*"
],
"directories": {
"output": "dist"
},
"linux":{
"target":["AppImage"]
},
"win": {
"target": "nsis",
"icon": "launcher/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "github",
"owner": "jaghack",
"repo": "jagprox"
}
}
}