-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathelectron-builder.json5
More file actions
50 lines (50 loc) · 1.37 KB
/
electron-builder.json5
File metadata and controls
50 lines (50 loc) · 1.37 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
47
48
49
50
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.lore.app",
"productName": "Lore",
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron/**/*",
"dist/**/*"
],
"extraResources": [
{ "from": "resources/icon.png", "to": "icon.png" },
{ "from": "skills", "to": "skills" }
],
"win": {
"target": ["nsis"],
"icon": "resources/icons/icon.ico",
"artifactName": "${productName}-${version}-Setup.${ext}"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"mac": {
"target": ["dmg"],
"icon": "resources/icons/icon.icns",
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"dmg": {
"contents": [
{ "x": 130, "y": 220 },
{ "x": 410, "y": 220, "type": "link", "path": "/Applications" }
]
},
"linux": {
"target": ["AppImage"],
"icon": "resources/icon.png",
"category": "Utility"
}
}