-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
97 lines (97 loc) · 2.93 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "iobroker.cameras",
"version": "2.1.2",
"description": "Connect IP-cameras to iobroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.cameras",
"license": "MIT",
"keywords": [
"ip-cam",
"web-cam",
"video"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.cameras"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"axios": "^1.7.9",
"decompress": "^4.2.1",
"fluent-ffmpeg": "^2.1.3",
"moment": "^2.30.1",
"sharp": "0.33.4",
"uuid": "^11.0.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^2.0.15",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/testing": "^5.0.3",
"@iobroker/vis-2-widgets-react-dev": "^4.0.4",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/decompress": "^4.2.7",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/mocha": "^10.0.10",
"@types/node": "^22.12.0",
"@types/proxyquire": "^1.3.31",
"@types/sharp": "^0.32.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"cheerio": "^1.0.0",
"mocha": "^11.1.0",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"typescript": "^5.7.3"
},
"main": "build/main.js",
"files": [
"admin/",
"build/",
"win-ffmpeg.zip",
"widgets/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test": "mocha --exit",
"lint": "eslint -c eslint.config.mjs",
"prepublishOnly": "node tasks",
"build": "npm run build-backend && node tasks",
"build-backend": "tsc -p tsconfig.build.json",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade && cd src-admin && npx -y npm-check-updates --upgrade && cd ../src-widgets && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src-admin && npm i -f && cd ..",
"0-clean": "node tasks --0-clean",
"1-npm": "node tasks --1-npm",
"2-build": "node tasks --2-build",
"3-copy": "node tasks --3-copy",
"admin-build": "node tasks --build-admin",
"widget-0-clean": "node tasks --widget-0-clean",
"widget-1-npm": "node tasks --widget-1-npm",
"widget-2-build": "node tasks --widget-2-build",
"widget-3-copy": "node tasks --widget-3-copy",
"widget-build": "node tasks --widget-build"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.cameras/issues"
},
"readmeFilename": "README.md"
}