@matrix-widget-toolkit/mui 2.0.5 → 2.0.6

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.
Files changed (1) hide show
  1. package/package.json +11 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matrix-widget-toolkit/mui",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "A customized material-ui theme that matches the style of the Element Matrix client",
5
5
  "author": "Nordeck IT + Consulting GmbH",
6
6
  "license": "Apache-2.0",
@@ -8,14 +8,15 @@
8
8
  "types": "./build/index.d.ts",
9
9
  "exports": {
10
10
  "import": "./build/esm/index.js",
11
- "require": "./build/cjs/index.js"
11
+ "require": "./build/cjs/index.js",
12
+ "types": "./build/index.d.ts"
12
13
  },
13
14
  "type": "module",
14
15
  "devDependencies": {
15
16
  "@testing-library/jest-dom": "^6.5.0",
16
17
  "@testing-library/react": "^16.0.1",
17
18
  "@testing-library/user-event": "^14.5.2",
18
- "@types/lodash": "^4.17.10",
19
+ "@types/lodash-es": "^4.17.10",
19
20
  "@types/node": "^22.7.5",
20
21
  "@types/react": "^18.2.74",
21
22
  "@vitest/coverage-v8": "^2.1.3",
@@ -33,7 +34,7 @@
33
34
  "tsc": "tsc",
34
35
  "lint": "eslint .",
35
36
  "test": "echo \"Tests have to run from root project\"",
36
- "depcheck": "depcheck --ignores=@types/node,@vitest/coverage-v8 --ignore-dirs=lib,build",
37
+ "depcheck": "depcheck --ignores=@types/node,@vitest/coverage-v8,lodash,lodash-es,@types/lodash-es --ignore-dirs=lib,build",
37
38
  "prepack": "node ../../scripts/prepack.js",
38
39
  "postpack": "node ../../scripts/postpack.js",
39
40
  "translate": "i18next src/**/*.{ts,tsx}",
@@ -45,15 +46,15 @@
45
46
  "@emotion/react": "^11.13.3",
46
47
  "@emotion/styled": "^11.13.0",
47
48
  "@fontsource/inter": "^5.1.0",
48
- "@matrix-widget-toolkit/api": "^3.4.1",
49
- "@matrix-widget-toolkit/react": "^2.0.2",
49
+ "@matrix-widget-toolkit/api": "^3.4.2",
50
+ "@matrix-widget-toolkit/react": "^2.0.3",
50
51
  "@mui/icons-material": "^6.1.4",
51
52
  "@mui/material": "^6.1.4",
52
53
  "@mui/utils": "^6.0.2",
53
54
  "i18next": "^23.16.0",
54
55
  "i18next-browser-languagedetector": "^8.0.0",
55
56
  "i18next-resources-to-backend": "^1.2.1",
56
- "lodash": "^4.17.21",
57
+ "lodash-es": "^4.17.21",
57
58
  "matrix-widget-api": "^1.9.0",
58
59
  "react": "^18.2.0",
59
60
  "react-i18next": "^15.0.3",
@@ -71,5 +72,7 @@
71
72
  "matrix",
72
73
  "widget",
73
74
  "matrix-widget-api"
74
- ]
75
+ ],
76
+ "module": "./build/esm/index.js",
77
+ "main": "./build/cjs/index.js"
75
78
  }