homebridge 1.7.1-beta.9 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +6 -6
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +5 -5
- package/lib/api.js.map +1 -1
- package/lib/bridgeService.d.ts +9 -5
- package/lib/bridgeService.d.ts.map +1 -1
- package/lib/bridgeService.js +8 -8
- package/lib/bridgeService.js.map +1 -1
- package/lib/childBridgeFork.d.ts.map +1 -1
- package/lib/childBridgeFork.js +4 -4
- package/lib/childBridgeFork.js.map +1 -1
- package/lib/childBridgeService.d.ts +12 -7
- package/lib/childBridgeService.d.ts.map +1 -1
- package/lib/childBridgeService.js +19 -6
- package/lib/childBridgeService.js.map +1 -1
- package/lib/cli.js +3 -3
- package/lib/cli.js.map +1 -1
- package/lib/externalPortService.d.ts +2 -2
- package/lib/externalPortService.js +2 -2
- package/lib/ipcService.d.ts +1 -1
- package/lib/ipcService.js +1 -1
- package/lib/logger.d.ts +4 -0
- package/lib/logger.d.ts.map +1 -1
- package/lib/logger.js +10 -1
- package/lib/logger.js.map +1 -1
- package/lib/platformAccessory.d.ts +1 -1
- package/lib/platformAccessory.d.ts.map +1 -1
- package/lib/platformAccessory.js.map +1 -1
- package/lib/plugin.d.ts.map +1 -1
- package/lib/plugin.js +3 -3
- package/lib/plugin.js.map +1 -1
- package/lib/pluginManager.d.ts +1 -1
- package/lib/pluginManager.d.ts.map +1 -1
- package/lib/pluginManager.js +6 -6
- package/lib/pluginManager.js.map +1 -1
- package/lib/server.d.ts.map +1 -1
- package/lib/server.js +6 -6
- package/lib/server.js.map +1 -1
- package/lib/storageService.js +1 -1
- package/lib/storageService.js.map +1 -1
- package/lib/user.js +1 -1
- package/lib/user.js.map +1 -1
- package/lib/util/mac.js +1 -1
- package/lib/util/mac.js.map +1 -1
- package/package.json +25 -22
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge",
|
|
3
3
|
"description": "HomeKit support for the impatient",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -11,17 +11,18 @@
|
|
|
11
11
|
"Andreas Bauer <mail@anderl-bauer.de>"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"build": "npm run clean && tsc",
|
|
14
15
|
"check": "npm install && npm outdated",
|
|
16
|
+
"clean": "rimraf lib/",
|
|
15
17
|
"dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true",
|
|
18
|
+
"docs": "typedoc",
|
|
16
19
|
"lint": "eslint 'src/**/*.{js,ts,json}'",
|
|
17
|
-
"
|
|
18
|
-
"test": "jest --forceExit --detectOpenHandles",
|
|
19
|
-
"test-coverage": "jest --coverage --forceExit --detectOpenHandles",
|
|
20
|
-
"clean": "rimraf lib/",
|
|
21
|
-
"watch": "nodemon",
|
|
20
|
+
"lint:fix": "npm run lint -- --fix",
|
|
22
21
|
"prepublishOnly": "npm run build",
|
|
23
22
|
"postpublish": "npm run clean",
|
|
24
|
-
"
|
|
23
|
+
"test": "jest --forceExit --detectOpenHandles",
|
|
24
|
+
"test-coverage": "jest --coverage --forceExit --detectOpenHandles",
|
|
25
|
+
"watch": "nodemon"
|
|
25
26
|
},
|
|
26
27
|
"repository": {
|
|
27
28
|
"type": "git",
|
|
@@ -45,31 +46,33 @@
|
|
|
45
46
|
],
|
|
46
47
|
"preferGlobal": true,
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"chalk": "
|
|
49
|
-
"commander": "
|
|
49
|
+
"chalk": "4.1.2",
|
|
50
|
+
"commander": "12.0.0",
|
|
50
51
|
"fs-extra": "11.2.0",
|
|
51
|
-
"hap-nodejs": "0.
|
|
52
|
+
"hap-nodejs": "0.12.0",
|
|
52
53
|
"qrcode-terminal": "0.12.0",
|
|
53
|
-
"semver": "7.
|
|
54
|
+
"semver": "7.6.0",
|
|
54
55
|
"source-map-support": "0.5.21"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
58
|
"@types/debug": "^4.1.12",
|
|
58
59
|
"@types/fs-extra": "^11.0.4",
|
|
59
|
-
"@types/jest": "^29.5.
|
|
60
|
-
"@types/node": "^20.
|
|
61
|
-
"@types/semver": "^7.5.
|
|
60
|
+
"@types/jest": "^29.5.12",
|
|
61
|
+
"@types/node": "^20.12.7",
|
|
62
|
+
"@types/semver": "^7.5.8",
|
|
62
63
|
"@types/source-map-support": "^0.5.10",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
64
|
-
"@typescript-eslint/parser": "^
|
|
65
|
-
"eslint": "^8.
|
|
66
|
-
"eslint-plugin-
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
65
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
66
|
+
"eslint": "^8.57.0",
|
|
67
|
+
"eslint-plugin-import": "^2.29.1",
|
|
68
|
+
"eslint-plugin-import-newlines": "^1.4.0",
|
|
69
|
+
"eslint-plugin-jest": "^28.2.0",
|
|
67
70
|
"jest": "^29.7.0",
|
|
68
|
-
"nodemon": "^3.0
|
|
71
|
+
"nodemon": "^3.1.0",
|
|
69
72
|
"rimraf": "^5.0.5",
|
|
70
|
-
"ts-jest": "^29.1.
|
|
73
|
+
"ts-jest": "^29.1.2",
|
|
71
74
|
"ts-node": "^10.9.2",
|
|
72
|
-
"typedoc": "^0.25.
|
|
73
|
-
"typescript": "^5.
|
|
75
|
+
"typedoc": "^0.25.13",
|
|
76
|
+
"typescript": "^5.4.5"
|
|
74
77
|
}
|
|
75
78
|
}
|