-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.71 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
61
{
"displayName": "Homebridge SwitchBot OpenAPI",
"name": "homebridge-switchbot-openapi",
"version": "2.0.0",
"description": "The [Homebridge](https://homebridge.io) SwitchBot plugin allows you to access your [SwitchBot](https://www.switch-bot.com) devices 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.15.3",
"homebridge": ">=1.1.7"
},
"main": "dist/index.js",
"scripts": {
"clean": "npm clean-install",
"audit": "npm audit fix",
"update": "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"
},
"funding": [
{
"type": "Paypal",
"url": "https://www.paypal.me/donavanbecker"
}
],
"keywords": [
"homebridge-plugin",
"switchbot",
"humidifier",
"humidity",
"temperature"
],
"dependencies": {
"axios": "^0.21.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"eslint-plugin-prettier": "^3.3.1",
"homebridge": "^1.1.7",
"homebridge-config-ui-x": "^4.36.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"typescript-axios-wb": "^1.0.3"
}
}