56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "homebridge-kobold",
|
|
"version": "1.0.0",
|
|
"description": "A Vorwerk Kobold vacuum robot plugin for homebridge.",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"homebridge-plugin",
|
|
"vorwerk",
|
|
"kobold"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.17.0",
|
|
"homebridge": ">=1.3.0"
|
|
},
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"lint": "eslint src/**.ts --max-warnings=0",
|
|
"watch": "npm run build && npm link && nodemon",
|
|
"build": "rimraf ./dist && tsc"
|
|
},
|
|
"author": {
|
|
"name": "Luis R.",
|
|
"url2": "https://github.com/himbeles"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Alexandre L.",
|
|
"url": "https://github.com/aluini"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/himbeles/homebridge-kobold.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/himbeles/homebridge-kobold/issues"
|
|
},
|
|
"dependencies": {
|
|
"colors": "^1.4.0",
|
|
"debug": "^4.1.1",
|
|
"node-kobold-control": ">=0.5.0",
|
|
"uuid": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.14.31",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
"@typescript-eslint/parser": "^4.16.1",
|
|
"eslint": "^7.21.0",
|
|
"homebridge": "^1.3",
|
|
"nodemon": "^2.0.7",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.2"
|
|
}
|
|
}
|