homebridge-plugin-utils 1.7.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -136,6 +136,7 @@ const tsRules = {
136
136
 
137
137
  ...tsEslint.configs.strictTypeChecked,
138
138
  ...tsEslint.configs.stylisticTypeChecked,
139
+ "@typescript-eslint/await-thenable": "warn",
139
140
  "@typescript-eslint/explicit-function-return-type": "warn",
140
141
  "@typescript-eslint/explicit-module-boundary-types": "warn",
141
142
  "@typescript-eslint/no-explicit-any": "warn",
@@ -144,6 +145,9 @@ const tsRules = {
144
145
  "@typescript-eslint/no-unused-expressions": "warn",
145
146
  "@typescript-eslint/no-unused-vars": ["warn", { "caughtErrors": "none" }],
146
147
  "@typescript-eslint/promise-function-async": "warn",
148
+ "require-await": "off",
149
+ // eslint-disable-next-line sort-keys
150
+ "@typescript-eslint/require-await": "warn",
147
151
  "no-dupe-class-members": "off",
148
152
  "no-undef": "off",
149
153
  "no-unused-expressions": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-plugin-utils",
3
- "version": "1.7.0",
3
+ "version": "1.8.1",
4
4
  "displayName": "Homebridge Plugin Utilities",
5
5
  "description": "Opinionated utilities to provide common capabilities and create rich configuration webUI experiences for Homebridge plugins.",
6
6
  "author": {
@@ -39,15 +39,15 @@
39
39
  },
40
40
  "main": "dist/index.js",
41
41
  "devDependencies": {
42
- "@stylistic/eslint-plugin": "2.6.1",
43
- "@types/node": "22.1.0",
44
- "eslint": "^9.8.0",
42
+ "@stylistic/eslint-plugin": "2.8.0",
43
+ "@types/node": "22.5.5",
44
+ "eslint": "^9.10.0",
45
45
  "shx": "0.3.4",
46
- "typescript": "5.5.4",
47
- "typescript-eslint": "^8.0.0"
46
+ "typescript": "5.6.2",
47
+ "typescript-eslint": "^8.5.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "homebridge": "1.8.4",
51
- "mqtt": "5.9.1"
51
+ "mqtt": "5.10.1"
52
52
  }
53
53
  }