-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 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
{
"name": "homebridge-unifi-protect-camera-motion",
"version": "0.7.6",
"description": "Unifi Protect cameras & motion sensors for Homebridge. AI enabled Motion detection for Unifi Protect cameras.",
"type": "module",
"main": "src/index.js",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "tsc",
"compile": "tsc",
"homebridge": "tsc && homebridge -C -D -P . -U ./resources/test-config/",
"watch": "nodemon",
"test": "npm run compile && jest --config jest.config.js --collect-coverage && cd src/integration-tests && node detection-integration-test.js"
},
"config": {
"unsafe-perm": true
},
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/beele/homebridge-unifi-protect-camera-motion.git"
},
"bugs": {
"url": "http://github.com/beele/homebridge-unifi-protect-camera-motion/issues"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/MrBeele?locale.x=nl_NL"
},
"engines": {
"node": ">=20",
"homebridge": ">=1.8.5"
},
"dependencies": {
"canvas": "^2.11.2",
"execa": "^9.5.2",
"ffmpeg-for-homebridge": "^2.1.7",
"get-port": "^7.1.0",
"googleapis": "^144.0.0",
"googlephotos": "^0.3.5",
"mqtt": "^5.10.3",
"homebridge-lib": "^7.1.0",
"homebridge-plugin-utils": "^1.11.3",
"unifi-protect": "^4.17.0",
"ws": "^8.18.0"
},
"devDependencies": {
"eslint": "^9.14.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"homebridge": "^1.8.5",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}