-
Notifications
You must be signed in to change notification settings - Fork 466
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.08 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@cloudflare/agents-repo",
"description": "The monorepo for Cloudflare Agents and related work",
"type": "module",
"keywords": [
"cloudflare",
"workers",
"ai",
"agents",
"durable objects",
"workflows"
],
"author": "Cloudflare Agents <1800-agents@cloudflare.com>",
"private": true,
"scripts": {
"build": "nx run-many -t build",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint examples/ packages/ guides/ openai-sdk/ site/",
"typecheck": "npx tsx scripts/typecheck.ts",
"check:exports": "npx tsx scripts/check-exports.ts",
"check:updates": "npx tsx scripts/check-updates.ts",
"check": "sherif && npm run check:exports && oxfmt --check . && oxlint . && npm run typecheck",
"test": "nx run-many -t test",
"ci": "oxfmt --write . && nx run-many -t build test && npm run check",
"test:e2e": "nx run-many -t test:e2e",
"test:react": "npm run test:react -w agents",
"postinstall": "patch-package",
"prepare:playwright": "playwright install --with-deps chromium",
"prepare": "husky"
},
"license": "MIT",
"version": "0.0.0",
"devDependencies": {
"@ai-sdk/anthropic": "^3.0.63",
"@ai-sdk/google": "^3.0.52",
"@ai-sdk/openai": "^3.0.47",
"@ai-sdk/react": "^3.0.136",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@cloudflare/kumo": "^1.15.0",
"@cloudflare/vite-plugin": "^1.30.0",
"@cloudflare/vitest-pool-workers": "^0.13.3",
"@cloudflare/workers-types": "^4.20260317.1",
"@modelcontextprotocol/sdk": "1.26.0",
"@openai/agents": "^0.8.0",
"@openai/agents-extensions": "^0.8.0",
"@phosphor-icons/react": "^2.1.10",
"@rolldown/plugin-babel": "^0.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"@vitest/runner": "^4.1.0",
"ai": "^6.0.134",
"autoevals": "^0.0.132",
"concurrently": "^9.2.1",
"evalite": "^0.19.0",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nx": "^22.6.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"partyserver": "^0.3.3",
"partysocket": "1.1.16",
"patch-package": "^8.0.1",
"pkg-pr-new": "^0.0.66",
"playwright": "^1.58.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sherif": "^1.11.0",
"tsdown": "^0.21.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vitest": "4.1.0",
"vitest-browser-react": "^2.1.0",
"workers-ai-provider": "^3.1.7",
"wrangler": "^4.76.0",
"zod": "^4.3.6"
},
"workspaces": [
"examples/*",
"packages/*",
"voice-providers/*",
"guides/*",
"experimental/*",
"openai-sdk/*",
"site/*"
],
"overrides": {
"esbuild": "^0.25.1"
},
"lint-staged": {
"*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,astro,svelte,css}": [
"oxfmt --write"
]
},
"packageManager": "npm@11.12.0"
}