This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
54 lines (54 loc) · 1.5 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
{
"displayName": "LG ThinQ Air Conditioner",
"name": "homebridge-lg-thinq-ac",
"version": "2.2.0",
"description": "Homebridge plugin for LG ThinQ-enabled portable air conditioner",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sman591/homebridge-lg-thinq-ac.git"
},
"bugs": {
"url": "https://github.com/sman591/homebridge-lg-thinq-ac/issues"
},
"engines": {
"node": ">=12.0.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"axios": "^0.25.0",
"client-oauth2": "^4.3.3",
"lodash.debounce": "^4.0.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^14.18.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"homebridge": "^1.3.4",
"nodemon": "^2.0.15",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}