-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
85 lines (85 loc) · 1.98 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
{
"name": "unifi-protect",
"type": "module",
"version": "4.20.3",
"displayName": "UniFi Protect API",
"description": "A complete implementation of the UniFi Protect API.",
"author": {
"name": "HJD",
"url": "https://github.com/hjdhjd"
},
"homepage": "https://github.com/hjdhjd/unifi-protect#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/unifi-protect.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/unifi-protect/issues"
},
"keywords": [
"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"
],
"engines": {
"node": ">=20"
},
"bin": {
"ufp": "dist/util/ufp.js"
},
"main": "dist/index.js",
"scripts": {
"build": "shx rm -rf ./dist && tsc && shx chmod a+x ./dist/util/**.js",
"build-docs": "shx rm -f ./docs/[^CO]*.md && npx typedoc",
"clean": "shx rm -rf ./dist",
"lint": "eslint --max-warnings=${ESLINT_MAX_WARNINGS:-\"-1\"} eslint.config.mjs src/**.ts src/util/**.ts",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build",
"test": "eslint src/**.ts"
},
"devDependencies": {
"@stylistic/eslint-plugin": "2.12.1",
"@types/node": "22.10.5",
"@types/ws": "8.5.13",
"eslint": "9.17.0",
"homebridge-plugin-utils": "^1.13.0",
"shx": "0.3.4",
"typedoc": "0.27.6",
"typedoc-plugin-markdown": "4.4.1",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"dependencies": {
"@adobe/fetch": "4.1.11",
"ws": "8.18.0"
},
"optionalDependencies": {
"bufferutil": "4.0.9"
}
}