generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.54 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
{
"displayName": "Tapo P100 Plugin",
"name": "homebridge-tapo",
"type": "module",
"version": "1.5.2",
"description": "Homebridge Plugin for TP-Link Tapo P100 Plugs",
"license": "Apache-2.0",
"homepage": "https://github.com/apatsufas/homebridge-tapo-p100#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/apatsufas/homebridge-tapo-p100.git"
},
"bugs": {
"url": "https://github.com/apatsufas/homebridge-tapo-p100/issues"
},
"engines": {
"node": "^18.20.4 || ^20.16.0 || ^22.6.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"keywords": [
"homebridge-plugin",
"tapo",
"p100",
"p105",
"p110",
"l510e",
"l530e",
"tplink",
"tp-link"
],
"dependencies": {
"axios": "^1.7.7",
"fakegato-history": "^0.6.5",
"lodash.defaults": "^4.2.0",
"utf8": "^3.0.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash.defaults": "^4.2.9",
"@types/node": "^22.2.0",
"@types/utf8": "^3.0.3",
"@types/uuid": "^10.0.0",
"eslint": "^9.9.0",
"homebridge": "^2.0.0-beta.0",
"nodemon": "^3.1.4",
"rimraf": "^6.0.1",
"ts-essentials": "^10.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}