homebridge-yoto 0.0.2 → 0.0.4
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 +3 -1
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
[](https://github.com/neostandard/neostandard)
|
|
8
8
|
[](https://socket.dev/npm/package/homebridge-yoto)
|
|
9
9
|
|
|
10
|
+
THIS PLUGIN IS A WIP. DO NOT USE YET.
|
|
11
|
+
|
|
10
12
|
> Control your Yoto players through Apple HomeKit
|
|
11
13
|
|
|
12
14
|
A Homebridge plugin that integrates Yoto audio players with Apple HomeKit, providing real-time control over playback, volume, and device status through MQTT.
|
|
@@ -328,4 +330,4 @@ MIT © [Bret Comnes](https://bret.io)
|
|
|
328
330
|
|
|
329
331
|
- 🐛 [Report a Bug](https://github.com/bcomnes/homebridge-yoto/issues)
|
|
330
332
|
- 💡 [Request a Feature](https://github.com/bcomnes/homebridge-yoto/issues)
|
|
331
|
-
- 📖 [Documentation](https://github.com/bcomnes/homebridge-yoto#readme)
|
|
333
|
+
- 📖 [Documentation](https://github.com/bcomnes/homebridge-yoto#readme)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-yoto",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "0.0.
|
|
3
|
+
"description": "Control your Yoto players through Apple HomeKit with real-time MQTT updates",
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/bcomnes/homebridge-yoto/issues"
|
|
@@ -23,10 +23,14 @@
|
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=20",
|
|
26
|
-
"npm": ">=10"
|
|
26
|
+
"npm": ">=10",
|
|
27
|
+
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
|
|
27
28
|
},
|
|
28
29
|
"homepage": "https://github.com/bcomnes/homebridge-yoto",
|
|
29
|
-
"keywords": [
|
|
30
|
+
"keywords": [
|
|
31
|
+
"homebridge-plugin",
|
|
32
|
+
"yoto"
|
|
33
|
+
],
|
|
30
34
|
"license": "MIT",
|
|
31
35
|
"type": "module",
|
|
32
36
|
"module": "index.js",
|