-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathelectron-builder.json
44 lines (44 loc) · 933 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
{
"productName": "Pomodoro Cycle",
"directories": {
"output": "release/"
},
"appId": "com.pomodoro-cycle",
"files": [
"**/*",
"!**/*.ts",
"!*.code-workspace",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!src/",
"!e2e/",
"!hooks/",
"!angular.json",
"!_config.yml",
"!karma.conf.js",
"!tsconfig.json",
"!tslint.json",
"embedded.provisionprofile"
],
"win": {
"icon": "dist",
"target": ["portable"]
},
"mac": {
"category": "public.app-category.productivity",
"icon": "dist/favicon.icns",
"target": ["dmg"]
},
"mas": {
"type": "distribution",
"category": "public.app-category.productivity",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"icon": "dist/favicon.icns"
},
"linux": {
"icon": "dist",
"target": ["AppImage"]
}
}