-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "homebridge-homematicip",
"version": "1.3.1",
"description": "Homematic IP plugin for homebridge",
"license": "Apache-2.0",
"author": "Marc Sowen <[email protected]>",
"keywords": [
"homebridge-plugin",
"homekit",
"homematic",
"homematicip",
"hmip"
],
"repository": {
"type": "git",
"url": "https://github.com/marcsowen/homebridge-homematicip"
},
"bugs": {
"url": "https://github.com/marcsowen/homebridge-homematicip/issues"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "pnpm run build && pnpm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "pnpm run lint && pnpm run build"
},
"engines": {
"node": ">=20.0.0",
"homebridge": ">=1.5.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.18.1",
"abort-controller": "^3.0.0",
"eslint": "^8.56.0",
"homebridge": "^1.7.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"bottleneck": "^2.19.5",
"fakegato-history": "^0.6.4",
"moment": "^2.30.1",
"node-fetch": "3.3.2",
"semver": "^7.5.4",
"ws": "^8.16.0"
}
}