-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 KB
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
{
"name": "homebridge-dummy-legacy",
"displayName": "Homebridge Dummy Legacy",
"version": "0.9.4-beta.0",
"author": {
"name": "mpatfield"
},
"description": "Dummy switches for Homebridge",
"homepage": "https://github.com/mpatfield/homebridge-dummy#readme",
"type": "module",
"main": "dist/homebridge/index.js",
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-dummy",
"hoobs",
"hoobs-plugin",
"homekit"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build"
},
"engines": {
"homebridge": "^1.8.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1 || ^22 || ^24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpatfield/homebridge-dummy.git"
},
"bugs": {
"url": "https://github.com/mpatfield/homebridge-dummy/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mpatfield"
},
"dependencies": {
"homebridge-lib": "^7.1.8",
"lodash.merge": "^4.6.2",
"node-persist": "^4.0.4"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"@types/node-persist": "^3.1.8",
"eslint": "^9.27.0",
"homebridge": "^2.0.0-beta.30",
"jiti": "^2.6.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.24.1"
},
"license": "Apache-2.0"
}