forked from OpenWonderLabs/homebridge-switchbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
{
"displayName": "Homebridge SwitchBot",
"name": "@switchbot/homebridge-switchbot",
"version": "1.14.1",
"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 <[email protected]> (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.5.0",
"node": "^14.19.3 || ^16.15.1 || ^18.4.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",
"humidifier",
"humidity",
"temperature",
"bot",
"curtains",
"windows",
"ble",
"ir"
],
"dependencies": {
"@homebridge/plugin-ui-utils": "^0.0.19",
"axios": "^0.27.2",
"rxjs": "^7.5.5",
"async-mqtt": "^2.6.2",
"fakegato-history": "^0.6.3"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.1.0",
"homebridge": "^1.5.0",
"nodemon": "^2.0.18",
"npm-check-updates": "^14.1.1",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"typescript-axios-wb": "^1.0.3"
},
"optionalDependencies": {
"node-switchbot": "^1.3.0"
}
}