matterbridge 1.1.5 → 1.1.7

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,70 +1,71 @@
1
- {
2
- "name": "matterbridge",
3
- "version": "1.1.5",
4
- "description": "Matterbridge",
5
- "author": "https://github.com/Luligu",
6
- "license": "Apache-2.0",
7
- "type": "module",
8
- "main": "dist/index.js",
9
- "types": "dist/index.d.js",
10
- "repository": {
11
- "type": "git",
12
- "url": "https://github.com/Luligu/matterbridge"
13
- },
14
- "bugs": {
15
- "url": "https://github.com/Luligu/matterbridge/issues"
16
- },
17
- "keywords": [
18
- "matterbridge",
19
- "homebridge",
20
- "matter",
21
- "matter.js"
22
- ],
23
- "bin": {
24
- "matterbridge": "./dist/cli.js"
25
- },
26
- "engines": {
27
- "node": "^18.19.0 || ^20.11.0"
28
- },
29
- "scripts": {
30
- "build": "tsc",
31
- "watch": "tsc --watch",
32
- "start:test": "node ./dist/cli.js -test",
33
- "start:bridge": "node ./dist/index.js -bridge",
34
- "start:childbridge": "node ./dist/index.js -childbridge",
35
- "start:help": "node ./dist/index.js -help",
36
- "test": "jest",
37
- "test:verbose": "jest --verbose",
38
- "test:watch": "jest --watch",
39
- "lint": "eslint src/**.ts",
40
- "lint:fix": "eslint src/**.ts --fix",
41
- "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
42
- "format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
43
- "clean": "rimraf tsconfig.tsbuildinfo ./dist",
44
- "cleanBuild": "npm run clean && tsc",
45
- "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
46
- "prepublishOnly": "npm run lint && npm run cleanBuild",
47
- "checkDependencies": "npx npm-check-updates",
48
- "updateDependencies": "npx npm-check-updates -u",
49
- "updateMatter": "npm install @project-chip/matter-node.js@dev"
50
- },
51
- "devDependencies": {
52
- "@stylistic/eslint-plugin": "^1.6.3",
53
- "@tsconfig/node-lts": "^20.1.1",
54
- "@types/express": "^4.17.21",
55
- "@types/node": "^20.11.25",
56
- "@typescript-eslint/eslint-plugin": "^7.1.1",
57
- "@typescript-eslint/parser": "^7.1.1",
58
- "eslint-config-prettier": "^9.1.0",
59
- "eslint-plugin-prettier": "^5.1.3",
60
- "prettier": "^3.2.5",
61
- "typescript": "^5.4.2"
62
- },
63
- "dependencies": {
64
- "@project-chip/matter-node.js": "^0.7.5",
65
- "express": "^4.18.3",
66
- "matter-history": "^1.0.9",
67
- "node-ansi-logger": "^1.9.2",
68
- "node-persist-manager": "^1.0.4"
69
- }
70
- }
1
+ {
2
+ "name": "matterbridge",
3
+ "version": "1.1.7",
4
+ "description": "Matterbridge",
5
+ "author": "https://github.com/Luligu",
6
+ "license": "Apache-2.0",
7
+ "type": "module",
8
+ "main": "dist/index.js",
9
+ "types": "dist/index.d.js",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/Luligu/matterbridge"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/Luligu/matterbridge/issues"
16
+ },
17
+ "keywords": [
18
+ "matterbridge",
19
+ "homebridge",
20
+ "matter",
21
+ "matter.js"
22
+ ],
23
+ "bin": {
24
+ "matterbridge": "./dist/cli.js"
25
+ },
26
+ "engines": {
27
+ "node": "^18.19.0 || ^20.11.0"
28
+ },
29
+ "scripts": {
30
+ "build": "tsc",
31
+ "watch": "tsc --watch",
32
+ "start:test": "node ./dist/cli.js -test",
33
+ "start:bridge": "matterbridge -bridge",
34
+ "start:childbridge": "matterbridge -childbridge",
35
+ "start:help": "matterbridge -help",
36
+ "test": "jest",
37
+ "test:verbose": "jest --verbose",
38
+ "test:watch": "jest --watch",
39
+ "lint": "eslint src/**.ts",
40
+ "lint:fix": "eslint src/**.ts --fix",
41
+ "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
42
+ "format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
43
+ "clean": "rimraf tsconfig.tsbuildinfo ./dist",
44
+ "cleanBuild": "npm run clean && tsc",
45
+ "deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
46
+ "prepublishOnly": "npm run lint && npm run cleanBuild",
47
+ "checkDependencies": "npx npm-check-updates",
48
+ "updateDependencies": "npx npm-check-updates -u",
49
+ "updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest && npm install && npm run build",
50
+ "updateMatter:dev": "npm run deepClean && npm install @project-chip/matter-node.js@dev && npm install && npm run build"
51
+ },
52
+ "devDependencies": {
53
+ "@stylistic/eslint-plugin": "^1.7.0",
54
+ "@tsconfig/node-lts": "^20.1.1",
55
+ "@types/express": "^4.17.21",
56
+ "@types/node": "^20.11.27",
57
+ "@typescript-eslint/eslint-plugin": "^7.2.0",
58
+ "@typescript-eslint/parser": "^7.2.0",
59
+ "eslint-config-prettier": "^9.1.0",
60
+ "eslint-plugin-prettier": "^5.1.3",
61
+ "prettier": "^3.2.5",
62
+ "typescript": "^5.4.2"
63
+ },
64
+ "dependencies": {
65
+ "@project-chip/matter-node.js": "^0.7.5",
66
+ "express": "^4.18.3",
67
+ "matter-history": "^1.0.11",
68
+ "node-ansi-logger": "^1.9.2",
69
+ "node-persist-manager": "^1.0.4"
70
+ }
71
+ }