homebridge-kasa-python 2.8.0-beta.9 → 2.8.1

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.8.0-beta.9",
4
+ "version": "2.8.1",
5
5
  "description": "Plugin that uses Python-Kasa API to communicate with Kasa Devices.",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -13,15 +13,19 @@
13
13
  "url": "https://github.com/ZeliardM/homebridge-kasa-python/issues"
14
14
  },
15
15
  "engines": {
16
- "homebridge": "^1.11 || ^2.0",
16
+ "homebridge": "^1.11.0 || ^2.0.0",
17
17
  "node": "^20 || ^22 || ^24",
18
- "python": "^3.11 || ^3.12 || ^3.13 || ^3.14"
18
+ "python": "^3.11 || ^3.12 || ^3.13"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
19
22
  },
20
23
  "main": "dist/index.js",
21
24
  "scripts": {
22
- "build": "npm ci && rimraf -I ./dist && npm run lint && tsc && node copyPythonFiles.js",
25
+ "build": "npm ci && rimraf -I ./dist && tsc && node copyPythonFiles.js",
23
26
  "lint": "eslint src/**/*.ts --max-warnings=0",
24
27
  "prepublishOnly": "npm run lint && npm run build",
28
+ "test": "echo \"No test specified\" && exit 0",
25
29
  "watch": "npm run build && npm link && nodemon"
26
30
  },
27
31
  "keywords": [
@@ -49,18 +53,18 @@
49
53
  ],
50
54
  "devDependencies": {
51
55
  "@eslint/eslintrc": "^3.3.1",
52
- "@eslint/js": "^9.33.0",
56
+ "@eslint/js": "^9.34.0",
53
57
  "@stylistic/eslint-plugin": "^5.2.3",
54
- "@types/node": "^24.2.1",
55
- "@typescript-eslint/parser": "^8.39.1",
56
- "eslint": "^9.33.0",
58
+ "@types/node": "^24.3.0",
59
+ "@typescript-eslint/parser": "^8.41.0",
60
+ "eslint": "^9.34.0",
57
61
  "globals": "^16.3.0",
58
62
  "homebridge": "^2.0.0-beta.29",
59
63
  "node-persist": "^4.0.4",
60
64
  "nodemon": "^3.1.10",
61
65
  "rimraf": "^6.0.1",
62
66
  "ts-node": "^10.9.2",
63
- "typescript-eslint": "^8.39.1"
67
+ "typescript-eslint": "^8.41.0"
64
68
  },
65
69
  "homepage": "https://github.com/ZeliardM/homebridge-kasa-python#readme",
66
70
  "funding": [
@@ -1,3 +0,0 @@
1
- import sys
2
-
3
- print(f"{sys.base_prefix}/bin")