forked from appium/appium-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
50 lines (50 loc) · 917 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
45
46
47
48
49
50
{
"productName": "Appium Inspector",
"appId": "io.appium.inspector",
"asar": true,
"directories": {
"output": "release"
},
"files": ["dist/"],
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"fileAssociations": [
{
"ext": "appiumsession",
"name": "Appium Session",
"role": "Editor"
}
],
"mac": {
"category": "public.app-category.developer-tools"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"win": {
"target": ["nsis", "zip"]
},
"nsis": {
"oneClick": false
},
"linux": {
"target": ["AppImage", "tar.gz"],
"category": "Development"
},
"publish": {
"provider": "github",
"owner": "appium",
"vPrefixedTagName": true
}
}