-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.81 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
62
63
64
65
66
67
{
"name": "agents-chat",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite dev --force",
"test": "tsc && vitest run",
"typecheck": "tsc",
"build": "vite build",
"preview": "vite build && vite preview",
"ship": "vite build && wrangler deploy",
"types": "wrangler types --include-runtime false --strict-vars false",
"tail": "wrangler tail"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.77",
"@ai-sdk/react": "^2.0.108",
"@ai-sdk/ui-utils": "^1.2.11",
"@openai/agents": "^0.3.4",
"@openai/agents-core": "^0.3.4",
"@std/front-matter": "jsr:^1.0.9",
"agents": "^0.2.30",
"ai": "^5.0.108",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-replace-link": "^1.2.2",
"nanoid": "^5.1.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-server-dom-webpack": "^19.2.1",
"reconnecting-websocket": "^4.4.0",
"rwsdk": "1.0.0-beta.39",
"tinybase": "^7.0.1",
"workers-ai-provider": "^2.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.17.0",
"@cloudflare/workers-types": "^4.20251205.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@types/lodash": "^4.17.21",
"@types/markdown-it": "^14.1.2",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.2.3",
"fast-glob": "^3.3.3",
"mime-types": "^3.0.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.15",
"wrangler": "4.53.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}