-
-
Notifications
You must be signed in to change notification settings - Fork 617
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "voltagent-example-with-nextjs",
"version": "0.1.0",
"dependencies": {
"@ai-sdk/openai": "^3.0.0",
"@ai-sdk/react": "^3.0.0",
"@libsql/client": "^0.15.0",
"@tailwindcss/postcss": "^4.1.4",
"@voltagent/cli": "^0.1.21",
"@voltagent/core": "^2.0.13",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.3",
"ai": "^6.0.0",
"import-in-the-middle": "^1.14.2",
"next": "^16.0.7",
"npm-check-updates": "^17.1.18",
"postcss": "^8.5.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"require-in-the-middle": "^7.5.2",
"tailwindcss": "^4.1.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.2.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/VoltAgent/voltagent.git",
"directory": "examples/with-nextjs"
},
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"lint": "next lint",
"start": "next start",
"volt": "volt",
"voltagent:run": "tsx --env-file=.env ./voltagent/server.ts"
}
}