matterbridge 1.2.3 → 1.2.5
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/CHANGELOG.md +189 -171
- package/README.md +379 -297
- package/TODO.md +7 -0
- package/dist/AirQualityCluster.d.ts +134 -104
- package/dist/AirQualityCluster.d.ts.map +1 -1
- package/dist/AirQualityCluster.js +43 -26
- package/dist/AirQualityCluster.js.map +1 -1
- package/dist/EveHistoryCluster.d.ts +446 -0
- package/dist/EveHistoryCluster.d.ts.map +1 -0
- package/dist/EveHistoryCluster.js +170 -0
- package/dist/EveHistoryCluster.js.map +1 -0
- package/dist/TvocCluster.d.ts +364 -148
- package/dist/TvocCluster.d.ts.map +1 -1
- package/dist/TvocCluster.js +115 -32
- package/dist/TvocCluster.js.map +1 -1
- package/dist/cli.js +6 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/matterbridge.d.ts +9 -1
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +338 -150
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeController.d.ts.map +1 -1
- package/dist/matterbridgeController.js +9 -0
- package/dist/matterbridgeController.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +1254 -9
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +372 -91
- package/dist/matterbridgeDevice.js.map +1 -1
- package/frontend/build/asset-manifest.json +3 -3
- package/frontend/build/index.html +1 -1
- package/frontend/build/matterbridge 32x32.png +0 -0
- package/frontend/build/matterbridge 64x64.png +0 -0
- package/frontend/build/static/css/main.61f6cf42.css.map +1 -1
- package/frontend/build/static/js/main.6b861489.js +3 -0
- package/frontend/build/static/js/main.6b861489.js.map +1 -0
- package/matterbridge.service +18 -0
- package/package.json +88 -87
- package/frontend/build/Matterbridge.jpg +0 -0
- package/frontend/build/static/js/main.e3553a4d.js +0 -3
- package/frontend/build/static/js/main.e3553a4d.js.map +0 -1
- /package/frontend/build/static/js/{main.e3553a4d.js.LICENSE.txt → main.6b861489.js.LICENSE.txt} +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[Unit]
|
|
2
|
+
Description=matterbridge
|
|
3
|
+
After=network.target
|
|
4
|
+
|
|
5
|
+
[Service]
|
|
6
|
+
Type=notify
|
|
7
|
+
ExecStart=/usr/bin/matterbridge
|
|
8
|
+
WorkingDirectory=/home/pi/Matterbridge
|
|
9
|
+
StandardOutput=inherit
|
|
10
|
+
StandardError=inherit
|
|
11
|
+
WatchdogSec=10s
|
|
12
|
+
Restart=always
|
|
13
|
+
RestartSec=10s
|
|
14
|
+
TimeoutStopSec=30s
|
|
15
|
+
User=pi
|
|
16
|
+
|
|
17
|
+
[Install]
|
|
18
|
+
WantedBy=multi-user.target
|
package/package.json
CHANGED
|
@@ -1,87 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "matterbridge",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "Matterbridge plugin manager for Matter",
|
|
5
|
-
"author": "https://github.com/Luligu",
|
|
6
|
-
"license": "Apache-2.0",
|
|
7
|
-
"homepage": "https://github.com/Luligu/matterbridge/blob/main/README.md",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/Luligu/matterbridge.git"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/Luligu/matterbridge/issues"
|
|
14
|
-
},
|
|
15
|
-
"funding": {
|
|
16
|
-
"type": "buymeacoffee",
|
|
17
|
-
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"matterbridge",
|
|
21
|
-
"homebridge",
|
|
22
|
-
"bridge",
|
|
23
|
-
"frontend",
|
|
24
|
-
"matter",
|
|
25
|
-
"matter.js",
|
|
26
|
-
"matter-node.js",
|
|
27
|
-
"plugin"
|
|
28
|
-
],
|
|
29
|
-
"type": "module",
|
|
30
|
-
"main": "dist/index.js",
|
|
31
|
-
"types": "dist/index.d.js",
|
|
32
|
-
"bin": {
|
|
33
|
-
"matterbridge": "dist/cli.js"
|
|
34
|
-
},
|
|
35
|
-
"engines": {
|
|
36
|
-
"node": "^18.19.0 || ^20.12.0"
|
|
37
|
-
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "tsc",
|
|
40
|
-
"watch": "tsc --watch",
|
|
41
|
-
"start:test": "node ./dist/cli.js -test",
|
|
42
|
-
"start:bridge": "matterbridge -bridge",
|
|
43
|
-
"start:childbridge": "matterbridge -childbridge",
|
|
44
|
-
"start:controller": "matterbridge -controller",
|
|
45
|
-
"start:help": "matterbridge -help",
|
|
46
|
-
"test": "jest",
|
|
47
|
-
"test:verbose": "jest --verbose",
|
|
48
|
-
"test:watch": "jest --watch",
|
|
49
|
-
"lint": "eslint src/**.ts",
|
|
50
|
-
"lint:fix": "eslint src/**.ts --fix",
|
|
51
|
-
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
52
|
-
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
53
|
-
"clean": "rimraf tsconfig.tsbuildinfo ./dist",
|
|
54
|
-
"cleanBuild": "npm run clean && tsc",
|
|
55
|
-
"deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
|
|
56
|
-
"prepublishOnly": "npm run wtf:uninstall && npm uninstall matter-history && npm install matter-history && npm run lint && npm run cleanBuild",
|
|
57
|
-
"checkDependencies": "npx npm-check-updates",
|
|
58
|
-
"updateDependencies": "npx npm-check-updates -u",
|
|
59
|
-
"updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest && npm install && npm run build",
|
|
60
|
-
"updateMatter:dev": "npm run deepClean && npm install @project-chip/matter-node.js@dev && npm install && npm run build",
|
|
61
|
-
"wtf:install": "npm install wtfnode && npm install @types/wtfnode",
|
|
62
|
-
"wtf:uninstall": "npm uninstall wtfnode && npm uninstall @types/wtfnode",
|
|
63
|
-
"version": "npm run build",
|
|
64
|
-
"version:patch": "npm version patch",
|
|
65
|
-
"version:minor": "npm version minor",
|
|
66
|
-
"version:major": "npm version major"
|
|
67
|
-
},
|
|
68
|
-
"devDependencies": {
|
|
69
|
-
"@stylistic/eslint-plugin": "^1.7.0",
|
|
70
|
-
"@tsconfig/node-lts": "^20.1.
|
|
71
|
-
"@types/express": "^4.17.21",
|
|
72
|
-
"@types/node": "^20.
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
74
|
-
"@typescript-eslint/parser": "^7.
|
|
75
|
-
"eslint-config-prettier": "^9.1.0",
|
|
76
|
-
"eslint-plugin-prettier": "^5.1.3",
|
|
77
|
-
"prettier": "^3.2.5",
|
|
78
|
-
"typescript": "^5.4.
|
|
79
|
-
},
|
|
80
|
-
"dependencies": {
|
|
81
|
-
"@project-chip/matter-node.js": "^0.
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"node-
|
|
86
|
-
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "matterbridge",
|
|
3
|
+
"version": "1.2.5",
|
|
4
|
+
"description": "Matterbridge plugin manager for Matter",
|
|
5
|
+
"author": "https://github.com/Luligu",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/Luligu/matterbridge/blob/main/README.md",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Luligu/matterbridge.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Luligu/matterbridge/issues"
|
|
14
|
+
},
|
|
15
|
+
"funding": {
|
|
16
|
+
"type": "buymeacoffee",
|
|
17
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"matterbridge",
|
|
21
|
+
"homebridge",
|
|
22
|
+
"bridge",
|
|
23
|
+
"frontend",
|
|
24
|
+
"matter",
|
|
25
|
+
"matter.js",
|
|
26
|
+
"matter-node.js",
|
|
27
|
+
"plugin"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"types": "dist/index.d.js",
|
|
32
|
+
"bin": {
|
|
33
|
+
"matterbridge": "dist/cli.js"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": "^18.19.0 || ^20.12.0"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsc",
|
|
40
|
+
"watch": "tsc --watch",
|
|
41
|
+
"start:test": "node ./dist/cli.js -test",
|
|
42
|
+
"start:bridge": "matterbridge -bridge",
|
|
43
|
+
"start:childbridge": "matterbridge -childbridge",
|
|
44
|
+
"start:controller": "matterbridge -controller",
|
|
45
|
+
"start:help": "matterbridge -help",
|
|
46
|
+
"test": "jest",
|
|
47
|
+
"test:verbose": "jest --verbose",
|
|
48
|
+
"test:watch": "jest --watch",
|
|
49
|
+
"lint": "eslint src/**.ts",
|
|
50
|
+
"lint:fix": "eslint src/**.ts --fix",
|
|
51
|
+
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
52
|
+
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
53
|
+
"clean": "rimraf tsconfig.tsbuildinfo ./dist",
|
|
54
|
+
"cleanBuild": "npm run clean && tsc",
|
|
55
|
+
"deepClean": "rimraf tsconfig.tsbuildinfo package-lock.json ./dist ./node_modules",
|
|
56
|
+
"prepublishOnly": "npm run wtf:uninstall && npm uninstall matter-history && npm install matter-history && npm run lint && npm run cleanBuild",
|
|
57
|
+
"checkDependencies": "npx npm-check-updates",
|
|
58
|
+
"updateDependencies": "npx npm-check-updates -u",
|
|
59
|
+
"updateMatter:latest": "npm run deepClean && npm install @project-chip/matter-node.js@latest && npm install && npm run build",
|
|
60
|
+
"updateMatter:dev": "npm run deepClean && npm install @project-chip/matter-node.js@dev && npm install && npm run build",
|
|
61
|
+
"wtf:install": "npm install wtfnode && npm install @types/wtfnode",
|
|
62
|
+
"wtf:uninstall": "npm uninstall wtfnode && npm uninstall @types/wtfnode",
|
|
63
|
+
"version": "npm run build",
|
|
64
|
+
"version:patch": "npm version patch",
|
|
65
|
+
"version:minor": "npm version minor",
|
|
66
|
+
"version:major": "npm version major"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@stylistic/eslint-plugin": "^1.7.0",
|
|
70
|
+
"@tsconfig/node-lts": "^20.1.3",
|
|
71
|
+
"@types/express": "^4.17.21",
|
|
72
|
+
"@types/node": "^20.12.5",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^7.6.0",
|
|
74
|
+
"@typescript-eslint/parser": "^7.6.0",
|
|
75
|
+
"eslint-config-prettier": "^9.1.0",
|
|
76
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
77
|
+
"prettier": "^3.2.5",
|
|
78
|
+
"typescript": "^5.4.4"
|
|
79
|
+
},
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"@project-chip/matter-node.js": "^0.8.0",
|
|
82
|
+
"body-parser": "^1.20.2",
|
|
83
|
+
"express": "^4.19.2",
|
|
84
|
+
"matter-history": "^1.0.13",
|
|
85
|
+
"node-ansi-logger": "^1.9.3",
|
|
86
|
+
"node-persist-manager": "^1.0.7"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
Binary file
|