-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1017 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
{
"name": "zego-electron-quick-start",
"version": "1.0.0",
"description": "A zego electron sdk quick start application",
"main": "main.js",
"scripts": {
"postinstall": "node node_modules/zegodown/bin/zegodown -v 5.0.9-2021-02",
"start": "electron .",
"pkg": "node pkg.js"
},
"keywords": [
"zego",
"electron",
"video",
"audio",
"live"
],
"author": "zego",
"license": "MIT",
"devDependencies": {
"electron": "5.0.12",
"electron-builder": "^20.28.4"
},
"dependencies": {
"zegoliveroom": "1.0.3",
"zegodown": "2.0.13"
},
"build": {
"mac": {
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "I need access to your microphone to send your voice to others in the session room.",
"NSCameraUsageDescription": "I need access to your camera so that others can see you in the session room."
}
}
}
}