generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"displayName": "Homebridge Tasmota ZbBridge",
"name": "homebridge-tasmota-zbbridge",
"version": "1.13.0",
"description": "Control Zigbee Devices Using Tasmota ZbBridge",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mdaskalov/homebridge-tasmota-zbbridge.git"
},
"bugs": {
"url": "https://github.com/mdaskalov/homebridge-tasmota-zbbridge/issues"
},
"engines": {
"node": "^20.15.1 || ^v22.12.0",
"homebridge": "^1.6.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",
"test": "npm run build && node dist/index.js && echo \"No syntax errors! (node $(node -v))\""
},
"keywords": [
"homebridge-plugin",
"tasmota",
"zigbee",
"zbbridge",
"zigbee2mqtt"
],
"dependencies": {
"ajv": "^8.17.1",
"mqtt": "^5.10.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"homebridge": "^1.8.5",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}