-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vivcal",
"version": "1.0.0",
"description": "",
"main": "main.js",
"dependencies": {
"electron-log": "^5.2.2",
"googleapis": "^144.0.0",
"localtunnel": "^2.0.2",
"node-fetch": "^3.3.2",
"server-destroy": "^1.0.1"
},
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-notarize": "^1.2.2"
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.portkey.vivcal",
"productName": "Vivcal",
"mac": {
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"sign": false
},
"win": {
"target": [
"nsis",
"msi"
]
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Utility"
},
"files": [
"**/*",
"google-creds.json",
"icon.png",
"node_modules/googleapis/**/*",
"node_modules/electron-log/**/*"
],
"extraResources": [
{
"from": "node_modules/",
"to": "node_modules/",
"filter": [
"**/*"
]
}
]
},
"author": "",
"license": "ISC"
}