forked from vladmandic/stream-rtsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "stream-rtsp",
"version": "0.0.1",
"description": "Stream RTSP to Browser via WecRTC, HLS or DASH",
"main": "server/serve.js",
"scripts": {
"build": "cd stream; go build -ldflags='-s -w' .; cd ..",
"start": "node server/serve",
"lint": "eslint server client"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/stream-rtsp.git"
},
"author": "Vladimir Mandic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladmandic/stream-rtsp/issues"
},
"homepage": "https://github.com/vladmandic/stream-rtsp#readme",
"keywords": [
"rtsp",
"rtmp",
"webrtc",
"hls",
"dash",
"ffmpeg",
"stream-server"
],
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"hint": "^6.2.0"
},
"dependencies": {
"@vladmandic/pilogger": "^0.4.4"
}
}