chore: sync local changes to Gitea

This commit is contained in:
shumengya
2026-06-24 22:10:24 +08:00
commit d7ef0c3549
49 changed files with 12762 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "domainflare",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently -k \"npm run dev:worker\" \"npm run dev:frontend\"",
"dev:worker": "wrangler dev",
"dev:frontend": "npm --prefix frontend run dev",
"build:frontend": "npm --prefix frontend run build",
"deploy": "npm run build:frontend && wrangler deploy",
"types": "wrangler types",
"db:migrate:local": "wrangler d1 migrations apply domainflare --local",
"db:migrate:remote": "wrangler d1 migrations apply domainflare --remote"
},
"dependencies": {
"hono": "^4.6.14"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"concurrently": "^9.1.2",
"typescript": "^5.7.2",
"wrangler": "^4.87.0"
}
}