mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
* removed `durable` mode as it requires an import from "cloudflare:" that often fails in non-cf environments * remove worker configuration types * add `withPlatformProxy` * withPlatformProxy: make configuration optional
21 lines
446 B
JSON
21 lines
446 B
JSON
{
|
|
"name": "cloudflare-worker",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"deploy": "wrangler deploy",
|
|
"dev": "wrangler dev",
|
|
"bknd-typegen": "PROXY=1 npx bknd types",
|
|
"typegen": "wrangler types && npm run bknd-typegen",
|
|
"predev": "npm run typegen"
|
|
},
|
|
"dependencies": {
|
|
"bknd": "file:../../app"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2",
|
|
"wrangler": "^4.28.1"
|
|
}
|
|
}
|