-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"name": "mmm-rtspstream",
"version": "4.1.0",
"type": "commonjs",
"description": "MagicMirror² module for RTSP camera snapshots + VLC (local) or WebRTC (remote) playback",
"keywords": [
"magic mirror",
"rtsp",
"camera"
],
"main": "MMM-RTSPStream.js",
"author": "shbatm",
"license": "MIT",
"scripts": {
"demo": "bash ./scripts/run_demo_webrtc.sh",
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"preinstall": "./scripts/preinstall.sh",
"release": "commit-and-tag-version --config ./changelog.config.js",
"test": "node --run test:unit && node --run lint",
"test:unit": "node --test tests/**/*.test.mjs"
},
"devDependencies": {
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"commit-and-tag-version": "^12.7.3",
"eslint": "^10.3.0",
"eslint-plugin-import-x": "^4.16.2",
"globals": "^17.6.0",
"prettier": "^3.8.3"
},
"dependencies": {
"datauri": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shbatm/MMM-RTSPStream.git"
}
}