-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
40 lines (40 loc) · 919 Bytes
/
electron-builder.json
File metadata and controls
40 lines (40 loc) · 919 Bytes
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
{
"appId": "com.memora.app",
"productName": "Memora",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"publish": {
"provider": "github",
"owner": "albindavidc",
"repo": "Memora"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"icon": "assets/icon.ico",
"artifactName": "${productName}-Setup-${version}.${ext}",
"verifyUpdateCodeSignature": false,
"certificateFile": "cert.pfx",
"certificatePassword": "Memora123"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Memora",
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico"
}
}