UNPKG

homebridge-dreame-vacuum

Version:

Homebridge plugin for Dreame vacuum cleaners with support for room cleaning, zones, and more

76 lines (75 loc) 1.97 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "homebridge-dreame-vacuum", "version": "1.0.0-alpha.1", "description": "Homebridge plugin for Dreame vacuum cleaners with support for room cleaning, zones, and more", "repository": { "type": "git", "url": "https://github.com/reminazin/homebridge-dreame-vacuum.git" }, "homepage": "https://github.com/reminazin/homebridge-dreame-vacuum#readme", "bugs": { "url": "https://github.com/reminazin/homebridge-dreame-vacuum/issues" }, "main": "dist/index.js", "scripts": { "build": "tsc", "watch": "npm run build && npm link && nodemon", "prepublishOnly": "npm run build", "lint": "eslint src/**.ts", "test": "jest", "test:unit": "jest test/*.test.js", "test:integration": "jest test/integration/*.test.js", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:all": "npm run build && npm test" }, "author": "reminazin", "license": "ISC", "keywords": [ "homebridge-plugin", "homebridge", "dreame", "vacuum", "robot", "miio", "homekit", "smart-home", "iot" ], "engines": { "node": ">=14.0.0", "homebridge": ">=1.3.0" }, "files": [ "dist/", "README.md", "LICENSE", "CHANGELOG.md", "config.schema.json" ], "dependencies": { "@types/node-fetch": "^2.6.13", "@types/randomstring": "^1.3.0", "miio": "^0.14.1", "node-fetch": "^2.7.0", "randomstring": "^1.3.1" }, "devDependencies": { "@jest/globals": "^30.1.2", "@types/jest": "^29.5.12", "@types/node": "^16.10.9", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", "dotenv": "^16.6.1", "eslint": "^9.35.0", "jest": "^30.1.2", "homebridge": "^1.6.0", "nodemon": "^3.1.10", "ts-jest": "^29.1.2", "typescript": "^4.4.4" }, "peerDependencies": { "homebridge": ">=1.3.0" } }