generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"displayName": "Tasmota",
"name": "homebridge-tasmota",
"version": "0.2.2",
"type": "module",
"description": "Homebridge plugin for Tasmota devices leveraging home assistant auto discovery.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/NorthernMan54/homebridge-tasmota.git"
},
"bugs": {
"url": "https://github.com/NorthernMan54/homebridge-tasmota/issues"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1 || ^22.0.0"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"document": "./gh-md-toc --hide-footer DEVICES.md",
"lint": "eslint --fix src/**.ts",
"oldWatch": "npm run build && npm link && nodemon",
"prepublishOnly": "npm run lint && npm run build",
"test": "rimraf ./dist && node --experimental-vm-modules node_modules/.bin/jest --detectOpenHandles",
"test-coverage": "jest --coverage",
"watch": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [],
"exec": "npm run build && DEBUG=-HAP-NodeJS:*,Tasmota* homebridge -U ./test/hbConfig -T -D -I -P .",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
},
"keywords": [
"homebridge-plugin",
"tasmota"
],
"dependencies": {
"debug": "^4.3.7",
"fakegato-history": "^0.6.5",
"homebridge-lib": "^7.1.0",
"mqtt": "^5.10.1",
"nunjucks": "^3.2.x",
"semver": "^7.6.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@types/nunjucks": "^3.2.6",
"babel-jest": "^29.7.0",
"eslint": "^9.14.0",
"homebridge": "^2.0.0-beta.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"homepage": "https://github.com/NorthernMan54/homebridge-tasmota#readme"
}