forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
104 lines (104 loc) · 2.19 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
{
"productName": "Simplenote",
"appId": "com.automattic.simplenote",
"directories": {
"output": "release",
"buildResources": "resources"
},
"files": [
"desktop",
"dist",
"shared"
],
"mac": {
"icon": "./resources/images/app-icon.icns",
"category": "public.app-category.social-networking",
"artifactName": "Simplenote-macOS-${version}.${ext}"
},
"dmg": {
"title": "Simplenote Installer",
"artifactName": "Simplenote-macOS-${version}.${ext}",
"icon": "./resources/images/dmg-icon.icns",
"iconSize": 150,
"background": "./resources/images/dmg-background.png",
"contents": [{
"x": 480,
"y": 240,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 240,
"type": "file"
}
]
},
"win": {
"icon": "resources/images/simplenote.ico",
"artifactName": "Simplenote-win-${version}-${arch}.${ext}",
"target": [{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
]
},
"nsis": {
"perMachine": true,
"artifactName": "Simplenote-win-${version}-${arch}.${ext}",
"deleteAppDataOnUninstall": true
},
"linux": {
"icon": "resources/images/",
"artifactName": "Simplenote-linux-${version}-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
},
{
"target": "deb",
"arch": [
"x64",
"ia32"
]
},
{
"target": "rpm",
"arch": [
"x64",
"ia32"
]
},
{
"target": "tar.gz",
"arch": [
"x64",
"ia32"
]
}
],
"synopsis": "The simplest way to keep notes",
"category": "Utility",
"executableName": "simplenote",
"desktop": {
"Name": "Simplenote",
"Comment": "Simplenote for Linux",
"Type": "Application",
"Icon": "simplenote",
"StartupNotify": "true",
"Categories": "Utility"
},
"vendor": "Automattic, Inc.",
"maintainer": "Automattic, Inc. <support@simplenote.com>"
},
"deb": {
"depends": ["gconf2"]
}
}