-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron_builder.json5
52 lines (52 loc) · 1.07 KB
/
electron_builder.json5
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
{
"$schema": "http://json.schemastore.org/electron-builder",
"productName": "Matex",
"appId": "org.Matex.com",
"asar": true,
"directories": {
"app": "./release/app",
"buildResources": "./assets",
"output": "./release/build"
},
"extraResources": [
"./assets/**"
],
"files": [
"dist",
"package.json"
],
"mac": {
"icon": "./assets/icon/icon.png",
"hardenedRuntime": true,
"electronLanguages": [
"en",
"zh"
]
},
"win": {
"icon": "./assets/icon/icon.ico",
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": false,
"guid": "matex",
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./assets/icon/icon.ico",
"uninstallerIcon": "./assets/icon/icon.ico",
"installerHeaderIcon": "./assets/icon/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "matex"
},
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080/"
}
]
}