-
-
Notifications
You must be signed in to change notification settings - Fork 906
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "voltagent-example-cloudflare-workers",
"description": "VoltAgent example for Cloudflare Workers deployment with in-memory storage",
"version": "1.0.0",
"dependencies": {
"@voltagent/core": "^2.7.3",
"@voltagent/serverless-hono": "^2.0.11",
"ai": "^6.0.0",
"hono": "^4.7.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250408.0",
"@types/node": "^24.2.1",
"typescript": "^5.8.2",
"wrangler": "^3.38.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"agent",
"ai",
"cloudflare",
"edge",
"serverless",
"voltagent",
"workers"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/VoltAgent/voltagent.git",
"directory": "examples/with-cloudflare-workers"
},
"scripts": {
"build": "tsc",
"deploy": "wrangler deploy",
"deploy:production": "wrangler deploy --env production",
"dev": "tsc && wrangler dev",
"preview": "tsc && wrangler dev --local",
"tail": "wrangler tail",
"volt": "volt"
},
"type": "module"
}