-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mapsetverifier",
"version": "1.0.0",
"author": "Naxess <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Naxesss/MapsetVerifier.git"
},
"main": "./app/main.js",
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "^22.10.5"
},
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"chart.js": "^2.9.4",
"electron-localshortcut": "^3.1.0",
"electron-updater": "5.0.0",
"jquery": "^3.5.1",
"winreg": "^1.2.4"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron ./app",
"dist": "electron-builder --x64 -w",
"dist-all": "electron-builder --ia32 --x64 -wl",
"release": "build -wl"
},
"build": {
"appId": "mapsetverifier",
"productName": "Mapset Verifier",
"asar": false,
"extraFiles": [
{
"from": "./app/bass.dll",
"to": "."
},
"bass.dll",
{
"from": "./app/libbass.so",
"to": "."
},
"libbass.so"
],
"publish": [
{
"provider": "github"
}
],
"linux": {
"target": "tar.gz",
"files": [
"!**/win-x86/*"
]
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "build/icon.ico",
"files": [
"!**/linux-x64/*"
]
},
"nsis": {
"uninstallDisplayName": "${productName} Uninstaller.exe",
"oneClick": false,
"perMachine": true,
"runAfterFinish": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName} Installer.exe",
"installerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico"
}
}
}