forked from bloomkd46/homebridge-iRobot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"displayName": "Hombrige iRobot V2",
"name": "homebridge-irobot-v2",
"version": "3.2.4",
"description": "A Homebridge plugin for controlling iRobot devices",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/taurgis/homebridge-iRobot-v2.git"
},
"homepage": "https://github.com/taurgis/homebridge-iRobot-v2/wiki",
"bugs": {
"url": "https://github.com/taurgis/homebridge-iRobot-v2/issues"
},
"engines": {
"node": "^18.20.4 || ^20.15.1",
"homebridge": "^1.6.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc && chmod -R 755 dist/scripts",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"iRobot",
"roomba",
"homebridge",
"vacuum"
],
"dependencies": {
"@actions/core": "1.10.1",
"@homebridge/plugin-ui-utils": "1.0.3",
"@taurgis/roomba-unofficial-sdk": "1.0.4"
},
"devDependencies": {
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.57.0",
"homebridge": "1.8.5",
"rimraf": "5.0.7",
"ts-node": "10.9.2",
"typedoc": "^0.26.11",
"typescript": "5.5.3"
}
}