@matterbridge/frontend 3.4.4
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/README.md +22 -0
- package/build/Shelly.svg +1 -0
- package/build/assets/index.css +1 -0
- package/build/assets/index.js +4 -0
- package/build/assets/vendor_emotion.js +1 -0
- package/build/assets/vendor_lodash.js +1 -0
- package/build/assets/vendor_mdi.js +1 -0
- package/build/assets/vendor_mui.js +137 -0
- package/build/assets/vendor_node_modules.js +28 -0
- package/build/assets/vendor_notistack.js +5 -0
- package/build/assets/vendor_qrcode.js +1 -0
- package/build/assets/vendor_rjsf.js +11 -0
- package/build/bmc-button.svg +22 -0
- package/build/discord.svg +5 -0
- package/build/index.html +24 -0
- package/build/matter.png +0 -0
- package/build/matterbridge 1250x1250.png +0 -0
- package/build/matterbridge 32x32.png +0 -0
- package/build/matterbridge 624x624.png +0 -0
- package/build/matterbridge 64x64.png +0 -0
- package/build/matterbridge.svg +50 -0
- package/npm-shrinkwrap.json +1423 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@matterbridge/frontend",
|
|
3
|
+
"version": "3.4.4",
|
|
4
|
+
"description": "Matterbridge plugin manager for Matter",
|
|
5
|
+
"author": "https://github.com/Luligu",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://matterbridge.io/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Luligu/matterbridge.git",
|
|
11
|
+
"directory": "apps/frontend"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Luligu/matterbridge/issues"
|
|
15
|
+
},
|
|
16
|
+
"funding": {
|
|
17
|
+
"type": "buymeacoffee",
|
|
18
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"matterbridge",
|
|
22
|
+
"homebridge",
|
|
23
|
+
"bridge",
|
|
24
|
+
"plugin",
|
|
25
|
+
"frontend",
|
|
26
|
+
"matter.js",
|
|
27
|
+
"matter-node.js",
|
|
28
|
+
"matter",
|
|
29
|
+
"matterprotocol",
|
|
30
|
+
"iot",
|
|
31
|
+
"smarthome",
|
|
32
|
+
"connectedthings",
|
|
33
|
+
"hap",
|
|
34
|
+
"homekit",
|
|
35
|
+
"siri",
|
|
36
|
+
"google-home",
|
|
37
|
+
"alexa",
|
|
38
|
+
"homeassistant",
|
|
39
|
+
"smartthings",
|
|
40
|
+
"ewelink"
|
|
41
|
+
],
|
|
42
|
+
"type": "module",
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"build",
|
|
48
|
+
"package.json",
|
|
49
|
+
"npm-shrinkwrap.json"
|
|
50
|
+
],
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@emotion/react": "11.14.0",
|
|
53
|
+
"@emotion/styled": "11.14.1",
|
|
54
|
+
"@mdi/js": "7.4.47",
|
|
55
|
+
"@mdi/react": "1.6.1",
|
|
56
|
+
"@mui/icons-material": "7.3.7",
|
|
57
|
+
"@mui/material": "7.3.7",
|
|
58
|
+
"@rjsf/core": "5.24.13",
|
|
59
|
+
"@rjsf/utils": "5.24.13",
|
|
60
|
+
"@rjsf/validator-ajv8": "5.24.13",
|
|
61
|
+
"notistack": "3.0.2",
|
|
62
|
+
"qrcode.react": "4.2.0",
|
|
63
|
+
"react": "19.2.4",
|
|
64
|
+
"react-dom": "19.2.4",
|
|
65
|
+
"react-router": "7.13.0",
|
|
66
|
+
"react-router-dom": "7.13.0"
|
|
67
|
+
}
|
|
68
|
+
}
|