UNPKG

homebridge-homeconnect

Version:

A Homebridge plugin that connects Home Connect appliances to Apple HomeKit

139 lines (138 loc) 4.23 kB
{ "name": "homebridge-homeconnect", "displayName": "HomeConnect", "version": "1.11.4", "description": "A Homebridge plugin that connects Home Connect appliances to Apple HomeKit", "license": "ISC", "keywords": [ "Homebridge", "homebridge-plugin", "HomeConnect", "appliance", "kitchen", "Bosch", "Balay", "Constructa", "Siemens", "Gaggenau", "NEFF", "Pitsos", "Profilo", "Thermador", "airconditioner", "cleaningrobot", "coffeemachine", "coffeemaker", "cookprocessor", "cooktop", "dishwasher", "dryer", "freezer", "fridge", "fridgefreezer", "hob", "hood", "oven", "microwave", "refrigerator", "roxxter", "warmingdrawer", "washer", "washerdryer", "winecooler" ], "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://github.com/thoukydides/homebridge-homeconnect.git" }, "bugs": { "url": "https://github.com/thoukydides/homebridge-homeconnect/issues" }, "type": "module", "main": "dist/index.js", "engines": { "node": "^26.1.0 || ^24.14.1 || ^22.22.2 || ^20.20.2", "homebridge": "^1.11.4 || ^2.0.2" }, "dependencies": { "@homebridge/plugin-ui-utils": "^2.2.4", "chalk": "^4.1.2", "node-persist": "^3.1.3", "semver": "^7.8.1", "ts-interface-checker": "^1.0.2", "undici": "^7.26.0" }, "devDependencies": { "@actions/core": "^3.0.1", "@actions/github": "^9.1.1", "@eslint/eslintrc": "^3.3.5", "@eslint/js": "^10.0.1", "@octokit/core": "^7.0.6", "@octokit/plugin-rest-endpoint-methods": "^17.0.0", "@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", "browserify": "^17.0.1", "copyfiles": "^2.4.1", "eslint": "^10.4.1", "esmify": "^2.1.1", "globals": "^17.6.0", "homebridge": "^2.0.2", "nodemon": "^3.1.14", "rimraf": "^6.1.3", "ts-interface-builder": "^0.3.3", "tsx": "^4.22.3", "typescript": "^6.0.3", "typescript-eslint": "^8.60.0" }, "overrides": { "typescript-eslint": { "typescript": "^6.0.0" } }, "scripts": { "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-static": "copyfiles -u 1 -e './**/*.ts' './src/homebridge-ui/public/**' ./dist", "build-tsc": "tsc -p ./src && tsc -p ./src/homebridge-ui/public/", "build-ui": "browserify -d -p esmify dist/homebridge-ui/public/client.js -o dist/homebridge-ui/public/bundle.js", "build": "npm run build-checkers && npm run build-tsc && npm run build-ui && npm run build-static", "clean": "rimraf ./dist", "lint": "eslint eslint.config.mjs 'bin/**/*.ts' 'src/**/*.ts' --max-warnings=0", "watch": "nodemon", "test": "tsx bin/test-startup.ts", "issue-api-keys": "GITHUB_REPOSITORY=thoukydides/homebridge-homeconnect tsx bin/issue-api-keys.ts", "postversion": "git push && git push --tags", "prepublishOnly": "npm run build && npm run lint" }, "optionalDependencies": { "fsevents": "^2.3.3" }, "allowScripts": { "core-js": true, "esbuild": true } }