forked from gm-vm/openfortivpn-webview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 874 Bytes
/
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
{
"name": "openfortivpn-webview",
"version": "1.2.0",
"scripts": {
"start": "electron index.js",
"dist:linux": "electron-builder --linux",
"dist:mac": "electron-builder --mac"
},
"main": "index.js",
"private": true,
"devDependencies": {
"electron": "^28.2.0",
"electron-builder": "^24.9.1"
},
"dependencies": {
"yargs": "^17.7.2"
},
"build": {
"appId": "openfortivpn-webview",
"linux": {
"target": [
"AppImage",
"tar.xz"
]
},
"mac": {
"mergeASARs": false,
"identity": null,
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
]
},
"dmg": {
"writeUpdateInfo": false
}
}
}