homebridge-kasa-python 2.9.0-beta.7 → 2.9.1-beta.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 +1 -1
- package/package.json +10 -10
- package/requirements.txt +1 -1
package/README.md
CHANGED
|
@@ -194,7 +194,7 @@ Some newer Kasa devices require authentication. These are marked with [*] in the
|
|
|
194
194
|
- **KL400L5**
|
|
195
195
|
- Hardware: 1.0 (US) / Firmware: 1.0.5
|
|
196
196
|
- Hardware: 1.0 (US) / Firmware: 1.0.8
|
|
197
|
-
|
|
197
|
+
- **KL400L10**
|
|
198
198
|
- Hardware: 1.0 (US) / Firmware: 1.0.10
|
|
199
199
|
- **KL420L5**
|
|
200
200
|
- Hardware: 1.0 (US) / Firmware: 1.0.2
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Homebridge Kasa Python",
|
|
3
3
|
"name": "homebridge-kasa-python",
|
|
4
|
-
"version": "2.9.
|
|
4
|
+
"version": "2.9.1-beta.0",
|
|
5
5
|
"description": "Plugin that uses Python-Kasa API to communicate with Kasa Devices.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
@@ -53,18 +53,18 @@
|
|
|
53
53
|
],
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@eslint/eslintrc": "^3.3.1",
|
|
56
|
-
"@eslint/js": "^9.
|
|
57
|
-
"@stylistic/eslint-plugin": "^5.
|
|
58
|
-
"@types/node": "^24.
|
|
59
|
-
"@typescript-eslint/parser": "^8.
|
|
60
|
-
"eslint": "^9.
|
|
61
|
-
"globals": "^16.
|
|
62
|
-
"homebridge": "^2.0.0-beta.
|
|
56
|
+
"@eslint/js": "^9.36.0",
|
|
57
|
+
"@stylistic/eslint-plugin": "^5.4.0",
|
|
58
|
+
"@types/node": "^24.5.2",
|
|
59
|
+
"@typescript-eslint/parser": "^8.44.1",
|
|
60
|
+
"eslint": "^9.36.0",
|
|
61
|
+
"globals": "^16.4.0",
|
|
62
|
+
"homebridge": "^2.0.0-beta.30",
|
|
63
63
|
"node-persist": "^4.0.4",
|
|
64
64
|
"nodemon": "^3.1.10",
|
|
65
65
|
"rimraf": "^6.0.1",
|
|
66
66
|
"ts-node": "^10.9.2",
|
|
67
|
-
"typescript-eslint": "^8.
|
|
67
|
+
"typescript-eslint": "^8.44.1"
|
|
68
68
|
},
|
|
69
69
|
"homepage": "https://github.com/ZeliardM/homebridge-kasa-python#readme",
|
|
70
70
|
"funding": [
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
}
|
|
79
79
|
],
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"axios": "^1.
|
|
81
|
+
"axios": "^1.12.2",
|
|
82
82
|
"eventsource": "^4.0.0",
|
|
83
83
|
"ts-essentials": "^10.1.1",
|
|
84
84
|
"typescript": "^5.9.2"
|
package/requirements.txt
CHANGED