Files
cfw-attachment/package.json
Claude db5a499e5c chore: add zod-openapi stack, multipart schema, and PUBLIC_BASE_URL
- bump hono to ^4.12.0, add zod ^4.0.0 and @hono/zod-openapi ^1.4.0
- migration 0002: attachment_upload_sessions + attachment_upload_parts
- wrangler/env: PUBLIC_BASE_URL for public file URLs

Co-Authored-By: Claude <noreply@anthropic.com>
2026-07-02 09:08:42 -07:00

28 lines
725 B
JSON

{
"name": "cfw-attachment",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:apply:local": "wrangler d1 migrations apply cfw-attachment --local",
"db:apply:remote": "wrangler d1 migrations apply cfw-attachment --remote",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"ready": "pnpm typecheck && pnpm test"
},
"dependencies": {
"@hono/zod-openapi": "^1.4.0",
"hono": "^4.12.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260601.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0",
"wrangler": "^4.20.0"
}
}