-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
110 lines (110 loc) · 2.99 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@switchbot/homebridge-switchbot",
"displayName": "SwitchBot",
"type": "module",
"version": "4.1.4",
"description": "The SwitchBot plugin allows you to access your SwitchBot device(s) from HomeKit.",
"author": "SwitchBot <[email protected]> (https://github.com/SwitchBot)",
"contributors": [
{
"name": "Donavan Becker",
"url": "https://github.com/donavanbecker"
}
],
"license": "ISC",
"funding": [
{
"type": "Paypal",
"url": "https://paypal.me/donavanbecker"
},
{
"type": "GitHub",
"url": "https://github.com/sponsors/donavanbecker"
}
],
"homepage": "https://github.com/OpenWonderLabs/homebridge-switchbot#readme",
"repository": {
"type": "git",
"url": "git://github.com/OpenWonderLabs/homebridge-switchbot.git"
},
"bugs": {
"url": "https://github.com/OpenWonderLabs/homebridge-switchbot/issues"
},
"keywords": [
"homebridge-plugin",
"switchbot",
"lights",
"fan",
"outlet",
"hub",
"lightstrip",
"motion",
"contact",
"vacuum",
"lock",
"humidifier",
"humidity",
"temperature",
"bot",
"curtains",
"windows",
"ble",
"ir"
],
"main": "dist/index.js",
"icon": "https://raw.githubusercontent.com/OpenWonderLabs/homebridge-switchbot/latest/branding/icon.png",
"engineStrict": true,
"engines": {
"homebridge": "^1.8.5 || ^2.0.0 || ^2.0.0-beta.22 || ^2.0.0-alpha.37",
"node": "^20 || ^22"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"watch": "npm run build && npm run plugin-ui && npm link && nodemon",
"plugin-ui": "rsync ./src/homebridge-ui/public/index.html ./dist/homebridge-ui/public/",
"build": "npm run clean && tsc && npm run plugin-ui",
"prepublishOnly": "npm run lint && npm run build && npm run plugin-ui ",
"postpublish": "npm run clean && npm ci",
"clean": "shx rm -rf ./dist",
"test": "npm run lint",
"docs": "typedoc",
"lint-docs": "typedoc --emit none --treatWarningsAsErrors"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^1.0.3",
"async-mqtt": "^2.6.3",
"fakegato-history": "^0.6.5",
"homebridge-lib": "^7.1.0",
"node-switchbot": "^3.4.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.1",
"@types/aes-js": "^3.1.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@types/source-map-support": "^0.5.10",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2",
"homebridge": "^1.8.5",
"homebridge-config-ui-x": "4.63.0",
"nodemon": "^3.1.7",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"directories": {
"doc": "docs"
}
}