-
Notifications
You must be signed in to change notification settings - Fork 532
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) 路 1.09 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) 路 1.09 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
{
"name": "@cloudflare/example-rlm",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "A long-context RLM example built with Cloudflare Computer and generated JavaScript.",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && node scripts/sanitize-build.mjs",
"test": "vitest run",
"typecheck": "tsc -b --pretty false",
"preview": "npm run build && vite preview",
"deploy": "npm run build && wrangler deploy",
"build:types": "wrangler types --env-file=.dev.vars.example"
},
"dependencies": {
"@cloudflare/ai-chat": "^0.10.1",
"@cloudflare/computer": "*",
"@phosphor-icons/react": "^2.1.10",
"agents": "^0.20.0",
"ai": "^7.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"workers-ai-provider": "^4.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.54.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.11",
"wrangler": "^4.130.0"
}
}