-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
{
"name": "homebridge-lib",
"description": "Library for homebridge plugins",
"author": "Erik Baauw",
"maintainers": [
"ebaauw"
],
"license": "Apache-2.0",
"version": "7.1.1",
"keywords": [
"homekit",
"homebridge"
],
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./*": "./lib/*.js"
},
"files": [
"index.js",
"lib",
"cli"
],
"bin": {
"hap": "cli/hap.js",
"json": "cli/json.js",
"sysinfo": "cli/sysinfo.js",
"upnp": "cli/upnp.js"
},
"engines": {
"homebridge": "^1.8.5||^2.0.0-beta",
"node": "22.13.0||^22||^20||^18"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "~1.0.3",
"hb-lib-tools": "~2.1.3"
},
"scripts": {
"prepare": "standard && rm -rf out && jsdoc -c jsdoc.json",
"test": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebaauw/homebridge-lib.git"
},
"bugs": {
"url": "https://github.com/ebaauw/homebridge-lib/issues"
},
"homepage": "https://github.com/ebaauw/homebridge-lib#readme"
}