-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "hap-controller",
"version": "0.10.2",
"description": "Library to implement a HAP (HomeKit) controller",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p .",
"lint": "eslint .",
"prettier": "prettier -u -w '*.ts' examples src __tests__",
"test": "jest",
"release": "release-script"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apollon77/hap-controller-node.git"
},
"keywords": [
"HomeKit",
"HAP",
"controller"
],
"author": "Michael Stegeman",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Apollon77/hap-controller-node/issues"
},
"homepage": "https://github.com/Apollon77/hap-controller-node#readme",
"dependencies": {
"@stoprocent/noble": "^1.15.1",
"bignumber.js": "^9.1.2",
"debug": "^4.3.7",
"dnssd": "^0.4.1",
"fast-srp-hap": "^2.0.4",
"http-parser-js": "^0.5.8",
"json-bigint": "^1.0.0",
"libsodium-wrappers": "^0.7.15",
"node-hkdf-sync": "^1.0.0",
"uuid": "^11.0.2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@types/debug": "^4.1.12",
"@types/dnssd": "^0.4.5",
"@types/json-bigint": "^1.0.4",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.8.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"event-to-promise": "^0.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "~5.6.3"
},
"files": [
"LICENSE",
"README.md",
"lib",
"examples"
]
}