forked from hjdhjd/homebridge-myq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "homebridge-myq",
"version": "2.7.4",
"displayName": "Homebridge myQ",
"description": "HomeKit integration of myQ enabled devices such as those from LiftMaster and Chamberlain.",
"author": {
"name": "HJD",
"url": "https://github.com/hjdhjd"
},
"homepage": "https://github.com/hjdhjd/homebridge-myq#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/homebridge-myq.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/homebridge-myq/issues"
},
"keywords": [
"chamberlain",
"craftsman",
"door",
"garage",
"garage door",
"homebridge",
"homebridge-plugin",
"liftmaster",
"myq",
"remote"
],
"engines": {
"homebridge": ">=1.3.9",
"node": "^14.18.1 || ^16.13.0"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"clean": "rimraf ./dist",
"lint": "eslint src/**.ts",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build",
"test": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon"
},
"main": "dist/index.js",
"devDependencies": {
"@types/node": "^17.0.9",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"homebridge": "^1.3.9",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"@hjdhjd/myq": "^6.0.6",
"mqtt": "4.3.4",
"node-html-parser": "^5.2.0",
"pkce-challenge": "^2.2.0",
"util": "^0.12.4"
}
}