generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"displayName": "Homebridge Kasa Python",
"name": "homebridge-kasa-python",
"version": "2.5.6",
"description": "Plugin that uses Python-Kasa API to communicate with Kasa Devices.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ZeliardM/homebridge-kasa-python.git"
},
"bugs": {
"url": "https://github.com/ZeliardM/homebridge-kasa-python/issues"
},
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.11.0 || ^23.1.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0",
"python": "^3.9.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "npm ci && rimraf -I ./dist && npm run lint && tsc && node copyPythonFiles.js",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-kasa",
"homebridge-kasa-python",
"homekit",
"kasa",
"plugin",
"python",
"python-kasa",
"smarthome",
"tplink",
"tplink-kasa",
"tplink-smarthome"
],
"files": [
"config.schema.json",
"dist",
"LICENSE",
"requirements.txt"
],
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/lodash.defaults": "^4.2.9",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"homebridge": "^2.0.0-beta.23",
"nodemon": "^3.1.7",
"node-persist": "^4.0.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.13.0"
},
"homepage": "https://github.com/ZeliardM/homebridge-kasa-python#readme",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/ZeliardM/USD"
},
{
"type": "github",
"url": "https://github.com/sponsors/ZeliardM"
}
],
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.7.7",
"get-port": "^7.1.0",
"lodash.defaults": "^4.2.0",
"semver": "^7.6.3",
"ts-essentials": "^10.0.3",
"typescript": "^5.6.3",
"util": "^0.12.5"
},
"overrides": {
"node-persist": "^4.0.3"
}
}