-
Notifications
You must be signed in to change notification settings - Fork 525
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 915 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 915 Bytes
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
{
"name": "@cloudflare/agents-dynamic-workers-example",
"description": "Dynamic Worker Loaders — spin up sandboxed, disposable isolates at runtime",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"start": "vite dev",
"deploy": "vite build && wrangler deploy",
"types": "wrangler types env.d.ts --include-runtime false"
},
"dependencies": {
"@cloudflare/kumo": "^1.19.0",
"@phosphor-icons/react": "^2.1.10",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.33.2",
"@cloudflare/workers-types": "^4.20260425.1",
"@tailwindcss/vite": "^4",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"wrangler": "^4.85.0"
}
}