generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
61
{
"displayName": "HiSense TV",
"name": "homebridge-hisense-tv-remotenow",
"version": "3.0.2",
"description": "Control RemoteNow-enabled HiSense TVs.",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/MrAsterisco/homebridge-hisense-tv",
"keywords": [
"homebridge",
"homebridge-plugin",
"hisense",
"hisense-tv"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MrAsterisco/homebridge-hisense-tv.git"
},
"bugs": {
"url": "https://github.com/MrAsterisco/homebridge-hisense-tv/issues"
},
"bin": {
"hisense-tv": "dist/scripts/hisenseTV.js"
},
"scripts": {
"lint": "eslint src/**.ts --max-warnings=5 --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc && chmod +x dist/scripts/hisenseTV.js",
"prepublishOnly": "npm run lint && npm run build",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
]
},
"engines": {
"homebridge": "^1.8.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"mqtt": "^5.8.1",
"wol": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/wol": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"homebridge": "^1.8.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}