-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
{
"name": "unifi-access",
"type": "module",
"version": "1.2.0",
"displayName": "UniFi Access API",
"description": "A soon-to-be-almost-complete implementation of the UniFi Access API.",
"author": {
"name": "HJD",
"url": "https://github.com/hjdhjd"
},
"homepage": "https://github.com/hjdhjd/unifi-access#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/unifi-access.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/unifi-access/issues"
},
"keywords": [
"camera",
"doorbell",
"ubiquiti",
"unifi",
"unifi access",
"motion",
"motion sensor",
"security",
"uck",
"uck g2",
"uck g2+",
"uck gen2",
"uck gen2+",
"udm",
"udm pro",
"udm-pro",
"unifi cloud key",
"unifi dream machine pro",
"unifios"
],
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"scripts": {
"build": "shx rm -rf ./dist && tsc",
"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",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build && npm run build-docs",
"test": "eslint src/**.ts"
},
"devDependencies": {
"@stylistic/eslint-plugin": "2.8.0",
"@types/node": "22.7.4",
"@types/ws": "8.5.12",
"eslint": "9.11.1",
"homebridge": "^1.8.4",
"homebridge-plugin-utils": "1.9.0",
"shx": "0.3.4",
"typedoc": "0.26.7",
"typedoc-plugin-markdown": "4.2.9",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0"
},
"dependencies": {
"@adobe/fetch": "4.1.9",
"ws": "8.18.0"
},
"optionalDependencies": {
"bufferutil": "4.0.8"
}
}