-
Notifications
You must be signed in to change notification settings - Fork 26
/
electron-builder.json
115 lines (115 loc) · 2.71 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"appId": "org.gapminder.gapminderoffline",
"extraResources": [
"ddf--gapminder--systema_globalis/**/*",
"ddf--worldbank--povcalnet/**/*",
"ddf--gapminder--fasttrack/**/*",
"ddf--gapminder--billionaires/**/*",
"ddf--open_numbers--world_development_indicators/**/*",
"ddf--gapminder--country_flag_svg/**/*",
"export-template/**/*",
"preview-data/**/*"
],
"productName": "Gapminder Offline",
"directories": {
"output": "app-builds"
},
"files": [
"**/*",
"!ddf--gapminder--systema_globalis/**/*",
"!ddf--worldbank--povcalnet/**/*",
"!ddf--gapminder--fasttrack/**/*",
"!ddf--gapminder--billionaires/**/*",
"!ddf--open_numbers--world_development_indicators/**/*",
"!ddf--gapminder--country_flag_svg/**/*",
"!export-template/**/*",
"!preview-data/**/*",
"!**/*.ts",
"!*.code-workspace",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!src/",
"!e2e/",
"!hooks/",
"!angular.json",
"!_config.yml",
"!karma.conf.js",
"!tsconfig.json",
"!tslint.json",
"!www",
"!.angular/**/*"
],
"win": {
"icon": "dist/app-icon.png",
"target": [
"nsis:x64",
"nsis:ia32",
"zip:x64",
"zip:ia32",
"portable"
],
"verifyUpdateCodeSignature": false,
"publisherName": "Sectigo RSA Code Signing CA",
"certificateSubjectName": "Stiftelsen Gapminder"
},
"mac": {
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"type": "distribution",
"icon": "dist/app-icon.icns",
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"gatekeeperAssess": false,
"target": {
"arch": [
"universal"
],
"target":"default"
}
},
"afterSign": "notarize.js",
"linux": {
"icon": "dist/app-icon.png",
"target": [
"AppImage"
]
},
"nsis": {
"oneClick": true,
"perMachine": false,
"deleteAppDataOnUninstall": true,
"include": "custom-uninstall.nsh",
"allowElevation": false,
"createStartMenuShortcut": false
},
"dmg": {
"sign": false,
"title": "Gapminder Offline",
"icon": "icons/gapminder_package.icns",
"background": "icons/gapminder.png",
"window": {
"width": 898,
"height": 511
},
"contents": [
{ "x": 635, "y": 400, "type": "link", "path": "/Applications" },
{ "x": 253, "y": 400 }
]
},
"publish": [
{
"provider": "s3",
"bucket": "gapminder-offline",
"path": ""
}
],
"fileAssociations": [
{
"ext": "gmstat",
"name": "Gapminder offline chart",
"description": "Gapminder offline chart",
"role": "Viewer"
}
]
}