forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 734 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
{
"name": "node-media-server",
"description": "A Node.js implementation of RTMP Server",
"version": "4.0.12",
"bin": "bin/app.js",
"main": "src/index.js",
"scripts": {
"dev": "npx eslint;node bin/app.js",
"start": "node bin/app.js"
},
"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": {
"express": "^4.21.2",
"http2-express": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}