generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"displayName": "Homebridge Enviroplus",
"name": "homebridge-enviroplus",
"version": "2.2.2",
"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": "^18.20.4 || ^20.16.0 || ^22.6.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.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"eslint": "^9.9.0",
"homebridge": "^2.0.0-beta.0",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"homepage": "https://github.com/mhawkshaw/homebridge-enviroplus#readme",
"dependencies": {
"async-mqtt": "^2.6.3",
"mqtt": "^5.7.1"
},
"overrides": {
"xml2js": "^0.6.2"
}
}