UNPKG

@wanderxjtu/homebridge-yeelighter

Version:

Yeelight support for Homebridge with particular support of ceiling lights

95 lines (94 loc) 2.88 kB
{ "name": "@wanderxjtu/homebridge-yeelighter", "displayName": "Yeelighter", "version": "2.5.8", "description": "Yeelight support for Homebridge with particular support of ceiling lights", "license": "MIT", "keywords": [ "homebridge-plugin", "ceiling", "yeelight", "xiaomi", "homekit", "night_mode", "Bedside Lamp", "Ceiling Light", "Moonlight", "Jiaoyue", "YLXD42YL", "YLXD50YL", "YLXD01YL", "GuangCan", "Galaxy" ], "author": "Thomas Kroeber", "repository": { "type": "git", "url": "git://github.com/cellcortex/homebridge-yeelighter.git" }, "bugs": { "url": "http://github.com/cellcortex/homebridge-yeelighter/issues" }, "engines": { "node": ">=16.14.2", "homebridge": "^1.4.0" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "config.schema.json" ], "husky": { "hooks": { "pre-commit": "tsc --noEmit && npx lint-staged" } }, "lint-staged": { "*.{js,ts,tsx}": [ "eslint src/*.ts --fix" ] }, "dependencies": { "http-headers": "^3.0.2" }, "devDependencies": { "@types/node": "^17.0.5", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.8.1", "eslint": "^8.5.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-unicorn": "^39.0.0", "homebridge": "^1.4.0", "husky": "^7.0.4", "jest": "^27.4.5", "lint-staged": "^12.1.4", "nodemon": "^2.0.15", "npm-run-all": "^4.1.5", "prettier": "^2.5.1", "rimraf": "^3.0.2", "standard-changelog": "^2.0.27", "standard-version": "^9.0.0", "ts-jest": "^27.1.2", "ts-node": "^10.4.0", "typescript": "^4.5.4" }, "homepage": "https://github.com/cellcortex/homebridge-yeelighter#readme", "scripts": { "lint": "eslint src/**.ts --max-warnings=0", "watch": "npm run build && npm link && nodemon", "clean": "rimraf ./dist", "build": "tsc", "pre-commit": "lint-staged", "prepublishOnly": "run-s clean lint build", "_clear": "rimraf dist/*", "start": "/usr/local/bin/homebridge -D -P ../homebridge-yeelighter", "debug": "DEBUG=* /usr/local/bin/homebridge -D -P ../homebridge-yeelighter", "postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"", "release-commit": "standard-version -a", "release": "standard-version -r minor && git push --follow-tags origin master && yarn publish --non-interactive", "release-patch": "standard-version -r patch && git push --follow-tags origin master && yarn publish --non-interactive", "release-beta": "standard-version -p beta && git push --follow-tags origin master && yarn publish --non-interactive --tag=beta" } }