-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "my-chat-agent",
"version": "1.0.0",
"description": "",
"type": "module",
"private": true,
"scripts": {
"start": "vite dev",
"deploy": "vite build && wrangler deploy",
"test": "vitest",
"types": "wrangler types",
"format": "prettier --write .",
"check": "prettier . --check && biome lint && tsc"
},
"keywords": [
"cloudflare",
"ai",
"agents"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/vite-plugin": "1.1.1",
"@cloudflare/vitest-pool-workers": "^0.8.27",
"@cloudflare/workers-types": "^4.20250513.0",
"@tailwindcss/vite": "^4.1.6",
"@types/node": "^22.15.17",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.4.1",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.6",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "3.1.3",
"wrangler": "^4.14.4"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@ai-sdk/ui-utils": "^1.2.11",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.4",
"@types/marked": "^6.0.0",
"agents": "^0.0.86",
"ai": "^4.3.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"marked": "^15.0.11",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.0",
"zod": "^3.24.4"
}
}