forked from hjdhjd/homebridge-unifi-protect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.17 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
{
"name": "homebridge-unifi-protect",
"version": "5.0.6",
"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"
},
"engines": {
"homebridge": ">=1.1.3",
"node": ">=10"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-unifi-protect",
"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 g3 flex",
"uvc g4 doorbell",
"uvc g4 pro",
"rtsp"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"clean": "rimraf ./dist",
"lint": "eslint src/**.ts",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build",
"test": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon"
},
"main": "dist/index.js",
"dependencies": {
"@homebridge/camera-utils": "^2.0.4",
"execa": "=5.1.1",
"ffmpeg-for-homebridge": "^0.0.9",
"mqtt": "4.3.4",
"unifi-protect": "^2.1.1",
"ws": "^8.4.2"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/node": "^17.0.8",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"homebridge": "^1.3.9",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}