forked from LouwHopley/homebridge-olarm-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.34 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
{
"name": "homebridge-ws-olarm-plugin",
"displayName": "OlarmWSHomebridgePlugin",
"version": "1.1.12",
"description": "A WS/MQTT homebridge plugin for an [Olarm](https://olarm.co) alarm system.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"watch": "npm run build && npm link && nodemon"
},
"author": "Luke Stephens <[email protected]",
"orignalAuthor": "Louw Hopley <[email protected]>",
"engines": {
"node": ">=14.18.1",
"homebridge": ">=1.3.5"
},
"keywords": [
"homebridge-plugin",
"olarm",
"olarm-pro",
"olarm-pro-4G",
"olarm-link",
"alarm-system"
],
"license": "MIT",
"files": [
"LICENSE",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/imprisonedmind/homebridge-ws-olarm-plugin.git"
},
"bugs": {
"url": "https://github.com/imprisonedmind/homebridge-ws-olarm-plugin/issues"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.3",
"@types/fs-extra": "^11.0.4",
"@types/node-persist": "^3.1.8",
"homebridge": "^1.6.1",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"typescript": "^5.0.4",
"node-persist": "^4.0.3"
},
"dependencies": {
"node-fetch": "^2.6.1",
"fs-extra": "^11.2.0",
"mqtt": "^5.10.2"
}
}