-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "homebridge-intercom-door",
"version": "0.0.37",
"description": "Homebridge plugin to control electromagnetic lock via Raspberry Pi GPIO pins",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"homebridge",
"raspberry",
"gpio",
"lock",
"lock-mechanism",
"electromagnetic-lock",
"homekit"
],
"repository": {
"type": "git",
"url": "https://github.com/jvmo/homebridge-intercom-door"
},
"dependencies": {
"homebridge": "^1.7.0",
"node-persist": "^2.1.0",
"onoff": "^6.0.0",
"underscore": "^1.13.6"
},
"engines": {
"homebridge": ">=1.7.0",
"node": ">=18.19.0"
},
"homebridge": {
"platforms": [
{
"platform": "ElectromagneticLock",
"name": "ElectromagneticLock"
}
],
"accessories": [
{
"accessory": "ElectromagneticLock",
"name": "YourLockName",
"lockPin": 17,
"doorPin": 18,
"voltagePin": 22,
"activeLow": true,
"reedSwitchActiveLow": true,
"unlockingDuration": 2,
"lockWithMemory": true
}
],
"peerDependencies": {
"homebridge": "^1.7.0",
"hap-nodejs": ">=0.11.1"
}
},
"maintainers": [
{
"name": "jvmo",
"email": "[email protected]"
}
]
}