-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "homebridge-otodo-vav",
"version": "1.4.3",
"description": "Homebridge plugin for Otodo VAV thermostats",
"keywords": [
"homebridge-plugin",
"otodo",
"vav",
"thermostat"
],
"homepage": "https://github.com/Surfysamy/homebridge-otodo-vav",
"repository": {
"type": "git",
"url": "git+https://github.com/Surfysamy/homebridge-otodo-vav.git"
},
"bugs": {
"url": "https://github.com/Surfysamy/homebridge-otodo-vav/issues"
},
"license": "MIT",
"author": "Surfysamy",
"engines": {
"node": ">=20.0.0",
"homebridge": ">=1.6.0 || ^2.0.0-beta.0"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"files": [
"dist",
"config.schema.json",
"README.md"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf dist",
"prepack": "npm run clean && npm run build",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"homebridge": "^1.11.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.0",
"typescript-eslint": "^8.46.4"
}
}