UNPKG

matterbridge-tado-hw

Version:

A Matterbridge plugin that connects Tado° V2/V3/V3+ hot water control to the Matter smart home ecosystem

95 lines (94 loc) 3.23 kB
{ "name": "matterbridge-tado-hw", "description": "A Matterbridge plugin that connects Tado° V2/V3/V3+ hot water control to the Matter smart home ecosystem", "displayName": "Tado° HW", "version": "0.5.13", "license": "ISC", "keywords": [ "Matterbridge", "Matter", "Tado", "hotwater", "hot-water" ], "author": { "name": "Alexander Thoukydides", "url": "https://www.thouky.co.uk/" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/thoukydides" }, { "type": "paypal", "url": "https://paypal.me/thoukydides" }, { "type": "ko-fi", "url": "https://ko-fi.com/thouky" }, { "type": "buymeacoffee", "url": "https://www.buymeacoffee.com/thouky" } ], "repository": { "type": "git", "url": "git+https://github.com/thoukydides/matterbridge-tado-hw.git" }, "bugs": { "url": "https://github.com/thoukydides/matterbridge-tado-hw/issues" }, "homepage": "https://github.com/thoukydides/matterbridge-tado-hw", "help": "https://github.com/thoukydides/matterbridge-tado-hw#readme", "changelog": "https://github.com/thoukydides/matterbridge-tado-hw/blob/master/CHANGELOG.md", "type": "module", "main": "dist/index.js", "engines": { "node": "^26.3.0 || ^24.16.0 || ^22.22.3 || ^20.20.2", "matterbridge": "^3.8.0" }, "dependencies": { "node-persist": "^4.0.4", "node-tado-client": "^1.1.1", "semver": "^7.8.2", "ts-interface-checker": "^1.0.2" }, "devDependencies": { "@actions/core": "^3.0.1", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "^10.0.1", "@tsconfig/node20": "^20.1.9", "@types/eslint__js": "^8.42.3", "@types/node": "^20.19.41", "@types/node-persist": "^3.1.8", "@types/semver": "^7.7.1", "eslint": "^10.4.1", "globals": "^17.6.0", "rimraf": "^6.1.3", "ts-interface-builder": "^0.3.3", "tsx": "^4.22.4", "typescript": "^6.0.3", "typescript-eslint": "^8.60.1" }, "overrides": { "typescript-eslint": { "typescript": "^6.0.0" } }, "scripts": { "setup-matterbridge": "npm i -g matterbridge@$MATTERBRIDGE_TAG && npm link matterbridge", "build-checkers": "mkdir -p ./src/ti && ts-interface-builder -c -o ./src/ti ./src/*-types.ts && tsx bin/ts-interface-post.ts ./src/ti", "build-tsc": "tsc -p ./src", "build": "npm run build-checkers && npm run build-tsc", "start": "node node_modules/.bin/matterbridge -homedir $MATTERBRIDGE_DIR", "start-add": "npm run start -- -add .", "start-debug": "NODE_OPTIONS='--inspect-brk' npm run start", "clean": "rimraf ./dist", "lint": "eslint eslint.config.mjs 'bin/**/*.ts' 'src/**/*.ts' --max-warnings=0", "postversion": "git push && git push --tags", "prepublishOnly": "npm run build && npm run lint", "test": "tsx bin/test-startup.ts" } }