-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.54 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"displayName": "Homebridge Konnected",
"name": "homebridge-konnected",
"version": "1.3.2",
"description": "Homebridge plugin for Konnected security alarm systems",
"author": "mkormendy",
"license": "MIT",
"homepage": "https://github.com/mkormendy/homebridge-konnected/",
"repository": {
"type": "git",
"url": "git+https://github.com/mkormendy/homebridge-konnected.git"
},
"bugs": {
"url": "https://github.com/mkormendy/homebridge-konnected/issues/new?assignees=mkormendy&labels=bug&template=bug-report.md&title="
},
"type": "module",
"engines": {
"node": ">=18.0.0",
"homebridge": ">=1.7.0"
},
"main": "dist/index.js",
"scripts": {
"preinstall": "npm list -g homebridge || npm install -g homebridge",
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc",
"debug": "npm run build && npm list -g homebridge-konnected || npm link && nodemon --exitcrash",
"prepublishonly": "eslint src/**.ts && npm run build"
},
"keywords": [
"home",
"smart",
"security",
"sensors",
"switches",
"leak",
"smoke",
"motion",
"temperature",
"humidity",
"alarm",
"automation",
"alerts",
"monitoring",
"up-cycle",
"retrofit",
"wired system",
"PoE",
"zone",
"scene",
"IoT",
"DIY",
"arm",
"disarm",
"wireless",
"alarm system",
"alarm panel",
"konnected",
"konnected-io",
"homekit",
"apple",
"homebridge",
"homebridge-plugin",
"category-security"
],
"dependencies": {
"express": "^4.19.1",
"ip": "^2.0.1",
"node-fetch": "^3.3.2",
"node-ssdp": "^4.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ip": "^1.1.3",
"@types/node": "^20.11.30",
"@types/node-fetch": "^2.5.11",
"@types/node-ssdp": "^4.0.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"homebridge": "^1.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.0.0",
"typescript": "^5.4.3"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mkormendy"
},
{
"type": "paypal",
"url": "https://www.paypal.me/mikekormendy"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/mikekormendy"
}
]
}