-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@homebridge-plugins/homebridge-roomba",
"description": "homebridge-plugin for Roomba devices",
"version": "1.5.3",
"type": "module",
"engines": {
"homebridge": ">=0.2.0",
"node": ">=10"
},
"author": {
"name": "RayanKhan"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-roomba/issues"
},
"dependencies": {
"dorita980": "npm:@karlvr/[email protected]"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/homebridge-plugins/homebridge-roomba#readme",
"keywords": [
"homebridge-plugin",
"iRobot",
"Roomba"
],
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/homebridge-plugins/homebridge-roomba.git"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build": "npm run clean && tsc",
"clean": "shx rm -rf ./dist",
"prepublishOnly": "npm run lint && npm run build",
"getrobotpwd": "get-roomba-password",
"getpassword": "get-roomba-password",
"getlastcommand": "node ./dist/lastcommand.js",
"test": "node dist/index.js",
"watch": "tsc --watch"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/promise-timeout": "^1.3.0",
"@antfu/eslint-config": "^3.16.0",
"@types/aes-js": "^3.1.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.9",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.3.1",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"homebridge": "^1.8.5",
"homebridge-config-ui-x": "4.68.0",
"nodemon": "^3.1.9",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}