-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "wemod-patcher",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win portable"
},
"keywords": [],
"author": "k1tbyte",
"license": "Apache-2.0",
"description": "",
"dependencies": {
"asar": "^3.2.0"
},
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "kitbyte.wemod-patcher",
"productName": "WeMod Patcher",
"directories": {
"output": "dist"
},
"win": {
"icon": "./appicon.ico",
"target": [{
"target": "portable",
"arch": ["x64"]
}],
"artifactName": "${productName}.exe"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./appicon.ico",
"uninstallerIcon": "./appicon.ico",
"installerHeaderIcon": "./appicon.ico"
},
"compression": "maximum",
"removePackageScripts": true,
"removePackageKeywords": true,
"extraResources": false,
"electronLanguages": ["en-US"]
}
}