diff options
feat: initial commit
Diffstat (limited to 'deno.json')
-rw-r--r-- | deno.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/deno.json b/deno.json new file mode 100644 index 0000000..32e1f61 --- /dev/null +++ b/deno.json @@ -0,0 +1,15 @@ +{ + "version": "0.0.1", + "tasks": { + "dev": "deno task animgen && deno run -A --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite", + "build": "deno task animgen && deno run -A --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite build", + "preview": "deno run -A --unstable-cron --unstable-kv --unstable-bare-node-builtins --unstable-byonm npm:vite preview", + "serve": "deno run --allow-net --allow-read main.ts", + "animgen": "deno run src/routes/anim-gen.ts | esbuild --loader=css >src/routes/anim.css" + }, + "importMap": "./import_map.json", + "license": "AGPL-3.0-or-later", + "fmt": { + "singleQuote": true + } +} |