-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.52 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.52 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
{
"name": "ai-agent",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"dev:mastra": "mastra dev --dir ./lib/mastra",
"build:mastra": "mastra build --dir ./lib/mastra",
"seed:embeddings": "tsx scripts/populate-embeddings.ts",
"debug:embeddings": "tsx scripts/debug-embeddings.ts",
"verify:setup": "tsx scripts/verify-setup.ts",
"check:database": "tsx scripts/check-database.ts",
"test:rag": "tsx scripts/test-rag-tool.ts",
"test:direct": "tsx scripts/direct-test.ts",
"debug:rag": "tsx scripts/debug-rag-issue.ts"
},
"dependencies": {
"@ai-sdk/google": "^3.0.13",
"@ai-sdk/openai": "^3.0.18",
"@ai-sdk/react": "^3.0.50",
"@mastra/core": "^1.0.4",
"@mastra/mcp-docs-server": "^1.0.1",
"@mastra/memory": "^1.0.0",
"@mastra/pg": "^1.0.0",
"@mastra/rag": "^2.0.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@supabase/supabase-js": "^2.91.0",
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/ai": "^0.2.2",
"@tanstack/ai-openai": "^0.2.1",
"@tanstack/ai-react": "^0.2.2",
"@xyflow/react": "^12.10.0",
"ai": "^6.0.48",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"embla-carousel-react": "^8.6.0",
"hono": "^4.11.5",
"lucide-react": "^0.545.0",
"mastra": "^1.0.1",
"nanoid": "^5.1.6",
"next": "16.1.4",
"node-fetch": "^3.3.2",
"pg": "^8.17.2",
"postcss": "^8.5.6",
"react": "19.1.2",
"react-dom": "19.1.2",
"react-syntax-highlighter": "^15.6.6",
"streamdown": "^1.6.11",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tokenlens": "^1.3.1",
"use-stick-to-bottom": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^20.19.30",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9.39.2",
"eslint-config-next": "15.5.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}