-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"displayName": "Homebridge Enviroplus",
"name": "homebridge-enviroplus",
"version": "2.2.6",
"description": "Fetches information from Raspberry Pi Enviroplus sensors for air quality.",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mhawkshaw/homebridge-enviroplus.git"
},
"bugs": {
"url": "https://github.com/mhawkshaw/homebridge-enviroplus/issues"
},
"engines": {
"node": "^20.18.0 || ^22.10.0 || ^24.0.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"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/js": "^9.36.0",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"homebridge": "^2.0.0-beta.30",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"homepage": "https://github.com/mhawkshaw/homebridge-enviroplus#readme",
"dependencies": {
"async-mqtt": "^2.6.3",
"mqtt": "^5.7.1"
},
"overrides": {
"xml2js": "^0.6.2"
}
}