homebridge-nest-accfactory 0.3.0 → 0.3.2

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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "homebridge-nest-accfactory",
3
3
  "displayName": "Nest Accfactory",
4
4
  "type": "module",
5
- "version": "0.3.0",
5
+ "version": "0.3.2",
6
6
  "description": "Homebridge support for Nest/Google devices including HomeKit Secure Video (HKSV) support for doorbells and cameras",
7
7
  "author": "n0rt0nthec4t",
8
8
  "license": "Apache-2.0",
@@ -29,11 +29,13 @@
29
29
  "temperature",
30
30
  "smoke",
31
31
  "sensor",
32
- "floodlight"
32
+ "floodlight",
33
+ "hotwater",
34
+ "lock"
33
35
  ],
34
36
  "main": "dist/index.js",
35
37
  "engines": {
36
- "node": "^20.17.0 || ^22.9.0",
38
+ "node": "^20.19.0 || ^22.12.0 || ^24.0.0",
37
39
  "homebridge": "^1.8.0 || ^2.0.0-beta.0"
38
40
  },
39
41
  "files": [
@@ -45,26 +47,27 @@
45
47
  ],
46
48
  "scripts": {
47
49
  "clean": "rimraf ./dist*",
48
- "format": "prettier --write src/*.js src/**/*.js",
49
- "lint": "eslint src/*.js src/**/*.js --fix --max-warnings=20",
50
+ "format": "prettier --write \"src/**/*.{js,mjs}\"",
51
+ "lint": "eslint \"src/**/*.{js,mjs}\" --fix --max-warnings=20",
50
52
  "build": "npm run clean && copyfiles -u 1 src/*.js dist && copyfiles -u 2 src/HomeKitDevice/*.js dist && copyfiles -u 2 src/HomeKitHistory/*.js dist && copyfiles -u 1 src/res/*.h264 dist && copyfiles -u 1 src/res/*.jpg dist && copyfiles -u 1 'src/protobuf/**/*.proto' dist && copyfiles -u 1 src/plugins/*.js dist",
51
53
  "prepublishOnly": "npm run lint && npm run build"
52
54
  },
53
55
  "devDependencies": {
54
- "@eslint/js": "^9.28.0",
55
- "@stylistic/eslint-plugin": "^4.4.1",
56
- "@types/node": "^24.0.1",
57
- "@typescript-eslint/parser": "^8.34.0",
58
- "copyfiles": "^2.4.1",
59
- "eslint": "^9.28.0",
60
- "homebridge": "^2.0.0-beta.0",
61
- "prettier": "^3.5.3",
56
+ "@eslint/js": "^9.32.0",
57
+ "eslint": "^9.32.0",
58
+ "@stylistic/eslint-plugin": "^5.2.2",
59
+ "@types/node": "^24.2.0",
60
+ "@typescript-eslint/parser": "^8.39.0",
61
+ "prettier": "^3.6.2",
62
62
  "prettier-eslint": "^16.4.2",
63
- "rimraf": "^6.0.1"
63
+ "copyfiles": "^2.4.1",
64
+ "rimraf": "^6.0.1",
65
+ "homebridge": "^2.0.0-beta.0"
64
66
  },
65
67
  "dependencies": {
68
+ "@evan/opus": "^1.0.3",
66
69
  "protobufjs": "^7.5.3",
67
- "werift": "^0.22.1",
68
- "ws": "^8.18.2"
70
+ "werift": "^0.22.2",
71
+ "undici": "7.13.0"
69
72
  }
70
73
  }