-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.64 KB
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
84
85
86
{
"name": "@zoom/rtms",
"version": "1.1.0",
"description": "Node.js Wrapper for the Zoom RTMS C SDK",
"main": "./build/Release/index.js",
"types": "rtms.d.ts",
"type": "module",
"scripts": {
"install": "node scripts/install.js"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.5.0",
"prebuild-install": "^7.1.3",
"tar": "^7.5.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"cmake-js": "^8.0.0",
"ts-jest": "^29.4.6",
"typedoc": "^0.28.14",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3"
},
"overrides": {
"tar-fs": ">=2.1.4",
"form-data": ">=4.0.4"
},
"binary": {
"napi_versions": [
9,
10
]
},
"files": [
"CMakeLists.txt",
"index.ts",
"lib/darwin-arm64/.gitkeep",
"lib/include/.gitkeep/",
"lib/linux-x64/.gitkeep",
"rtms.d.ts",
"scripts",
"src/{node,rtms}.cpp",
"src/rtms.h",
"tests",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zoom/rtms.git"
},
"keywords": [
"zoom",
"rtms",
"realtime",
"media",
"streaming",
"real",
"time",
"sdk"
],
"bugs": {
"url": "https://github.com/zoom/rtms/issues"
},
"homepage": "https://github.com/zoom/rtms#readme",
"author": "Zoom Communications, Inc.",
"contributors": [
{
"name": "Max Mansfield",
"email": "max.mansfield@zoom.us",
"url": "https://www.npmjs.com/~maxmansfield"
}
],
"os": [
"linux",
"darwin"
],
"cpu": [
"x64",
"arm64"
],
"license": "MIT",
"engines": {
"node": ">=22.0.0"
}
}