-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "homebridge-ratgdo",
"displayName": "Homebridge Ratgdo",
"version": "2.6.3",
"description": "HomeKit integration using Ratgdo and Konnected devices for LiftMaster and Chamberlain garage door openers, without requiring myQ.",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/hjdhjd/homebridge-ratgdo.git"
},
"bugs": {
"url": "https://github.com/hjdhjd/homebridge-ratgdo/issues"
},
"type": "module",
"engines": {
"homebridge": ">=1.8.0 || >=2.0.0",
"node": ">=18.0"
},
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run clean && npm run build-ui",
"build": "tsc",
"build-ui": "shx mkdir -p homebridge-ui/public/lib && shx cp \"node_modules/homebridge-plugin-utils/dist/ui/**/*.@(js|mjs){,.map}\" homebridge-ui/public/lib",
"clean": "shx rm -rf dist homebridge-ui/public/lib",
"prelint": "npm run build-ui",
"lint": "eslint --max-warnings=${ESLINT_MAX_WARNINGS:-\"-1\"} eslint.config.mjs src homebridge-ui/*.js homebridge-ui/public/**.mjs",
"postpublish": "npm run clean",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"chamberlain",
"esphome",
"homebridge-plugin",
"homekit",
"garage",
"garage door opener",
"gdo",
"liftmaster",
"konnected",
"myq",
"ratgdo"
],
"devDependencies": {
"@stylistic/eslint-plugin": "^2.11.0",
"@types/eventsource": "^1.1.15",
"@types/node": "^22.10.1",
"eslint": "9.16.0",
"homebridge": "^1.8.4",
"shx": "^0.3.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"dependencies": {
"@adobe/fetch": "^4.1.11",
"@homebridge/plugin-ui-utils": "^2.0.0",
"bonjour-service": "^1.3.0",
"eventsource": "^2.0.2",
"homebridge-plugin-utils": "^1.10.2"
}
}