-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathelectron-builder.json
44 lines (44 loc) · 989 Bytes
/
electron-builder.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
{
"appId": "com.uniiem.bleheart",
"productName": "HeartBeat Monitor",
"copyright": "Copyright © 2022 ${author}",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": [
"dist"
],
"mac": {
"artifactName": "${productName}_${version}.${ext}",
"target": [
"dmg"
]
},
"win": {
"icon": "public/favicon_256.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}_${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"shortcutName": "心动值监测器",
"menuCategory": "UniiemSoft"
},
"squirrelWindows": {
"name": "HeartBeatMonitor",
"useAppIdAsId": true,
"iconUrl": "https://uniiem.com/assets/wiki/ctfever/icon.svg",
"msi": false
}
}