-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "janode",
"description": "Meetecho adapter for the Janus WebRTC Server",
"version": "1.7.1",
"type": "module",
"keywords": [
"janus",
"webrtc",
"sfu",
"meetecho",
"nodejs"
],
"author": {
"name": "Alessandro Toppi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetecho/janode.git"
},
"bugs": {
"url": "https://github.com/meetecho/janode/issues"
},
"license": "ISC",
"main": "./src/janode.js",
"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",
"unix-dgram": "^2.0.4",
"ws": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "^9.4.0",
"globals": "^15.4.0"
},
"engines": {
"node": " >=18.18.0"
},
"scripts": {
"build": "npm install --omit=dev",
"lint": "npx eslint --debug"
}
}