forked from nordeck/matrix-widget-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.88 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@matrix-widget-toolkit/mui",
"version": "2.2.0",
"description": "A customized material-ui theme that matches the style of the Element Matrix client",
"author": "Nordeck IT + Consulting GmbH",
"license": "Apache-2.0",
"source": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
"import": "./src/index.ts",
"require": "./src/index.ts"
},
"type": "module",
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.15.35",
"@types/react": "18.3.26",
"@vitest/coverage-v8": "3.2.4",
"axe-core": "4.10.3",
"copyfiles": "2.4.1",
"i18next-parser": "9.3.0",
"typescript": "5.8.3",
"vite": "6.4.1",
"vitest": "3.2.4"
},
"peerDependencies": {
"react": "18.3.1"
},
"scripts": {
"build": "tsc && rollup --config ../../rollup.config.mjs",
"postbuild": "copyfiles -E -u 1 src/locales/**/*.json build",
"tsc": "tsc",
"lint": "eslint .",
"test": "echo \"Tests have to run from root project\"",
"depcheck": "depcheck --ignores=@types/node,@vitest/coverage-v8,lodash,lodash-es,@types/lodash-es --ignore-dirs=lib,build",
"prepack": "node ../../scripts/prepack.js",
"postpack": "node ../../scripts/postpack.js",
"translate": "i18next src/**/*.{ts,tsx}",
"check-api-report": "api-extractor run --verbose",
"generate-api-report": "tsc && api-extractor run --verbose --local",
"clean": "yarn run clean:build",
"clean:build": "rm -rf lib",
"clean:cache": "echo 'script not implemented package'"
},
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/inter": "5.1.1",
"@matrix-widget-toolkit/api": "^5.0.0",
"@matrix-widget-toolkit/react": "^2.1.0",
"@mui/icons-material": "6.4.12",
"@mui/material": "6.4.12",
"@mui/utils": "6.4.9",
"i18next": "25.2.1",
"i18next-browser-languagedetector": "8.0.5",
"i18next-resources-to-backend": "1.2.1",
"matrix-widget-api": "1.13.1",
"react-i18next": "15.5.3",
"react-use": "17.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nordeck/matrix-widget-toolkit.git",
"directory": "packages/mui"
},
"publishConfig": {
"module": "./build/esm/index.js",
"main": "./build/cjs/index.cjs",
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"module": "./build/esm/index.js",
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
},
"require": {
"types": "./build/cjs/index.d.cts",
"default": "./build/cjs/index.cjs"
}
},
"./package.json": "./package.json"
}
},
"files": [
"build"
],
"keywords": [
"matrix",
"widget",
"matrix-widget-api"
]
}