-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "janode",
"description": "Meetecho adapter for the Janus WebRTC Server",
"version": "1.8.0",
"type": "module",
"keywords": [
"janus",
"webrtc",
"sfu",
"meetecho",
"nodejs"
],
"author": {
"name": "Alessandro Toppi",
"email": "atoppi@meetecho.com"
},
"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",
"./handle": "./src/handle.js",
"./plugins/audiobridge": "./src/plugins/audiobridge-plugin.js",
"./plugins/echotest": "./src/plugins/echotest-plugin.js",
"./plugins/recordplay": "./src/plugins/recordplay-plugin.js",
"./plugins/sip": "./src/plugins/sip-plugin.js",
"./plugins/streaming": "./src/plugins/streaming-plugin.js",
"./plugins/textroom": "./src/plugins/textroom-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",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"jsdoc": "^4.0.4"
},
"engines": {
"node": " >=18.18.0"
},
"scripts": {
"build": "npm install --omit=dev",
"lint": "npx eslint --debug",
"build-docs": "rm -rf ./docs && npx jsdoc -c ./jsdoc.json --destination ./docs ./src"
}
}