-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"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.1.7",
"@cloudflare/kumo": "^1.9.0",
"@phosphor-icons/react": "^2.1.10",
"agents": "^0.7.1",
"ai": "^6.0.105",
"dotenv": "^17.3.1",
"pdf-parse": "^2.4.5",
"pdf-parse-fork": "^1.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"streamdown": "^2.2.0",
"workers-ai-provider": "^3.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.25.6",
"@cloudflare/workers-types": "^4.20260301.1",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.3.3",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.69.0"
}
}