-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.21 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
{
"private": false,
"name": "homebridge-mqtt-tasmota",
"displayName": "Homebridge MQTT Tasmota",
"version": "0.12.0",
"description": "A homebridge plugin to control tasmota devices via mqtt",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"homebridge-plugin",
"homekit",
"blinds",
"shutters",
"switch",
"sensor",
"smoke",
"doorbell",
"temperature",
"humidity",
"lightbulb",
"tasmota",
"mqtt",
"sonoff"
],
"engines": {
"node": ">=14.0.0",
"homebridge": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atombaf/homebridge-mqtt-tasmota"
},
"bugs": {
"url": "https://github.com/atombaf/homebridge-mqtt-tasmota/issues"
},
"files": [
"config.schema.json",
"src/**/*",
"LICENSE",
"package.json",
"README.md"
],
"author": "Fabien G",
"license": "MIT",
"dependencies": {
"mqtt": ">1.12.0"
},
"funding": [
{
"type" : "paypal",
"url" : "https://www.paypal.com/donate/?hosted_button_id=WUCDAPU4HBT5U"
},
{
"type" : "patreon",
"url" : "https://www.patreon.com/atombaf"
}
]
}