matterbridge 3.3.0-dev-20250930-3e941d6 → 3.3.0-dev-20251001-49236db
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 +3 -0
- package/dist/matterbridge.js +2 -0
- package/frontend/build/assets/index.js +7 -7
- package/frontend/build/assets/vendor_mdi.js +1 -1
- package/frontend/build/index.html +22 -24
- package/frontend/index.html +13 -15
- package/frontend/package-lock.json +7827 -7710
- package/frontend/package.json +81 -75
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/frontend/package.json
CHANGED
|
@@ -1,75 +1,81 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "frontend",
|
|
3
|
-
"version": "3.2.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"homepage": "./",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "vite",
|
|
9
|
-
"build": "vite build",
|
|
10
|
-
"watch": "vite build --watch",
|
|
11
|
-
"preview": "vite preview",
|
|
12
|
-
"typecheck": "tsc --project ./tsconfig.json --noEmit",
|
|
13
|
-
"lint": "eslint --max-warnings=0 .",
|
|
14
|
-
"lint:fix": "eslint --fix --max-warnings=0 .",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"test
|
|
18
|
-
"test:
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"install:
|
|
30
|
-
"install:
|
|
31
|
-
"install:
|
|
32
|
-
"install:
|
|
33
|
-
"install:
|
|
34
|
-
"install:
|
|
35
|
-
"install:
|
|
36
|
-
"install:
|
|
37
|
-
"install:
|
|
38
|
-
"install:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"react
|
|
55
|
-
"react
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"@
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"eslint": "^
|
|
67
|
-
"eslint
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "frontend",
|
|
3
|
+
"version": "3.2.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"homepage": "./",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "vite",
|
|
9
|
+
"build": "vite build",
|
|
10
|
+
"watch": "vite build --watch",
|
|
11
|
+
"preview": "vite preview",
|
|
12
|
+
"typecheck": "tsc --project ./tsconfig.json --noEmit",
|
|
13
|
+
"lint": "eslint --max-warnings=0 .",
|
|
14
|
+
"lint:fix": "eslint --fix --max-warnings=0 .",
|
|
15
|
+
"format": "prettier --write .",
|
|
16
|
+
"format:check": "prettier --check .",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"test:watch": "vitest --reporter verbose",
|
|
19
|
+
"test:verbose": "vitest run --reporter verbose",
|
|
20
|
+
"test:coverage": "vitest run --reporter verbose --coverage",
|
|
21
|
+
"clean": "npx rimraf ./build",
|
|
22
|
+
"cleanBuild": "npm run clean && npm run build",
|
|
23
|
+
"deepClean": "npx rimraf package-lock.json ./build ./node_modules",
|
|
24
|
+
"deepCleanRebuild": "npm run deepClean && npm install && npm run build && npm run test",
|
|
25
|
+
"checkDependencies": "npx npm-check-updates",
|
|
26
|
+
"updateDependencies": "npx npm-check-updates -u && npm install & npm run cleanBuild",
|
|
27
|
+
"runMeBeforePublish": "npm run lint && npm run build && npm run test",
|
|
28
|
+
"reset": "npm run deepClean && npm run install:all && npm run build && npm run test",
|
|
29
|
+
"install:all": "npm run install:react && npm run install:emotion && npm run install:mui && npm run install:mdi && npm run install:qrcode && npm run install:notistack && npm run install:rjsf && npm run install:typescript && npm run install:vite && npm run install:vitest && npm run install:eslint && npm run install:prettier",
|
|
30
|
+
"install:react": "npm install react react-dom react-router react-router-dom --omit=dev && npm install --save-dev @types/react @types/react-dom",
|
|
31
|
+
"install:emotion": "npm install @emotion/react @emotion/styled --omit=dev",
|
|
32
|
+
"install:mui": "npm install @mui/material @mui/icons-material --omit=dev",
|
|
33
|
+
"install:mdi": "npm install @mdi/js @mdi/react --omit=dev",
|
|
34
|
+
"install:qrcode": "npm install qrcode.react --omit=dev",
|
|
35
|
+
"install:notistack": "npm install notistack --omit=dev",
|
|
36
|
+
"install:rjsf": "npm install @rjsf/core @rjsf/utils @rjsf/validator-ajv8 --omit=dev",
|
|
37
|
+
"install:typescript": "npm install --save-dev typescript @types/node",
|
|
38
|
+
"install:vite": "npm install --save-dev vite @vitejs/plugin-react",
|
|
39
|
+
"install:vitest": "npm install --save-dev vitest jsdom @testing-library/react @testing-library/jest-dom",
|
|
40
|
+
"install:eslint": "npm install --save-dev eslint eslint-plugin-react eslint-plugin-react-hooks typescript-eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser",
|
|
41
|
+
"install:prettier": "npm install --save-dev prettier eslint-config-prettier eslint-plugin-prettier"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@emotion/react": "^11.14.0",
|
|
45
|
+
"@emotion/styled": "^11.14.1",
|
|
46
|
+
"@mdi/js": "^7.4.47",
|
|
47
|
+
"@mdi/react": "^1.6.1",
|
|
48
|
+
"@mui/icons-material": "^7.3.2",
|
|
49
|
+
"@mui/material": "^7.3.2",
|
|
50
|
+
"@rjsf/core": "^5.24.13",
|
|
51
|
+
"@rjsf/utils": "^5.24.13",
|
|
52
|
+
"@rjsf/validator-ajv8": "^5.24.13",
|
|
53
|
+
"notistack": "^3.0.2",
|
|
54
|
+
"qrcode.react": "^4.2.0",
|
|
55
|
+
"react": "^19.1.1",
|
|
56
|
+
"react-dom": "^19.1.1",
|
|
57
|
+
"react-router": "^7.9.3",
|
|
58
|
+
"react-router-dom": "^7.9.3"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@testing-library/jest-dom": "^6.8.0",
|
|
62
|
+
"@testing-library/react": "^16.3.0",
|
|
63
|
+
"@types/node": "^24.5.2",
|
|
64
|
+
"@types/react": "^19.1.14",
|
|
65
|
+
"@types/react-dom": "^19.1.9",
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
67
|
+
"@typescript-eslint/parser": "^8.44.1",
|
|
68
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
69
|
+
"eslint": "^9.36.0",
|
|
70
|
+
"eslint-config-prettier": "^10.1.8",
|
|
71
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
72
|
+
"eslint-plugin-react": "^7.37.5",
|
|
73
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
74
|
+
"jsdom": "^27.0.0",
|
|
75
|
+
"prettier": "^3.6.2",
|
|
76
|
+
"typescript": "^5.9.2",
|
|
77
|
+
"typescript-eslint": "^8.44.1",
|
|
78
|
+
"vite": "^7.1.7",
|
|
79
|
+
"vitest": "^3.2.4"
|
|
80
|
+
}
|
|
81
|
+
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.3.0-dev-
|
|
3
|
+
"version": "3.3.0-dev-20251001-49236db",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.3.0-dev-
|
|
9
|
+
"version": "3.3.0-dev-20251001-49236db",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@matter/main": "0.15.4",
|
package/package.json
CHANGED