-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "google-workspace",
"productName": "Google Workspace",
"version": "1.3.54",
"description": "An unofficial desktop app for Google Workspace",
"main": "./src/index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder -p always"
},
"repository": "https://github.com/rimonhanna/GoogleWorkspace",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "Rimon Hanna",
"license": "MIT",
"devDependencies": {
"builder-util": "^22.8.0",
"electron": "^8.5.3",
"electron-builder": "*",
"electron-builder-notarize-pkg": "*",
"electron-notarize": "*",
"electron-publisher": "*",
"js-yaml": "^3.14.0",
"read-pkg-up": "^7.0.1"
},
"dependencies": {
"about-window": "*",
"darkreader": "*",
"electron-default-menu": "^1.0.2",
"electron-editor-context-menu": "^1.1.1",
"electron-is-dev": "^1.2.0",
"electron-localshortcut": "^3.2.1",
"electron-settings": "^4.0.2",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"mac-screen-capture-permissions": "*"
},
"build": {
"appId": "com.rimonhanna.googleWorkspace",
"productName": "Google Workspace",
"afterAllArtifactBuild": "electron-builder-notarize-pkg",
"publish": [
{
"provider": "github",
"releaseType": "release",
"publishAutoUpdate": true
}
],
"win": {},
"mac": {
"target": [
"pkg"
],
"hardenedRuntime": true,
"entitlements": "./build/entitlements.mac.plist",
"provisioningProfile": "./build/Google_Workspace.provisionprofile",
"extendInfo": {
"NSCameraUsageDescription": "This app requires camera access for video call in Google Meet.",
"NSMicrophoneUsageDescription": "This app requires microphone access for audio call in Google Meet."
}
}
}
}