chore: Expand deno tasks for dev workflow and docker integration

This commit is contained in:
Tyler G 2026-08-22 22:22:05 -07:00
parent 3eb9e0b5a5
commit 90cecc3ddc

View File

@ -1,6 +1,12 @@
{ {
"tasks": { "tasks": {
"start": "deno run --allow-net --allow-read --allow-env main.ts" "start": "deno run --allow-net --allow-read --allow-env main.ts",
"dev": "deno run --watch --allow-net --allow-read --allow-env main.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"check": "deno check main.ts",
"docker:build": "./build.sh",
"docker:push": "./build.sh --push"
}, },
"imports": { "imports": {
"hono": "npm:hono@4.0.0", "hono": "npm:hono@4.0.0",