-
Notifications
You must be signed in to change notification settings - Fork 630
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.71 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
{
"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 .",
"typecheck": "tsx scripts/typecheck.ts",
"check:exports": "tsx scripts/check-exports.ts",
"check": "sherif && pnpm run check:exports && oxfmt --check . && oxlint . && pnpm run typecheck",
"test": "nx run-many -t test",
"ci": "oxfmt --write . && nx run-many -t build test && pnpm run check",
"test:e2e": "nx run-many -t test:e2e --parallel=1",
"test:recovery:live": "RUN_DEPLOYED_E2E=1 pnpm --filter @cloudflare/ai-chat run test:e2e:deployed && RUN_DEPLOYED_E2E=1 pnpm --filter @cloudflare/agents-chat-recovery-probe run test:e2e:deployed",
"test:react": "pnpm --filter agents run test:react",
"prepare:playwright": "playwright install --with-deps chromium"
},
"license": "MIT",
"version": "0.0.0",
"devDependencies": {
"@ai-sdk/anthropic": "^3.0.83",
"@ai-sdk/google": "^3.0.81",
"@ai-sdk/openai": "^3.0.70",
"@ai-sdk/react": "^3.0.204",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@cloudflare/kumo": "^2.6.0",
"@cloudflare/vite-plugin": "^1.42.3",
"@cloudflare/vitest-pool-workers": "^0.16.20",
"@cloudflare/workers-types": "^4.20260629.1",
"@modelcontextprotocol/sdk": "1.29.0",
"@openai/agents": "^0.12.0",
"@openai/agents-extensions": "^0.12.0",
"@phosphor-icons/react": "^2.1.10",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260629.1",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/runner": "^4.1.9",
"agents": "workspace:*",
"ai": "^6.0.202",
"concurrently": "^10.0.3",
"evalite": "^0.19.0",
"fast-glob": "^3.3.3",
"nx": "^23.0.1",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"partyserver": "^0.5.8",
"partysocket": "1.3.0",
"pkg-pr-new": "^0.0.75",
"playwright": "^1.61.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sherif": "^1.12.0",
"tsdown": "^0.22.3",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "4.1.9",
"vitest-browser-react": "^2.2.0",
"workers-ai-provider": "^3.3.0",
"wrangler": "^4.105.0",
"zod": "^4.4.3"
},
"packageManager": "pnpm@11.9.0"
}