This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
66 lines (66 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
65
66
{
"name": "homebridge-myq",
"version": "3.4.4",
"displayName": "Homebridge myQ",
"description": "HomeKit integration for 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",
"garage door opener",
"gate",
"gate opener",
"homebridge",
"homebridge-plugin",
"liftmaster",
"myq",
"remote"
],
"type": "module",
"engines": {
"homebridge": ">=1.6.0",
"node": ">=18"
},
"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": "20.12.7",
"@types/readable-stream": "4.0.11",
"@types/ws": "8.5.10",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"eslint": "8.57.0",
"homebridge": "1.8.1",
"nodemon": "3.1.0",
"rimraf": "5.0.5",
"typescript": "5.4.5"
},
"dependencies": {
"@hjdhjd/myq": "7.6.0",
"@homebridge/plugin-ui-utils": "1.0.3",
"mqtt": "5.5.4"
}
}