@cubos/agent-sdk-react-dom 0.0.1136563
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 +265 -0
- package/dist/agent-markdown.d.ts +53 -0
- package/dist/colors.d.ts +24 -0
- package/dist/currency.d.ts +9 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +678 -0
- package/dist/index.js.map +16 -0
- package/dist/recording-wave.d.ts +26 -0
- package/dist/styles.css +496 -0
- package/dist/use-recorder.d.ts +56 -0
- package/dist/use-transcript-anchor.d.ts +67 -0
- package/dist/voice-message.d.ts +53 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cubos/agent-sdk-react-dom",
|
|
3
|
+
"version": "0.0.1136563",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Ready-made React components for Cubos Agent chats: agent markdown with code, tables and TeX. Styled out of the box.",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"cubos",
|
|
9
|
+
"agent",
|
|
10
|
+
"react",
|
|
11
|
+
"chat",
|
|
12
|
+
"markdown",
|
|
13
|
+
"components",
|
|
14
|
+
"sdk"
|
|
15
|
+
],
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://git.cubos.io/agent/cubos-agent.git",
|
|
19
|
+
"directory": "packages/sdk-react-dom"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://git.cubos.io/agent/cubos-agent/-/tree/main/packages/sdk-react-dom",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://git.cubos.io/agent/cubos-agent/-/issues"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"default": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./styles.css": "./dist/styles.css"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "bun scripts/build.ts",
|
|
37
|
+
"typecheck": "tsgo --noEmit",
|
|
38
|
+
"test": "bun test"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"react": ">=18"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"lucide-react": "^1.34.0",
|
|
45
|
+
"react-markdown": "^10.1.0",
|
|
46
|
+
"rehype-highlight": "^7.0.2",
|
|
47
|
+
"rehype-katex": "^7.0.1",
|
|
48
|
+
"remark-gfm": "^4.0.1",
|
|
49
|
+
"remark-math": "^6.0.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/bun": "^1.4.0",
|
|
53
|
+
"@types/react": "^19.2.18",
|
|
54
|
+
"@types/react-dom": "^19.2.5",
|
|
55
|
+
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
56
|
+
"react": "^19.2.8",
|
|
57
|
+
"react-dom": "^19.2.8"
|
|
58
|
+
}
|
|
59
|
+
}
|