-
-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 844 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 844 Bytes
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
{
"name": "voltagent-example-gemini-ai",
"author": "",
"dependencies": {
"@ai-sdk/google": "^3.0.0",
"@voltagent/cli": "^0.1.20",
"@voltagent/core": "^2.0.5",
"@voltagent/libsql": "^2.0.2",
"@voltagent/logger": "^2.0.2",
"@voltagent/server-hono": "^2.0.2",
"ai": "^6.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.2.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"keywords": [
"agent",
"ai",
"voltagent"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/VoltAgent/voltagent.git",
"directory": "examples/with-google-ai"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch --env-file=.env ./src ",
"start": "node dist/index.js",
"volt": "volt"
},
"type": "module"
}