-
-
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.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 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",
"version": "0.12.1",
"description": "React hooks for TanStack AI streaming chat, realtime voice, structured outputs, and media generation.",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/ai-react"
},
"type": "module",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:eslint": "eslint ./src",
"test:lib": "vitest run",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "vite build"
},
"keywords": [
"ai",
"ai-sdk",
"typescript",
"tanstack",
"react",
"hooks",
"chat",
"streaming",
"realtime",
"tool-calling",
"structured-outputs",
"media-generation"
],
"dependencies": {
"@tanstack/ai-client": "workspace:*"
},
"peerDependencies": {
"@tanstack/ai": "workspace:^",
"@types/react": ">=18.0.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@standard-schema/spec": "^1.1.0",
"@tanstack/ai": "workspace:*",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.7",
"@vitest/coverage-v8": "4.0.14",
"jsdom": "^27.2.0",
"react": "^19.2.3",
"vite": "^7.3.3"
}
}