-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.39 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.39 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
92
93
94
95
96
{
"name": "@tanstack/ai-devtools-core",
"version": "0.3.15",
"description": "Core TanStack AI Devtools",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/ai.git",
"directory": "packages/typescript/ai"
},
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"workerd": {
"types": "./dist/index.d.ts",
"import": "./dist/server.js"
},
"browser": {
"development": {
"types": "./dist/index.d.ts",
"import": "./dist/dev.js"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/server.js"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./production": {
"workerd": {
"types": "./dist/production/index.d.ts",
"import": "./dist/production/server.js"
},
"browser": {
"development": {
"types": "./dist/production/index.d.ts",
"import": "./dist/production/dev.js"
},
"types": "./dist/production/index.d.ts",
"import": "./dist/production/index.js"
},
"node": {
"types": "./dist/production/index.d.ts",
"import": "./dist/production/server.js"
},
"types": "./dist/production/index.d.ts",
"import": "./dist/production/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc"
},
"keywords": [
"ai",
"tanstack",
"sdk",
"llm",
"chat",
"embeddings"
],
"dependencies": {
"@tanstack/ai": "workspace:*",
"@tanstack/ai-event-client": "workspace:*",
"@tanstack/devtools-ui": "^0.5.1",
"@tanstack/devtools-utils": "^0.4.0",
"goober": "^2.1.18",
"solid-js": "^1.9.10"
},
"devDependencies": {
"@vitest/coverage-v8": "4.0.14",
"jsdom": "^27.2.0",
"tsup": "^8.5.1",
"tsup-preset-solid": "^2.2.0",
"vite": "^7.2.7",
"vite-plugin-solid": "^2.11.10"
}
}