This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.5 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
{
"private": false,
"displayName": "TPLink Tapo",
"name": "homebridge-tp-link-tapo",
"version": "4.1.2",
"description": "A platform to implement the tp-link tapo device and Adaptive Lighting for light bulbs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/RaresAil/homebridge-tp-link-tapo.git"
},
"bugs": {
"url": "https://github.com/RaresAil/homebridge-tp-link-tapo/issues"
},
"engines": {
"homebridge": ">=1.3.9",
"node": ">=16.0.0"
},
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"Adaptive Lighting",
"tplink",
"tp-link",
"tp",
"link",
"light",
"bulb",
"adaptive",
"lighting",
"tapo",
"smart"
],
"dependencies": {
"async-lock": "^1.4.1",
"axios": "^1.7.7"
},
"resolutions": {
"semver": "^7.5.2",
"dns-packet": "^5.4.0",
"braces": "^3.0.3",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@types/async-lock": "^1.4.2",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "^8.49.0",
"homebridge": "^1.8.4",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}