-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "agent-starter",
"version": "1.0.0",
"private": true,
"description": "Starter template for building AI chat agents on Cloudflare",
"keywords": [
"agents",
"ai",
"cloudflare"
],
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"deploy": "vite build && wrangler deploy",
"types": "wrangler types env.d.ts --include-runtime false",
"format": "oxfmt --write .",
"lint": "oxlint src/",
"check": "oxfmt --check . && oxlint src/ && tsc"
},
"dependencies": {
"@cloudflare/ai-chat": "^0.4.6",
"@cloudflare/kumo": "^1.19.0",
"@phosphor-icons/react": "^2.1.10",
"@streamdown/code": "^1.1.1",
"agents": "^0.11.4",
"ai": "^6.0.168",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"streamdown": "^2.5.0",
"workers-ai-provider": "^3.1.11",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@cloudflare/vite-plugin": "1.33.0",
"@cloudflare/workers-types": "^4.20260420.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"wrangler": "4.84.0"
}
}