48 lines
1.5 KiB
JSON
48 lines
1.5 KiB
JSON
{
|
|
"lock": false,
|
|
"nodeModulesDir": true,
|
|
"tasks": {
|
|
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
|
|
"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"
|
|
]
|
|
}
|
|
},
|
|
"imports": {
|
|
"typesense": "https://raw.githubusercontent.com/bradenmacdonald/typesense-deno/main/mod.ts",
|
|
"yaml": "https://deno.land/std@0.197.0/yaml/mod.ts",
|
|
"@lib": "./lib",
|
|
"@lib/": "./lib/",
|
|
"@components": "./components",
|
|
"@components/": "./components/",
|
|
"@islands": "./islands",
|
|
"@islands/": "./islands/",
|
|
"zod": "https://deno.land/x/zod@v3.21.4/mod.ts",
|
|
"$fresh/": "https://deno.land/x/fresh@1.6.1/",
|
|
"preact": "https://esm.sh/preact@10.19.2",
|
|
"preact/": "https://esm.sh/preact@10.19.2/",
|
|
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
|
|
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.1",
|
|
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
|
|
"$std/": "https://deno.land/std@0.193.0/",
|
|
"tailwindcss": "npm:tailwindcss@3.3.5",
|
|
"tailwindcss/": "npm:/tailwindcss@3.3.5/",
|
|
"tailwindcss/plugin": "npm:/tailwindcss@3.3.5/plugin.js"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"exclude": [
|
|
"**/_fresh/*"
|
|
]
|
|
}
|