-
-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathelectron-builder.sponsored.json
More file actions
46 lines (46 loc) · 1.12 KB
/
electron-builder.sponsored.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
{
"$schema": "https://json.schemastore.org/electron-builder",
"appId": "io.masscode.app",
"productName": "massCode",
"directories": {
"output": "dist"
},
"files": [
"build/renderer/**/*",
"build/main/**/*",
"!build/**/*.map"
],
"artifactName": "${productName}-${version}-${arch}-sponsored.${ext}",
"mac": {
"target": "dmg",
"icon": "build/icons/icon.icns",
"entitlements": "build/entitlements.mac.inherit.plist",
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"identity": null
},
"win": {
"target": ["nsis", "portable"],
"icon": "build/icons/icon.ico"
},
"linux": {
"target": ["AppImage"],
"icon": "build/icons/icon.png"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "massCode",
"artifactName": "${productName}-${version}-${arch}-sponsored.${ext}"
},
"portable": {
"artifactName": "${productName}-${version}-${arch}-portable-sponsored.${ext}"
},
"protocols": [
{
"name": "massCode",
"schemes": ["masscode"]
}
]
}