-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@chazepps/homebridge-hejhome",
"version": "1.1.1",
"description": "The Hejhome plugin allows you to access your Hejhome device(s) from HomeKit.",
"author": {
"name": "Chaz",
"email": "[email protected]",
"url": "https://github.com/chazepps"
},
"contributors": [
{
"name": "Chaz",
"url": "https://github.com/chazepps"
}
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/chazepps/homebridge-hejhome.git"
},
"bugs": {
"url": "https://github.com/chazepps/homebridge-hejhome/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/chazepps"
}
],
"homepage": "https://github.com/chazepps/homebridge-hejhome#readme",
"keywords": [
"homebridge-plugin",
"hejhome",
"hub",
"lightstrip",
"lights",
"motion",
"outlet",
"헤이홈"
],
"icon": "https://raw.githubusercontent.com/chazepps/homebridge-hejhome/latest/branding/icon.png",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint src/**/*.ts --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1"
},
"engineStrict": true,
"displayName": "Hejhome",
"publishConfig": {
"access": "public"
},
"dependencies": {
"bluebird": "3.7.2",
"deepmerge": "4.3.1",
"json-stringify-safe": "^5.0.1",
"ky": "1.5.0",
"lodash": "4.17.21",
"paho-mqtt": "1.1.0",
"uuid": "10.0.0",
"validator": "13.12.0",
"ws": "8.18.0"
},
"devDependencies": {
"@types/bluebird": "3.5.42",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash": "4.17.7",
"@types/node": "20.14.12",
"@types/paho-mqtt": "1.0.10",
"@types/uuid": "10.0.0",
"@types/validator": "13.12.0",
"@types/ws": "8.5.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"eslint": "8.57.0",
"homebridge": "2.0.0-beta.0",
"nodemon": "3.1.4",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}