forked from get-convex/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.24 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.24 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
{
"name": "agent-example",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"setup": "cd .. && node setup.cjs && cd example && npm run dev:backend -- --once",
"example": "npm run dev",
"dev": "run-p dev:frontend dev:backend",
"dev:backend": "convex dev --live-component-sources --typecheck-components",
"dev:frontend": "vite",
"predev": "npx convex dev --until-success",
"logs": "convex logs",
"lint": "tsc -p convex && eslint convex"
},
"dependencies": {
"@ai-sdk/groq": "^1.2.9",
"@ai-sdk/openai": "^1.3.9",
"@convex-dev/agent": "file:..",
"@convex-dev/agent-playground": "file:../playground",
"@convex-dev/rag": "^0.3.0",
"@convex-dev/rate-limiter": "^0.2.11",
"@convex-dev/workflow": "^0.2.1",
"@hookform/resolvers": "^5.0.1",
"@openrouter/ai-sdk-provider": "^0.7.1",
"@radix-ui/react-accordion": "^1.2.4",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toast": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "file:../node_modules/convex",
"dayjs": "^1.11.13",
"lucide-react": "^0.487.0",
"openai": "^5.9.0",
"react": "file:../node_modules/react",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.5.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@langchain/textsplitters": "^0.1.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"@vitejs/plugin-react": "^4.3.4",
"@xixixao/convex-typescript-plugin": "^0.0.1",
"autoprefixer": "^10.4.21",
"dotenv": "^16.4.7",
"eslint": "^9.24.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"typescript-eslint": "^8.29.1",
"vite": "^6.2.5"
}
}