-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.51 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.51 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
{
"name": "@tanstack/ai-solid-ui",
"version": "0.7.3",
"description": "Headless Solid components for building TanStack AI chat interfaces with streamed message parts.",
"module": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/ai"
},
"exports": {
".": {
"solid": "./src/index.ts",
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"files": [
"src",
"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",
"solid",
"solidjs",
"chat",
"ui",
"headless",
"components",
"streaming",
"generative-ai"
],
"dependencies": {
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"solid-markdown": "^2.1.0"
},
"peerDependencies": {
"@tanstack/ai-client": "workspace:^",
"@tanstack/ai-solid": "workspace:^",
"solid-js": ">=1.9.7"
},
"devDependencies": {
"@tanstack/ai-client": "workspace:*",
"@tanstack/ai-solid": "workspace:*",
"@vitest/coverage-v8": "4.0.14",
"solid-js": "^1.9.10",
"vite": "^7.3.3"
}
}