forked from AgoraIO-Extensions/Electron-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
80
81
82
83
{
"name": "agora-electron-sdk",
"version": "2.9.0-rc.102-build.315",
"description": "agora-electron-sdk",
"main": "js/AgoraSdk.js",
"types": "types/AgoraSdk.d.ts",
"author": "agora.io",
"scripts": {
"switch:arch": "just switch:arch",
"sync:lib": "just sync:lib",
"install": "just install",
"download": "just download",
"build:node": "just build:node",
"build:electron": "just build:electron",
"build:types": "rimraf ./types && tsc -p dtsconfig.json",
"prebuild:ts": "npm run build:types",
"build:ts": "rimraf ./js && tsc -p tsconfig.json",
"pretest": "npm run build:node",
"test": "jest --detectOpenHandles --forceExit",
"quicktest": "jest --detectOpenHandles --forceExit",
"doc": "typedoc ts/API --out ./docs --hideGenerator --mode file --target es6 --name Agora\\ Electron\\ SDK\\ API\\ Reference --excludeExternals --excludePrivate --readme index.md",
"prepublishOnly": "npm run build:ts",
"example": "cd example && npm run dev"
},
"files": [
"scripts",
"js",
"jest.config.js",
"just-task.js"
],
"gypfile": false,
"dependencies": {
"bluebird": "^3.7.1",
"download": "^7.1.0",
"extract-zip": "^1.6.7",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"just-task": "^0.14.0",
"lodash.isequal": "^4.5.0",
"nan": "^2.14.0",
"node-gyp": "^5.1.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"yuv-buffer": "^1.0.0",
"yuv-canvas": "^1.2.1"
},
"devDependencies": {
"@types/node": "10.17.5",
"jest": "24.9.0",
"prettier": "1.19.1",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tslint": "5.20.1",
"typedoc": "0.15.0",
"typescript": "3.7.2"
},
"peerDependencies": {},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgoraIO-Community/Agora-RTC-SDK-for-Electron.git"
},
"agora_electron": {
"libUrl": {
"win": "https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows(x86)_v2.9.0.102_20200216_FULL_3151.zip",
"win64": "https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows(x64)_v2.9.0.102_20200217_FULL_92.zip",
"mac": "https://download.agora.io/sdk/release/Agora_Native_SDK_for_Mac_v2_9_0_102_FULL_20200216_1279.zip"
}
},
"keywords": [
"electron",
"agora",
"sdk",
"native"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AgoraIO-Community/Agora-RTC-SDK-for-Electron/issues"
},
"homepage": "https://github.com/AgoraIO-Community/Agora-RTC-SDK-for-Electron#readme"
}