forked from homebridge/HAP-NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.95 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
{
"name": "hap-nodejs",
"version": "0.8.2",
"betaVersion": "0.9.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": {
"clean": "rm -rf dist && rm -rf coverage",
"build": "rm -rf dist && tsc && node .github/workflows/node-persist-ignore.js",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test-coverage": "jest --coverage",
"start": "node dist/BridgedCore.js",
"docs": "rm -rf docs && typedoc src/index.ts"
},
"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": "https://github.com/homebridge/HAP-NodeJS.git"
},
"bugs": {
"url": "https://github.com/homebridge/HAP-NodeJS/issues"
},
"engines": {
"node": ">=10.17.0"
},
"files": [
"README.md",
"LICENSE",
"dist",
"@types"
],
"dependencies": {
"@homebridge/ciao": "~1.1.0-beta.27",
"debug": "^4.3.0",
"fast-srp-hap": "2.0.2",
"futoin-hkdf": "~1.3.2",
"ip": "^1.1.3",
"node-persist": "^0.0.11",
"source-map-support": "^0.5.19",
"tslib": "^2.0.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.15",
"@types/node": "^10.17.20",
"commander": "^6.2.0",
"jest": "^26.6.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"simple-plist": "^1.1.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typedoc": "0.20.0-beta.8",
"typescript": "^4.0.5"
}
}