-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
97 lines (97 loc) · 2.63 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": "homebridge-unifi-protect",
"version": "7.11.0",
"displayName": "Homebridge UniFi Protect",
"description": "Homebridge UniFi Protect plugin providing complete HomeKit integration for the UniFi Protect ecosystem with full support for most features including autoconfiguration, motion detection, multiple controllers, and realtime updates.",
"author": {
"name": "HJD",
"url": "https://github.com/hjdhjd"
},
"homepage": "https://github.com/hjdhjd/homebridge-unifi-protect#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/homebridge-unifi-protect.git"
},
"bugs": {
"url": "http://github.com/hjdhjd/homebridge-unifi-protect/issues"
},
"type": "module",
"engines": {
"homebridge": ">=1.8.0 || >=2.0.0",
"node": ">=20"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-unifi-protect",
"homekit",
"homekit secure video",
"hksv",
"camera",
"doorbell",
"ubiquiti",
"unifi",
"unifi protect",
"motion",
"motion sensor",
"protect",
"security",
"uck",
"uck g2",
"uck g2+",
"uck gen2",
"uck gen2+",
"udm",
"udm pro",
"udm-pro",
"unifi camera",
"unifi cloud key",
"unifi dream machine pro",
"unifi ffmpeg",
"unifi nvr",
"unifi-nvr",
"unifios",
"uvc ai pro",
"uvc g3 bullet",
"uvc g3 flex",
"uvc g3 instant",
"uvc g4 bullet",
"uvc g4 doorbell",
"uvc g4 flex",
"uvc g4 instant",
"uvc g4 pro",
"rtsp"
],
"scripts": {
"prebuild": "npm run clean && npm run build-ui",
"build": "tsc",
"build-ui": "shx mkdir -p homebridge-ui/public/lib && shx cp \"node_modules/homebridge-plugin-utils/dist/ui/**/*.@(js|mjs){,.map}\" homebridge-ui/public/lib",
"clean": "shx rm -rf dist homebridge-ui/public/lib",
"prelint": "npm run build-ui",
"lint": "eslint --max-warnings=${ESLINT_MAX_WARNINGS:-\"-1\"} eslint.config.mjs src homebridge-ui/*.js homebridge-ui/public/**.mjs",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build"
},
"main": "dist/index.js",
"dependencies": {
"@homebridge/plugin-ui-utils": "2.0.0",
"ffmpeg-for-homebridge": "^2.1.7",
"homebridge-plugin-utils": "^1.14.0",
"unifi-protect": "^4.20.3",
"ws": "8.18.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "2.12.1",
"@types/node": "22.10.5",
"@types/ws": "8.5.13",
"eslint": "9.17.0",
"homebridge": "1.8.4",
"shx": "0.3.4",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"optionalDependencies": {
"bufferutil": "4.0.9"
}
}