-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "@tanstack/ai-react-ui",
"version": "0.8.3",
"description": "Headless React components for building TanStack AI chat interfaces with streamed message parts.",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/ai"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"clean": "premove ./build ./dist",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc"
},
"keywords": [
"ai",
"ai-sdk",
"typescript",
"tanstack",
"react",
"chat",
"ui",
"headless",
"components",
"streaming",
"generative-ai"
],
"dependencies": {
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"peerDependencies": {
"@tanstack/ai-client": "workspace:^",
"@tanstack/ai-react": "workspace:^",
"@types/react": ">=18.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@tanstack/ai-client": "workspace:*",
"@tanstack/ai-react": "workspace:*",
"@types/react": "^19.2.7",
"@vitest/coverage-v8": "4.0.14",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vite": "^7.3.3"
}
}