-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 960 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 960 Bytes
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
{
"name": "janus-whip-server",
"description": "Simple Janus-based WHIP server library",
"version": "1.1.0",
"type": "module",
"keywords": [
"whip",
"wish",
"janus",
"webrtc",
"meetecho"
],
"author": {
"name": "Lorenzo Miniero",
"email": "lorenzo@meetecho.com",
"url": "https://www.meetecho.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetecho/simple-whip-server.git"
},
"bugs": {
"url": "https://github.com/meetecho/simple-whip-server/issues"
},
"license": "ISC",
"main": "src/whip.js",
"exports": {
".": "./src/whip.js"
},
"files": [
"src/whip.js"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"janode": "^1.8.0",
"janode-ndi": "^1.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"
}
}