| 12345678910111213141516171819202122232425262728 |
- {
- "lock": false,
- "tasks": {
- "check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
- "start": "deno run -A --watch=static/,routes/ main.ts",
- "build": "vite build",
- "preview": "deno run -A main.ts"
- },
- "lint": { "rules": { "tags": ["fresh", "recommended"] } },
- "exclude": ["**/_fresh/*"],
- "imports": {
- "fresh": "jsr:@fresh/core@^2.2.1",
- "fresh/": "jsr:@fresh/core@^2.2.1/",
- "preact": "npm:preact@^10.28.3",
- "preact/": "npm:preact@^10.28.3/",
- "@preact/signals": "npm:@preact/signals@^2.5.1",
- "$std/": "https://deno.land/std@0.224.0/",
- "$sqlite/": "https://deno.land/x/sqlite@v3.8/",
- "$usid/": "https://deno.land/x/usid@2.0.0/",
- "$encoding/": "https://deno.land/std@0.224.0/encoding/",
- "$crypto/": "https://deno.land/std@0.224.0/crypto/",
- "$async/": "https://deno.land/std@0.224.0/async/",
- "$http/": "https://deno.land/std@0.224.0/http/",
- "showdown": "https://esm.sh/showdown@2.1.0",
- "utils/": "./utils/"
- },
- "compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
- }
|