This repository was archived by the owner on Oct 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
{
"name": "@examples/deep-research",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run dev:gensx\"",
"dev:next": "next dev",
"dev:gensx": "gensx start ./gensx/workflows.ts",
"deploy": "gensx deploy -e ANTHROPIC_API_KEY -e OPENAI_API_KEY -e TAVILY_API_KEY ./gensx/workflows.ts",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.0",
"@ai-sdk/openai": "^2.0.0",
"@ai-sdk/provider": "^2.0.0",
"@anthropic-ai/sdk": "^0.53.0",
"@gensx/client": "^0.1.8",
"@gensx/core": "^0.5.5",
"@gensx/react": "^0.2.7",
"@gensx/storage": "^0.2.5",
"@gensx/vercel-ai": "^0.4.2",
"@langchain/textsplitters": "^0.1.0",
"@radix-ui/react-slot": "^1.2.3",
"@tavily/core": "^0.5.9",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.5.0",
"ai": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.513.0",
"next": "15.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.0",
"zod": "3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/webpack": "^5.28.5",
"concurrently": "^9.1.2",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}