forked from joshepw/homebridge-switchbot-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 KB
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
{
"displayName": "Homebridge SwitchBot OpenAPI",
"name": "homebridge-switchbot-openapi",
"version": "3.4.3",
"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-openapi.git"
},
"bugs": {
"url": "https://github.com/OpenWonderLabs/homebridge-switchbot-openapi/issues"
},
"engines": {
"node": ">=14.17.1",
"homebridge": ">=1.3.4"
},
"main": "dist/index.js",
"scripts": {
"update": "npm update",
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"funding": [
{
"type": "Paypal",
"url": "https://www.paypal.me/donavanbecker"
}
],
"keywords": [
"homebridge-plugin",
"switchbot",
"humidifier",
"humidity",
"temperature",
"bot",
"curtains",
"windows",
"ir"
],
"dependencies": {
"axios": "^0.21.1",
"rxjs": "^7.1.0"
},
"devDependencies": {
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"homebridge": "^1.3.4",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"typescript-axios-wb": "^1.0.3"
}
}