-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.33 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
{
"private": false,
"displayName": "Homebridge ConnectLife AC",
"name": "homebridge-connectlife-ac",
"version": "1.3.3",
"description": "Control your ConnectLife air conditioner with Homebridge",
"license": "Apache-2.0",
"homepage": "https://github.com/ghosty2004/homebridge-connectlife-ac",
"repository": {
"type": "git",
"url": "git+https://github.com/ghosty2004/homebridge-connectlife-ac.git"
},
"author": "ghosty2004",
"bugs": {
"url": "https://github.com/ghosty2004/homebridge-connectlife-ac/issues"
},
"engines": {
"node": "^18.17.0 || ^20.9.0",
"homebridge": ">=1.7.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"connectlife",
"air-conditioner",
"homebridge"
],
"devDependencies": {
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"homebridge": "^1.8.2",
"nodemon": "^3.1.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"node-cache": "^5.1.2"
}
}