-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "@homebridge/hap-client",
"version": "2.0.5",
"description": "A client for HAP-NodeJS.",
"main": "./dist/index.js",
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**.ts",
"build": "tsc",
"gen": "ts-node -P tsconfig.gen.json scripts/gen-hap-types.ts",
"prepublishOnly": "npm run lint && npm run build",
"clean": "rimraf ./dist",
"test": "eslint src/**.ts"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/homebridge/hap-client.git"
},
"keywords": [
"hap",
"homebridge",
"api"
],
"author": {
"name": "Homebridge"
},
"contributors": [
{
"name": "homebridge",
"url": "https://github.com/homebridge"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/homebridge/hap-client/issues/"
},
"homepage": "https://github.com/homebridge/hap-client/blob/latest#readme",
"dependencies": {
"axios": "1.7.9",
"bonjour-service": "1.3.0",
"decamelize": "5.0.1",
"inflection": "3.0.0",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.9.0",
"hap-nodejs": "^1.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}