homebridge-tydom 0.26.0 → 0.27.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/README.md +11 -12
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
|
|
31
31
|
[Homebridge](https://homebridge.io/) plugin to easily manage [Tydom hardware](https://www.deltadore.fr/domotique/pilotage-maison-connectee) by [Delta Dore](https://www.deltadore.fr/) from [Apple HomeKit](https://www.apple.com/ios/home/).
|
|
32
32
|
|
|
33
|
+
- Compatible with [Homebridge](https://homebridge.io/) v1.6+ and v2.0.
|
|
34
|
+
|
|
33
35
|
- Rely on [node-tydom-client](https://github.com/mgcrea/node-tydom-client) to communicate with an existing [Tydom bridge](https://www.deltadore.fr/domotique/pilotage-maison-connectee/box-domotique/tydom-2-0-ref-6414118) (required).
|
|
34
36
|
|
|
35
37
|
- Properly propagates external events into [Apple HomeKit](https://www.apple.com/ios/home/).
|
|
@@ -51,7 +53,7 @@
|
|
|
51
53
|
"private": true,
|
|
52
54
|
"description": "This file keeps track of which plugins should be installed.",
|
|
53
55
|
"dependencies": {
|
|
54
|
-
"homebridge-tydom": "^0.
|
|
56
|
+
"homebridge-tydom": "^0.25.1"
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
59
|
```
|
|
@@ -296,17 +298,14 @@ Alternatively, you can set `debug` to `true` in the plugin's configuration.
|
|
|
296
298
|
|
|
297
299
|
### Available scripts
|
|
298
300
|
|
|
299
|
-
| **Script**
|
|
300
|
-
|
|
|
301
|
-
| start
|
|
302
|
-
|
|
|
303
|
-
|
|
|
304
|
-
|
|
|
305
|
-
|
|
|
306
|
-
|
|
|
307
|
-
| pretty | Run prettier static tests |
|
|
308
|
-
| build | Compile the library |
|
|
309
|
-
| build:watch | Watch compilation |
|
|
301
|
+
| **Script** | **Description** |
|
|
302
|
+
| ---------- | ------------------------------ |
|
|
303
|
+
| start | Start homebridge in debug mode |
|
|
304
|
+
| lint | Run eslint static tests |
|
|
305
|
+
| format | Run prettier formatting |
|
|
306
|
+
| check | Run TypeScript type checking |
|
|
307
|
+
| test | Run lint, format, and check |
|
|
308
|
+
| build | Compile the library with tsup |
|
|
310
309
|
|
|
311
310
|
## Authors
|
|
312
311
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-tydom",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.27.0",
|
|
4
4
|
"description": "Homebridge plugin to manage Tydom devices by Delta Dore",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"kolorist": "^1.8.0",
|
|
38
38
|
"lodash": "^4.17.23",
|
|
39
39
|
"source-map-support": "^0.5.21",
|
|
40
|
-
"tydom-client": "^0.
|
|
40
|
+
"tydom-client": "^0.15.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@mgcrea/eslint-config-node": "^0.14.1",
|