blob: 0b64e84b974eccf198ce439b9ffc30d84814a254 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"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
},
"compilerOptions": {
"checkJs": true,
"strict": true
},
"unstable": [
"sloppy-imports"
]
}
|