forked from cloudflare/agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.47 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@cloudflare/agents-repo",
"description": "The monorepo for Cloudflare Agents and related work",
"type": "module",
"keywords": [
"cloudflare",
"workers",
"ai",
"agents",
"durable objects",
"workflows"
],
"author": "Sunil Pai <spai@cloudflare.com>",
"private": true,
"scripts": {
"build": "npm run build -w agents -w hono-agents",
"format": "prettier --write .",
"typecheck": "npx tsx scripts/typecheck.ts",
"check": "sherif && prettier --check . && biome lint && npm run typecheck",
"test": "npm run test -w agents",
"test:react": "npm run test:react -w agents",
"postinstall": "patch-package && playwright install --with-deps chromium",
"prepare": "husky"
},
"license": "MIT",
"version": "0.0.0",
"devDependencies": {
"@ai-sdk/anthropic": "2.0.26",
"@ai-sdk/google": "2.0.20",
"@ai-sdk/openai": "2.0.48",
"@ai-sdk/react": "2.0.68",
"@ai-sdk/ui-utils": "^1.2.11",
"@biomejs/biome": "2.2.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@cloudflare/vite-plugin": "^1.13.12",
"@cloudflare/vitest-pool-workers": "^0.9.12",
"@cloudflare/workers-types": "^4.20251008.0",
"@modelcontextprotocol/sdk": "^1.20.0",
"@openai/agents": "^0.1.9",
"@openai/agents-extensions": "^0.1.5",
"@types/node": "^24.7.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser": "^3.2.4",
"@vitest/runner": "^3.2.4",
"ai": "5.0.68",
"autoevals": "^0.0.131",
"concurrently": "^9.2.1",
"evalite": "^0.13.0",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"partyserver": "^0.0.75",
"partysocket": "1.1.6",
"patch-package": "^8.0.1",
"pkg-pr-new": "^0.0.60",
"playwright": "^1.56.0",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sherif": "^1.6.1",
"tsdown": "^0.15.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vite-plugin-devtools-json": "^1.0.0",
"vitest": "3.2.4",
"vitest-browser-react": "^1.0.1",
"workers-ai-provider": "^2.0.0",
"wrangler": "^4.42.2",
"zod": "^3.25.76"
},
"workspaces": [
"examples/*",
"packages/*",
"guides/*",
"openai-sdk/*"
],
"overrides": {
"esbuild": "^0.25.1"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "npm@11.6.2"
}