generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 1.89 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
{
"private": false,
"displayName": "Homebridge MagicHome Dynamic Platform",
"name": "homebridge-magichome-dynamic-platform",
"contributors": [
"Zachary Avino [email protected]",
"Igor Ramos"
],
"version": "1.9.7",
"description": "Dynamically Discover and Add MagicHome Bulbs and Controllers to Homebrige.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Zacknetic/HomebridgeMagicHome-DynamicPlatform"
},
"bugs": {
"url": "https://github.com/Zacknetic/HomebridgeMagicHome-DynamicPlatform/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Zacknetic"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/ZacharyAvino"
}
],
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin",
"hoobs",
"magichome",
"magic",
"home",
"lednet",
"Magic Home",
"magic home",
"outlet",
"dimmer",
"rgb",
"rgbw",
"rgbww",
"LEDnet",
"wowled",
"flux_led",
"smart lights"
],
"dependencies": {
"color-convert": "^2.0.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"promise-queue": "^2.2.5"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/promise-queue": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"homebridge": "^1.1.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}