-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
75 lines (75 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "rtsp-relay",
"version": "1.9.0",
"author": "Kyle Hensel",
"license": "MIT",
"description": "📽 Relay an RTSP stream through an existing express.js server",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"repository": "https://github.com/k-yle/rtsp-relay",
"files": [
"browser",
"index.d.ts",
"index.js"
],
"keywords": [
"rtsp",
"rtsp-stream",
"stream",
"websocket",
"ws",
"express",
"ffmpeg",
"jsmpeg"
],
"scripts": {
"pretest": "chmod u+x test/rtsp-simple-server",
"lint": "eslint --format pretty --ext .js,ts,.tsx --ignore-path .gitignore .",
"test": "tsc && jest --runInBand",
"build": "tsc index.js browser/index.js --declaration --allowJs --emitDeclarationOnly --resolveJsonModule --skipLibCheck",
"trypublish": "npm publish --provenance || true"
},
"dependencies": {
"express-ws": "^5.0.2",
"ffmpeg-static": "^5.2.0",
"ps-node": "^0.1.6"
},
"devDependencies": {
"@types/express-ws": "^3.0.5",
"@types/ffmpeg-static": "^3.0.3",
"@types/jest": "^29.5.13",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^20.16.11",
"@types/ps-node": "^0.1.3",
"@types/puppeteer": "^7.0.4",
"eslint": "^8.57.1",
"eslint-config-kyle": "^9.42.0",
"express": "^4.21.1",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"puppeteer": "^22.15.0",
"typescript": "^5.6.3"
},
"eslintConfig": {
"rules": {
"logical-assignment-operators": 0
},
"extends": "kyle"
},
"prettier": "eslint-config-kyle/prettier",
"jest": {
"forceExit": true,
"testTimeout": 20000,
"setupFiles": [
"./test/setupTests.js"
],
"reporters": [
"default",
"jest-image-snapshot/src/outdated-snapshot-reporter.js"
],
"collectCoverage": true
}
}