-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.43 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "scrypted-kasa",
"version": "1.3.4",
"description": "TP-Link Kasa plugin for Scrypted — cameras (video, two-way audio, spotlight, siren, status LED), plugs/outlets, wall switches, dimmers, and smart bulbs (on/off, brightness, color, color temperature).",
"author": "Sergey Vilgelm <sergey@vilgelm.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sv-tools/scrypted-kasa-plugin.git"
},
"bugs": {
"url": "https://github.com/sv-tools/scrypted-kasa-plugin/issues"
},
"homepage": "https://github.com/sv-tools/scrypted-kasa-plugin#readme",
"files": [
"dist/plugin.zip"
],
"scripts": {
"scrypted-setup-project": "scrypted-setup-project",
"prescrypted-setup-project": "scrypted-package-json",
"build": "scrypted-webpack",
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
"prescrypted-vscode-launch": "scrypted-webpack",
"scrypted-vscode-launch": "scrypted-deploy-debug",
"scrypted-deploy-debug": "scrypted-deploy-debug",
"scrypted-debug": "scrypted-debug",
"scrypted-deploy": "scrypted-deploy",
"scrypted-readme": "scrypted-readme",
"scrypted-package-json": "scrypted-package-json",
"fmt": "prettier --write \"src/**/*.ts\"",
"fmt:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"keywords": [
"scrypted",
"scrypted-plugin",
"plugin",
"kasa",
"tp-link",
"tplink",
"smarthome",
"smart-home",
"homekit",
"camera",
"intercom",
"two-way-audio",
"switch",
"outlet",
"plug",
"dimmer",
"bulb",
"light",
"lightbulb"
],
"scrypted": {
"name": "Kasa Plugin",
"type": "DeviceProvider",
"interfaces": [
"ScryptedSystemDevice",
"ScryptedDeviceCreator",
"DeviceProvider",
"DeviceCreator",
"DeviceDiscovery",
"Readme",
"Settings"
],
"pluginDependencies": [
"@scrypted/prebuffer-mixin"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@scrypted/sdk": "^0.5.59",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.1"
},
"overrides": {
"serialize-javascript": "^7.0.5"
},
"engines": {
"node": ">=20"
}
}