-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
61
62
63
64
65
66
67
{
"name": "Sploder",
"version": "6.0.1",
"author": "Saptarshi <saptarshi12345yt@gmail.com>",
"main": "dist/main/main.js",
"description": "Sploder Launcher",
"license": "GPL-2.0-only",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist-64bit": "yarn compile && electron-builder",
"dist-32bit": "yarn compile && electron-builder --ia32",
"dist": "node scripts/build.js",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"upload": "node scripts/uploader.js"
},
"dependencies": {
"discord-rpc": "^4.0.1",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"electron": "11.0.0",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.7.0",
"webpack": "~4.42.1",
"yarn": "1.22.22"
},
"build": {
"asar": true,
"files": [ "./dist/main/*" ],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
}
]
},
"publish": null,
"appId": "com.sploder",
"productName": "Sploder",
"linux": {
"target": ["snap", "AppImage", "deb", "rpm", "pacman"],
"category": "Games",
"icon": "build/icon.png"
},
"mac": {
"icon": "build/macos.png",
"identity": null,
"target": ["dir"]
},
"nsis": {
"allowElevation": "true",
"oneClick": "false",
"perMachine": "true",
"allowToChangeInstallationDirectory": "true",
"deleteAppDataOnUninstall": "true",
"runAfterFinish": "true",
"artifactName": "Sploder-Setup-${version}-${arch}.${ext}"
},
"extraResources": [
"./plugins/**",
"./local/**",
"./src/renderer/preload.js"
]
}
}