-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.33 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
97
{
"name": "@mui/x-chat",
"version": "9.0.0-alpha.15",
"author": "MUI Team",
"description": "The community edition of the MUI X Chat components.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/mui-x/issues"
},
"homepage": "https://mui.com/x/react-chat/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"exports": {
".": "./src/index.ts",
"./locales": "./src/locales/index.ts",
"./*": "./src/*/index.ts"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"directory": "build"
},
"keywords": [
"react",
"react-component",
"mui",
"mui-x",
"material-ui",
"material design",
"chat",
"chatbox",
"messaging",
"ai",
"llm"
],
"scripts": {
"typescript": "tsgo -p tsconfig.json",
"build": "code-infra build --tsgo",
"prebuild": "rimraf build tsconfig.build.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mui/mui-x.git",
"directory": "packages/x-chat"
},
"dependencies": {
"@babel/runtime": "catalog:",
"@mui/utils": "catalog:",
"@mui/x-chat-headless": "workspace:*",
"@mui/x-internals": "workspace:*",
"clsx": "catalog:",
"markdown-to-jsx": "^9.8.2",
"prop-types": "catalog:",
"remend": "^1.3.0"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^7.3.0 || ^9.0.0-beta.0 || ^9.0.0",
"@mui/system": "^7.3.0 || ^9.0.0-beta.1",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@emotion/react": {
"optional": true
},
"@emotion/styled": {
"optional": true
},
"@mui/icons-material": {
"optional": true
}
},
"devDependencies": {
"@mui/icons-material": "catalog:",
"@mui/internal-test-utils": "catalog:",
"@mui/material": "catalog:",
"@mui/system": "catalog:",
"@types/prop-types": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"rimraf": "catalog:"
},
"engines": {
"node": ">=14.0.0"
},
"imports": {
"#formatErrorMessage": "@mui/x-internals/formatErrorMessage",
"#remend": {
"import": "remend",
"default": "./src/internals/remendUnavailable.ts"
}
}
}