-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 826 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 826 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
{
"name": "node-media-server",
"description": "A Node.js implementation of RTMP Server",
"version": "4.2.4",
"bin": "bin/app.js",
"main": "src/index.js",
"scripts": {
"dev": "npx eslint;node bin/app.js",
"start": "node bin/app.js",
"test": "exit 0"
},
"keywords": [
"rtmp",
"flv",
"rtmp",
"livestream",
"server"
],
"author": "Chen Mingliang",
"homepage": "https://github.com/illuspas/Node-Media-Server",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "50.6.0",
"globals": "^15.12.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2",
"express-jwt": "^8.5.1",
"jsonwebtoken": "^9.0.3",
"ws": "^8.18.3"
},
"engines": {
"node": ">=18.0.0"
}
}