-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelectron-builder.json
More file actions
44 lines (44 loc) · 858 Bytes
/
electron-builder.json
File metadata and controls
44 lines (44 loc) · 858 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
41
42
43
44
{
"appId": "com.diffviewer.app",
"productName": "Git Diff Viewer",
"directories": {
"output": "dist"
},
"files": [
"build/**/*",
"package.json",
"cli.js",
"!.vscode/**",
"!.git/**",
"!node_modules/.cache/**"
],
"extraMetadata": {
"main": "build/electron/main.js"
},
"npmRebuild": false,
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": ["universal"]
},
{
"target": "zip",
"arch": ["universal"]
}
],
"icon": "public/logo.png",
"identity": "-",
"hardenedRuntime": true,
"artifactName": "${productName}-${version}-${os}.${ext}"
},
"win": {
"target": "nsis",
"icon": "public/logo.png"
},
"linux": {
"target": "AppImage",
"icon": "public/logo.png"
}
}