feat: initial cfdav project with webdav+r2+d1 and pages admin docs

This commit is contained in:
OpenClaw Agent
2026-03-20 16:35:51 +08:00
commit 334bb75672
15 changed files with 2124 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "cfdav",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:migrate": "wrangler d1 migrations apply cfdav-db",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"hono": "^4.6.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260311.0",
"wrangler": "^3.78.6",
"typescript": "^5.6.3"
}
}