-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.28 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
50
{
"name": "homebridge-roomba2",
"description": "homebridge-plugin for Roomba devices",
"version": "1.5.0-beta.4",
"engines": {
"homebridge": ">=0.2.0",
"node": ">=10"
},
"author": {
"name": "RayanKhan"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-roomba2/issues"
},
"dependencies": {
"dorita980": "npm:@karlvr/[email protected]"
},
"homepage": "https://github.com/homebridge-plugins/homebridge-roomba2#readme",
"keywords": [
"homebridge-plugin",
"iRobot",
"Roomba"
],
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/homebridge-plugins/homebridge-roomba2.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"getrobotpwd": "get-roomba-password",
"getpassword": "get-roomba-password",
"getlastcommand": "node ./dist/lastcommand.js",
"lint": "eslint src/*.ts",
"test": "node dist/index.js",
"watch": "tsc --watch"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@types/promise-timeout": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"homebridge": "^1.5.1",
"rimraf": "^3.0.2",
"typescript": "~4.8.4"
}
}