-
-
Notifications
You must be signed in to change notification settings - Fork 906
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "voltagent-example-with-client-side-tools",
"author": "",
"dependencies": {
"@ai-sdk/react": "^3.0.0",
"@libsql/client": "^0.15.0",
"@voltagent/core": "^2.7.3",
"@voltagent/server-hono": "^2.0.13",
"@voltagent/vercel-ai": "^1.0.0",
"@voltagent/vercel-ui": "^1.0.1",
"ai": "^6.0.0",
"next": "^16.0.7",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.2.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"tsx": "^4.21.0",
"typescript": "^5.8.2"
},
"keywords": [
"agent",
"ai",
"client-side-tools",
"voltagent"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/VoltAgent/voltagent.git",
"directory": "examples/with-client-side-tools"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"voltagent:run": "tsx --env-file=.env ./voltagent/server.ts"
}
}