-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sorbay",
"productName": "Sorbay",
"version": "0.0.22",
"description": "#TODO",
"main": "src/index.js",
"repository": "sorbayhq/sorbay-client",
"scripts": {
"start": "electron .",
"build": "electron-builder -mw",
"release": "electron-builder -mw --publish always"
},
"keywords": [],
"author": {
"name": "Jannis Gebauer",
"email": "[email protected]"
},
"build": {
"appId": "io.sorbay",
"afterSign": "electron-builder-notarize",
"mac": {
"icon": "src/assets/images/menubar/icon.icns",
"publish": [
"github"
],
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"extendInfo": {
"LSUIElement": 1,
"NSMicrophoneUsageDescription": "Please give us access to your microphone",
"NSCameraUsageDescription": "Please give us access to your camera",
"com.apple.security.device.audio-input": true,
"com.apple.security.device.camera": true
}
},
"win": {
"signingHashAlgorithms": [
"sha256"
],
"publisherName": "Jannis Gebauer",
"signAndEditExecutable": true,
"verifyUpdateCodeSignature": true,
"publish": [
"github"
],
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
},
"dependencies": {
"active-win": "^8.0.3",
"dotenv": "^16.0.3",
"electron-log": "^4.4.8",
"electron-reload": "^2.0.0-alpha.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"menubar": "^9.2.1"
},
"devDependencies": {
"electron": "20.0.2",
"electron-builder": "^23.3.3",
"electron-builder-notarize": "^1.5.0"
}
}