matterbridge 1.2.15 → 1.2.16

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.2.15",
3
+ "version": "1.2.16",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",
@@ -62,38 +62,39 @@
62
62
  "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
63
63
  "format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
64
64
  "clean": "rimraf tsconfig.tsbuildinfo ./dist",
65
- "cleanBuild": "npm run clean && tsc",
66
- "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
65
+ "cleanBuild": "npm run clean && npm run build",
66
+ "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules && npm install && npm run build",
67
67
  "prepublishOnly": "npm run wtf:uninstall && npm uninstall matter-history && npm install matter-history && npm run lint && npm run cleanBuild",
68
68
  "checkDependencies": "npx npm-check-updates",
69
- "updateDependencies": "npx npm-check-updates -u",
69
+ "updateDependencies": "npx npm-check-updates -u && npm install & npm run cleanBuild",
70
70
  "updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest && npm install && npm run build",
71
71
  "updateMatter:dev": "npm run deepClean && npm install @project-chip/matter-node.js@dev && npm install && npm run build",
72
72
  "wtf:install": "npm install wtfnode && npm install @types/wtfnode",
73
73
  "wtf:uninstall": "npm uninstall wtfnode && npm uninstall @types/wtfnode",
74
- "version": "npm run build",
74
+ "preversion": "npm run build && npm run lint",
75
+ "postversion": "git push && git push --tags",
75
76
  "version:patch": "npm version patch",
76
77
  "version:minor": "npm version minor",
77
78
  "version:major": "npm version major"
78
79
  },
79
80
  "devDependencies": {
80
- "@stylistic/eslint-plugin": "^2.0.0",
81
+ "@stylistic/eslint-plugin": "^2.1.0",
81
82
  "@tsconfig/node-lts": "^20.1.3",
82
83
  "@types/express": "^4.17.21",
83
- "@types/node": "^20.12.11",
84
+ "@types/node": "^20.12.12",
84
85
  "@types/ws": "^8.5.10",
85
- "@typescript-eslint/eslint-plugin": "^7.8.0",
86
- "@typescript-eslint/parser": "^7.8.0",
86
+ "@typescript-eslint/eslint-plugin": "^7.9.0",
87
+ "@typescript-eslint/parser": "^7.9.0",
87
88
  "eslint-config-prettier": "^9.1.0",
88
89
  "eslint-plugin-prettier": "^5.1.3",
89
90
  "prettier": "^3.2.5",
90
91
  "typescript": "^5.4.5"
91
92
  },
92
93
  "dependencies": {
93
- "@project-chip/matter-node.js": "^0.8.1",
94
+ "@project-chip/matter-node.js": "^0.9.0",
94
95
  "body-parser": "^1.20.2",
95
96
  "express": "^4.19.2",
96
- "matter-history": "^1.0.15",
97
+ "matter-history": "^1.1.0",
97
98
  "node-ansi-logger": "^1.9.5",
98
99
  "node-persist-manager": "^1.0.7",
99
100
  "ws": "^8.17.0"