homebridge-kasa-python 2.7.0-beta.0 → 2.7.0-beta.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Homebridge Kasa Python",
3
3
  "name": "homebridge-kasa-python",
4
- "version": "2.7.0-beta.0",
4
+ "version": "2.7.0-beta.2",
5
5
  "description": "Plugin that uses Python-Kasa API to communicate with Kasa Devices.",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -13,16 +13,16 @@
13
13
  "url": "https://github.com/ZeliardM/homebridge-kasa-python/issues"
14
14
  },
15
15
  "engines": {
16
- "node": "^18.20.5 || ^20.18.1 || ^22.12.0 || ^23.3.0",
17
16
  "homebridge": "^1.8.0 || ^2.0.0-beta.0",
18
- "python": "^3.9.0"
17
+ "node": "^18.20.5 || ^20.18.1 || ^22.12.0 || ^23.3.0",
18
+ "python": "^3.11.0"
19
19
  },
20
20
  "main": "dist/index.js",
21
21
  "scripts": {
22
- "lint": "eslint src/**/*.ts --max-warnings=0",
23
- "watch": "npm run build && npm link && nodemon",
24
22
  "build": "npm ci && rimraf -I ./dist && npm run lint && tsc && node copyPythonFiles.js",
25
- "prepublishOnly": "npm run lint && npm run build"
23
+ "lint": "eslint src/**/*.ts --max-warnings=0",
24
+ "prepublishOnly": "npm run lint && npm run build",
25
+ "watch": "npm run build && npm link && nodemon"
26
26
  },
27
27
  "keywords": [
28
28
  "homebridge",
@@ -35,8 +35,10 @@
35
35
  "python",
36
36
  "python-kasa",
37
37
  "smarthome",
38
+ "tapo",
38
39
  "tplink",
39
40
  "tplink-kasa",
41
+ "tplink-tapo",
40
42
  "tplink-smarthome"
41
43
  ],
42
44
  "files": [
@@ -48,11 +50,11 @@
48
50
  "devDependencies": {
49
51
  "@eslint/eslintrc": "^3.2.0",
50
52
  "@eslint/js": "^9.16.0",
51
- "@stylistic/eslint-plugin": "^2.11.0",
52
53
  "@types/lodash.defaults": "^4.2.9",
53
54
  "@types/node": "^22.10.1",
54
55
  "@types/semver": "^7.5.8",
55
56
  "@typescript-eslint/parser": "^8.17.0",
57
+ "@stylistic/eslint-plugin": "^2.11.0",
56
58
  "eslint": "^9.16.0",
57
59
  "globals": "^15.13.0",
58
60
  "homebridge": "^2.0.0-beta.23",
@@ -64,13 +66,13 @@
64
66
  },
65
67
  "homepage": "https://github.com/ZeliardM/homebridge-kasa-python#readme",
66
68
  "funding": [
67
- {
68
- "type": "paypal",
69
- "url": "https://www.paypal.me/ZeliardM/USD"
70
- },
71
69
  {
72
70
  "type": "github",
73
71
  "url": "https://github.com/sponsors/ZeliardM"
72
+ },
73
+ {
74
+ "type": "paypal",
75
+ "url": "https://www.paypal.me/ZeliardM/USD"
74
76
  }
75
77
  ],
76
78
  "dependencies": {
package/requirements.txt CHANGED
@@ -1,6 +1,4 @@
1
- eventlet==0.38.0
2
- flask==3.1.0
3
- flask_socketio==5.4.1
4
1
  loguru==0.7.2
5
- python-kasa==0.8.0
6
- requests==2.32.3
2
+ python-kasa==0.8.1
3
+ quart==0.19.9
4
+ uvicorn==0.32.1