forked from ronnieroberts/homebridge-ewelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.71 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
{
"name": "homebridge-ewelink",
"displayName": "Homebridge eWeLink",
"alias": "eWeLink",
"version": "12.1.1-beta.5",
"author": {
"name": "bwp91",
"email": "bwp91@icloud.com"
},
"description": "Homebridge plugin to integrate eWeLink devices into HomeKit.",
"type": "module",
"license": "MIT",
"keywords": [
"homebridge",
"homebridge-plugin",
"homebridge-ewelink",
"hoobs",
"hoobs-plugin",
"homekit",
"siri",
"zigbee",
"rf",
"ewelink",
"sonoff",
"eachen",
"smartwise"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint . --fix",
"rebuild": "rm -rf package-lock.json && rm -rf node_modules && npm install"
},
"engines": {
"homebridge": "^1.6.0",
"node": "^18.19.1 || ^20.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/bwp91/homebridge-ewelink.git"
},
"bugs": {
"url": "https://github.com/bwp91/homebridge-ewelink/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bwp91"
},
{
"type": "kofi",
"url": "https://ko-fi.com/bwp91"
},
{
"type": "patreon",
"url": "https://www.patreon.com/bwp91"
},
{
"type": "paypal",
"url": "https://www.paypal.me/BenPotter"
}
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.1",
"axios": "^1.6.8",
"node-persist": "^4.0.1",
"p-queue": "^8.0.1",
"websocket-as-promised": "^2.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-sort-exports": "^0.9.1"
}
}