-
-
Notifications
You must be signed in to change notification settings - Fork 630
/
package.json
89 lines (89 loc) · 2.36 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
{
"name": "hap-nodejs",
"version": "1.1.0",
"description": "HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"maintainers": [
"Andreas Bauer <[email protected]>"
],
"author": "Khaos Tian <[email protected]> (https://tz.is/)",
"homepage": "https://github.com/homebridge/HAP-NodeJS",
"license": "Apache-2.0",
"scripts": {
"check": "npm install && npm outdated",
"clean": "rimraf dist && rimraf coverage",
"lint": "eslint 'src/**/*.{js,ts,json}'",
"build": "rimraf dist && tsc && node .github/node-persist-ignore.js",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test-coverage": "jest --coverage",
"start": "node dist/BridgedCore.js",
"docs": "typedoc",
"lint-docs": "typedoc --emit none --treatWarningsAsErrors"
},
"keywords": [
"hap-nodejs",
"hap",
"homekit",
"homekit-accessory-protocol",
"homekit-server",
"homekit-protocol",
"homekit-device",
"homekit-accessory",
"hap-server",
"homekit-support",
"siri"
],
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/HAP-NodeJS.git"
},
"bugs": {
"url": "https://github.com/homebridge/HAP-NodeJS/issues"
},
"engines": {
"node": "^18 || ^20 || ^22"
},
"files": [
"README.md",
"LICENSE",
"dist",
"@types"
],
"dependencies": {
"@homebridge/ciao": "^1.3.1",
"@homebridge/dbus-native": "^0.6.0",
"bonjour-hap": "^3.8.0",
"debug": "^4.3.7",
"fast-srp-hap": "^2.0.4",
"futoin-hkdf": "^1.5.3",
"node-persist": "^0.0.12",
"source-map-support": "^0.5.21",
"tslib": "^2.8.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/escape-html": "^1.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"axios": "^1.7.7",
"commander": "^12.1.0",
"escape-html": "^1.0.3",
"eslint": "^8.57.0",
"http-parser-js": "^0.5.8",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"simple-plist": "^1.4.0-0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}