-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 KB
/
package.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
{
"name": "openfortivpn-webview",
"version": "1.2.3",
"homepage": "https://github.com/gm-vm/openfortivpn-webview",
"author": {
"email": "[email protected]",
"name": "Nobody"
},
"scripts": {
"start": "electron index.js",
"dist:linux": "electron-builder --linux --x64 --arm64",
"dist:mac": "electron-builder --mac"
},
"main": "index.js",
"private": true,
"devDependencies": {
"electron": "^28.2.0",
"electron-builder": "^24.13.3"
},
"dependencies": {
"yargs": "^17.7.2"
},
"build": {
"appId": "openfortivpn-webview",
"linux": {
"publish": null,
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
"AppImage",
"tar.xz",
"deb"
]
},
"mac": {
"mergeASARs": false,
"identity": null,
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
]
},
"dmg": {
"writeUpdateInfo": false
}
}
}