-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 KB
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
{
"displayName": "Homebridge Aqara IR Controller",
"name": "homebridge-aqara-ir-controller",
"version": "1.0.5",
"description": "A simple plugin that exposes Aqara Ir AC control as a Thermostat",
"license": "MIT",
"homepage": "https://github.com/Vaxter/Homebridge-Aqara-IR-Controller",
"repository": {
"type": "git",
"url": "https://github.com/Vaxter/Homebridge-Aqara-IR-Controller.git"
},
"bugs": {
"url": "https://github.com/Vaxter/Homebridge-Aqara-IR-Controller/issues"
},
"author": "vaxter",
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.10.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc && mv ./dist/ui ./dist/homebridge-ui && mkdir ./dist/homebridge-ui/public && cp -r ./src/ui/public/* ./dist/homebridge-ui/public/",
"lint": "eslint . --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"keywords": [
"homebridge-plugin",
"aqara",
"ir",
"ac"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.0.0",
"axios": "^1.7.9",
"homebridge-lib": "^7.1.0"
},
"devDependencies": {
"homebridge": "^2.0.0-beta.23",
"homebridge-config-ui-x": "^4.68.0",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.6",
"eslint": "^9.14.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}