-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"displayName": "Homebridge Valetudo",
"name": "homebridge-valetudo",
"version": "2.1.1",
"description": "A homebridge plugin to control Valetudo devices with zero config.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/stevenguh/homebridge-valetudo.git"
},
"bugs": {
"url": "https://github.com/stevenguh/homebridge-valetudo/issues"
},
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"main": "dist/index.js",
"scripts": {
"format": "prettier --ignore-path .gitignore --write .",
"format-check": "prettier --ignore-path .gitignore --check .",
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/eventsource": "^3.0.0",
"@types/node": "^25.8.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"homebridge": "^2.0.2",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typed-emitter": "^2.1.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@matter/types": "^0.17.0-alpha.0-20260508-96d5c3a88",
"axios": "^1.16.1",
"dnssd": "^0.4.1",
"eventsource": "^2.0.2",
"reconnecting-eventsource": "^1.6.5"
}
}