-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"displayName": "Homebridge Loxone Control",
"name": "homebridge-loxone-control",
"version": "1.3.1",
"description": "Homebridge plugin to control a loxone system trough the web-interface - useful if you have zero access to the Miniserver",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rocket-monkey/homebridge-loxone-control.git"
},
"bugs": {
"url": "https://github.com/rocket-monkey/homebridge-loxone-control/issues"
},
"engines": {
"node": "^18.17.0 || ^20.11.0",
"homebridge": "^1.6.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"postbuild": "node scripts/copyScripts.mjs",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"loxone"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "1.0.3",
"puppeteer": "22.6.4",
"username": "5.1.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"homebridge": "1.8.1",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}