forked from plasticrake/homebridge-tplink-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.78 KB
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
{
"name": "homebridge-kasa",
"displayName": "Homebridge Kasa",
"version": "9.1.4",
"description": "Kasa smart home plugin for Homebridge. Supports devices using Legacy XOR, KLAP v2, and AES protocols.",
"keywords": [
"homebridge-plugin",
"homebridge",
"tplink",
"kasa",
"klap",
"homeautomation",
"automation",
"home",
"smarthome",
"smartplug",
"smartswitch",
"smartbulb"
],
"bugs": {
"url": "https://github.com/micthiesen/homebridge-kasa/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/micthiesen/homebridge-kasa.git"
},
"type": "module",
"license": "MIT",
"author": "Michael Thiesen",
"main": "lib/index.js",
"files": [
"config.schema.json",
"lib"
],
"scripts": {
"prebuild": "pnpm run clean",
"build": "tsc --project tsconfig.source.json",
"clean": "rm -rf lib/",
"check:write": "biome check --write .",
"format": "biome format .",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"start": "homebridge --plugin-path .",
"pretest": "pnpm run lint && pnpm run typecheck",
"test": "pnpm run test:only",
"test:only": "vitest run",
"debug:script": "node --env-file=.env --import tsx/esm src/scripts/debug.ts"
},
"dependencies": {
"@micthiesen/mitools": "^2",
"chalk": "^5.4.1",
"semver": "^7.7.4",
"tplink-smarthome-api": "~5.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "^22.19.15",
"@types/semver": "^7.7.1",
"hap-nodejs": "~0.14.2",
"homebridge": "~1.11.3",
"tsx": "^4.21.0",
"typescript": "~6.0.2",
"vitest": "^4.1.1"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": ">=18"
}
}