| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "lock": false,
- "tasks": {
- "check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
- "cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
- "manifest": "deno task cli manifest $(pwd)",
- "start": "deno run -A --watch=static/,routes/ dev.ts",
- "build": "deno run -A dev.ts build",
- "preview": "deno run -A main.ts",
- "update": "deno run -A -r https://fresh.deno.dev/update ."
- },
- "lint": {
- "rules": {
- "tags": ["fresh", "recommended"]
- }
- },
- "exclude": ["**/_fresh/*"],
- "imports": {
- "$fresh/": "https://deno.land/x/fresh@1.6.5/",
- "preact": "https://esm.sh/preact@10.19.2",
- "preact/": "https://esm.sh/preact@10.19.2/",
- "$std/": "https://deno.land/std@0.211.0/",
- "$sqlite/": "https://deno.land/x/sqlite@v3.8/",
- "$usid/": "https://deno.land/x/usid@2.0.0/",
- "$encoding/": "https://deno.land/std@0.211.0/encoding/",
- "$crypto/": "https://deno.land/std@0.211.0/crypto/",
- "$async/": "https://deno.land/std@0.211.0/async/",
- "$http/": "https://deno.land/std@0.211.0/http/",
- "showdown": "https://esm.sh/showdown@2.1.0",
- "utils/": "./utils/"
- },
- "compilerOptions": {
- "jsx": "react-jsx",
- "jsxImportSource": "preact"
- }
- }
|