UNPKG

matterbridge-aeg-robot

Version:

A Matterbridge plugin that connects AEG RX 9 / Electrolux Pure i9 robot vacuums to the Matter smart home ecosystem.

103 lines (102 loc) 3.86 kB
{ "name": "matterbridge-aeg-robot", "description": "A Matterbridge plugin that connects AEG RX 9 / Electrolux Pure i9 robot vacuums to the Matter smart home ecosystem.", "displayName": "AEG Robot", "version": "1.3.5", "license": "ISC", "keywords": [ "Matterbridge", "Matter", "AEG", "Electrolux", "RX9", "RX9.1", "RX9.2", "Pure i9", "Pure i9.1", "Pure i9.2", "robot", "vacuum", "cleaner" ], "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-aeg-robot.git" }, "bugs": { "url": "https://github.com/thoukydides/matterbridge-aeg-robot/issues" }, "homepage": "https://github.com/thoukydides/matterbridge-aeg-robot", "help": "https://github.com/thoukydides/matterbridge-aeg-robot#readme", "changelog": "https://github.com/thoukydides/matterbridge-aeg-robot/blob/master/CHANGELOG.md", "type": "module", "main": "dist/index.js", "engines": { "node": "^24.11.1 || ^22.21.1 || ^20.19.5", "matterbridge": "^3.3.8" }, "dependencies": { "node-persist": "^4.0.4", "semver": "^7.7.3", "ts-interface-checker": "^1.0.2", "undici": "^7.16.0" }, "devDependencies": { "@actions/core": "^1.11.1", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.30.1", "@tsconfig/node20": "^20.1.8", "@types/eslint__js": "^8.42.3", "@types/node": "^20.19.25", "@types/node-persist": "^3.1.8", "@types/semver": "^7.7.1", "eslint": "^9.39.1", "globals": "^16.5.0", "rimraf": "^6.1.2", "ts-interface-builder": "^0.3.3", "tsx": "^4.20.6", "typescript": "^5.9.3", "typescript-eslint": "^8.47.0" }, "scripts": { "presetup-matterbridge-github-clone": "rimraf $MATTERBRIDGE_DIR", "setup-matterbridge-github-clone": "git clone --single-branch --branch $MATTERBRIDGE_BRANCH https://github.com/Luligu/matterbridge.git $MATTERBRIDGE_DIR", "setup-matterbridge-github-build": "cd $MATTERBRIDGE_DIR && npm ci && npm run build", "setup-matterbridge-github-link": "ln -sfn $MATTERBRIDGE_DIR ./node_modules/matterbridge", "setup-matterbridge-github": "npm run setup-matterbridge-github-clone && npm run setup-matterbridge-github-build && npm run setup-matterbridge-github-link", "setup-matterbridge-npm": "npm i -g matterbridge && 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/matterbridge/dist/cli.js -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" } }