-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"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",
"test": "vitest"
},
"dependencies": {
"@cloudflare/ai-chat": "^0.3.2",
"@cloudflare/kumo": "^1.16.0",
"@phosphor-icons/react": "^2.1.10",
"@streamdown/code": "^1.1.1",
"agents": "^0.9.0",
"ai": "^6.0.142",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"streamdown": "^2.5.0",
"workers-ai-provider": "^3.1.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.29.0",
"@cloudflare/vite-plugin": "1.30.3",
"@cloudflare/vitest-pool-workers": "^0.14.1",
"@cloudflare/workers-types": "^4.20260401.1",
"@rolldown/plugin-babel": "^0.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"wrangler": "^4.80.0"
},
"packageManager": "npm@11.12.1"
}