matterbridge 1.5.4 → 1.5.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -77,6 +77,7 @@
77
77
  "scripts": {
78
78
  "build": "tsc",
79
79
  "watch": "tsc --watch",
80
+ "start": "node ./dist/cli.js",
80
81
  "start:test": "node ./dist/cli.js -test",
81
82
  "start:bridge": "node ./dist/cli.js -bridge",
82
83
  "start:childbridge": "node ./dist/cli.js -childbridge",
@@ -100,9 +101,9 @@
100
101
  "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
101
102
  "clean": "rimraf tsconfig.tsbuildinfo ./dist",
102
103
  "cleanBuild": "npm run clean && npm run build",
103
- "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
104
+ "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json npm-shrinkwrap.json ./dist ./node_modules",
104
105
  "deepCleanRebuild": "npm run deepClean && npm install && npm run build",
105
- "prepublishOnly": "npm run lint && npm run cleanBuild",
106
+ "prepublishOnly": "npm run lint && npm run cleanBuild && npm shrinkwrap",
106
107
  "checkDependencies": "npx npm-check-updates",
107
108
  "updateDependencies": "npx npm-check-updates -u && npm install & npm run cleanBuild",
108
109
  "updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest @project-chip/matter.js@latest && npm install && npm run build",
@@ -125,34 +126,34 @@
125
126
  "install:jest": "npm install --save-dev jest ts-jest @types/jest eslint-plugin-jest"
126
127
  },
127
128
  "dependencies": {
128
- "@project-chip/matter-node.js": "0.10.0",
129
- "@project-chip/matter.js": "0.10.0",
129
+ "@project-chip/matter-node.js": "0.10.1",
130
+ "@project-chip/matter.js": "0.10.1",
130
131
  "archiver": "7.0.1",
131
- "express": "4.19.2",
132
+ "express": "4.21.0",
132
133
  "glob": "11.0.0",
133
134
  "https": "1.0.0",
134
- "matter-history": "^1.1.8",
135
+ "matter-history": "1.1.11",
135
136
  "node-ansi-logger": "3.0.0",
136
137
  "node-persist-manager": "1.0.8",
137
138
  "ws": "8.18.0"
138
139
  },
139
140
  "devDependencies": {
140
- "@eslint/js": "9.9.1",
141
+ "@eslint/js": "9.10.0",
141
142
  "@types/archiver": "6.0.2",
142
143
  "@types/eslint__js": "8.42.3",
143
144
  "@types/express": "4.17.21",
144
145
  "@types/jest": "29.5.12",
145
- "@types/node": "22.5.1",
146
+ "@types/node": "22.5.4",
146
147
  "@types/ws": "8.5.12",
147
- "eslint": "9.9.1",
148
+ "eslint": "9.10.0",
148
149
  "eslint-config-prettier": "9.1.0",
149
- "eslint-plugin-jest": "28.8.1",
150
+ "eslint-plugin-jest": "28.8.3",
150
151
  "eslint-plugin-prettier": "5.2.1",
151
152
  "jest": "29.7.0",
152
153
  "prettier": "3.3.3",
153
154
  "rimraf": "6.0.1",
154
155
  "ts-jest": "29.2.5",
155
- "typescript": "5.5.4",
156
- "typescript-eslint": "8.3.0"
156
+ "typescript": "5.6.2",
157
+ "typescript-eslint": "8.5.0"
157
158
  }
158
159
  }