blob: 32e1f610ae0a47d857b2fb3741d863a3a4659b29 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}
}
|