forked from OpenWonderLabs/homebridge-switchbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.35 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
78
79
80
81
82
83
84
85
86
87
{
"displayName": "Homebridge SwitchBot",
"name": "@switchbot/homebridge-switchbot",
"version": "2.7.0",
"description": "The [Homebridge](https://homebridge.io) SwitchBot plugin allows you to access your [SwitchBot](https://www.switch-bot.com) device(s) from HomeKit.",
"author": "SwitchBot <support@wondertechlabs.com> (https://github.com/SwitchBot)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/OpenWonderLabs/homebridge-switchbot.git"
},
"bugs": {
"url": "https://github.com/OpenWonderLabs/homebridge-switchbot/issues"
},
"engines": {
"homebridge": "^1.6.1",
"node": "^16.20.1 || ^18.17.0 || ^20.5.0"
},
"main": "dist/index.js",
"scripts": {
"check": "npm install && npm outdated",
"update": "ncu -u && npm update && npm install",
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"postpublish": "npm run clean",
"clean": "rimraf ./dist",
"test": "eslint src/**.ts"
},
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/donavanbecker"
},
{
"type": "GitHub",
"url": "https://github.com/sponsors/donavanbecker"
}
],
"publishConfig": {
"access": "public"
},
"keywords": [
"homebridge-plugin",
"switchbot",
"lock",
"humidifier",
"humidity",
"temperature",
"bot",
"curtains",
"windows",
"ble",
"ir"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"async-mqtt": "^2.6.3",
"crypto-js": "^4.1.1",
"fakegato-history": "^0.6.4",
"homebridge-lib": "^6.4.0",
"rxjs": "^7.8.1",
"undici": "^5.22.1"
},
"optionalDependencies": {
"@abandonware/bluetooth-hci-socket": "0.5.3-10",
"@abandonware/noble": "1.9.2-21",
"node-switchbot": "1.8.2"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"homebridge": "^1.6.1",
"nodemon": "^3.0.1",
"npm-check-updates": "^16.10.17",
"prettier": "3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}