forked from timbal-ai/timbal-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 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
{
"name": "@timbal-ai/timbal-react",
"version": "0.5.1",
"description": "React components and runtime for building Timbal chat UIs",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build && bun run typecheck"
},
"peerDependencies": {
"@assistant-ui/react": ">=0.12",
"@timbal-ai/timbal-sdk": ">=0.4",
"react": ">=19",
"react-dom": ">=19"
},
"dependencies": {
"@assistant-ui/react-markdown": "^0.12.3",
"@paper-design/shaders-react": "^0.0.76",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"katex": "^0.16.28",
"lucide-react": "^0.574.0",
"motion": "^12.23.24",
"radix-ui": "^1.4.3",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^3.15.0",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@assistant-ui/react": "^0.12.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@timbal-ai/timbal-sdk": "0.4.9",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"happy-dom": "^20.8.9",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.5.0",
"typescript": "~5.8.3"
},
"keywords": [
"timbal",
"react",
"chat",
"ai",
"components",
"ui",
"streaming",
"assistant"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/timbal-ai/timbal-react.git"
},
"bugs": {
"url": "https://github.com/timbal-ai/timbal-react/issues"
},
"homepage": "https://github.com/timbal-ai/timbal-react#readme"
}