57fb7a0650
Sets up preview deploys etc. for bemo worker. There's enough going on here that I wanted to make it its own PR. I'll rework david's spike on top of it once it's landed. ### Change Type - [x] `internal` — Does not affect user-facing stuff - [x] `chore` — Updating dependencies, other boring stuff --------- Co-authored-by: David Sheldrick <d.j.sheldrick@gmail.com>
23 lines
609 B
JSON
23 lines
609 B
JSON
{
|
|
"name": "health-worker",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"deploy": "wrangler deploy",
|
|
"dev": "wrangler dev",
|
|
"start": "wrangler dev",
|
|
"check-bundle-size": "yarn run -T tsx ../../scripts/check-worker-bundle.ts --entry src/index.ts --size-limit-bytes 35000",
|
|
"lint": "yarn run -T tsx ../../scripts/lint.ts"
|
|
},
|
|
"dependencies": {
|
|
"@tldraw/utils": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^4.20240620.0",
|
|
"@types/node": "~20.11",
|
|
"discord-api-types": "^0.37.67",
|
|
"esbuild": "^0.21.5",
|
|
"typescript": "^5.3.3",
|
|
"wrangler": "3.62.0"
|
|
}
|
|
}
|