forked from meetecho/janode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "janode",
"description": "Meetecho adapter for the Janus WebRTC Server",
"version": "1.6.2",
"type": "module",
"keywords": [
"janus",
"webrtc",
"sfu",
"meetecho",
"nodejs"
],
"author": {
"name": "Alessandro Toppi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/meetecho/janode.git"
},
"bugs": {
"url": "https://github.com/meetecho/janode/issues"
},
"license": "ISC",
"exports": {
".": "./src/janode.js",
"./plugins/audiobridge": "./src/plugins/audiobridge-plugin.js",
"./plugins/echotest": "./src/plugins/echotest-plugin.js",
"./plugins/streaming": "./src/plugins/streaming-plugin.js",
"./plugins/videoroom": "./src/plugins/videoroom-plugin.js"
},
"files": [
"src/*.js",
"src/utils/*.js",
"src/plugins/*.js"
],
"dependencies": {
"isomorphic-ws": "^4.0.1",
"ws": "^8.0.0"
},
"optionalDependencies": {
"unix-dgram": "^2.0.4"
},
"engines": {
"node": " >=14.13.1 || >=16.0.0"
},
"scripts": {
"build": "npm install --production"
}
}