-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
59
60
{
"name": "repuls-client",
"version": "1.0.0",
"description": "A Client for the Browser Game repuls.io",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"build-win": "electron-builder -w",
"build-mac": "electron-builder -m",
"build-linux": "electron-builder -l",
"build-all": "electron-builder -mwl"
},
"build": {
"appId": "",
"asar": false,
"productName": "Repuls-Client",
"win": {
"target": "nsis",
"icon": "build/game.png"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"license": "",
"artifactName": "Repuls-Client-Windows.${ext}",
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": true,
"runAfterFinish": true,
"shortcutName": "Repuls-Client",
"allowToChangeInstallationDirectory": true
},
"mac": {
"target": "dmg",
"icon": "build/game.png"
},
"dmg": {
"title": "Repuls-Client-Mac",
"artifactName": "GGJay's-Client-Mac.dmg"
}
},
"author": "NeXi",
"license": "ISC",
"dependencies": {
"dialogs": "^2.0.1",
"discord-rpc": "^3.1.3",
"discord.js": "^12.3.1",
"electron-is-dev": "^1.2.0",
"electron-localshortcut": "^3.2.1",
"electron-log": "^4.2.4",
"electron-prompt": "^1.6.0",
"electron-updater": "^4.3.4",
"update-electron-app": "^1.5.0"
},
"devDependencies": {
"electron": "^10.0.1",
"electron-builder": "^22.8.1"
}
}