memorium/deno.json

49 lines
1.4 KiB
JSON
Raw Normal View History

2023-07-26 13:47:01 +02:00
{
"lock": false,
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
2023-08-17 20:59:52 +02:00
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
2023-07-26 13:47:01 +02:00
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
2023-08-17 20:59:52 +02:00
},
"exclude": [
"_fresh"
]
2023-07-26 13:47:01 +02:00
},
"imports": {
2023-08-06 17:47:26 +02:00
"typesense": "https://raw.githubusercontent.com/bradenmacdonald/typesense-deno/main/mod.ts",
2023-08-05 02:14:10 +02:00
"yaml": "https://deno.land/std@0.197.0/yaml/mod.ts",
2023-08-10 14:37:52 +02:00
"@lib": "./lib",
"@lib/": "./lib/",
"@components": "./components",
"@components/": "./components/",
"@islands": "./islands",
"@islands/": "./islands/",
"zod": "https://deno.land/x/zod@v3.21.4/mod.ts",
2023-08-17 20:59:52 +02:00
"$fresh/": "https://deno.land/x/fresh@1.4.2/",
2023-07-26 13:47:01 +02:00
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
2023-08-17 20:59:52 +02:00
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1",
2023-07-26 13:47:01 +02:00
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
2023-08-10 14:37:52 +02:00
"$std/": "https://deno.land/std@0.193.0/"
2023-07-26 13:47:01 +02:00
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
2023-08-17 20:59:52 +02:00
},
"fmt": {
"exclude": [
"_fresh"
]
2023-07-26 13:47:01 +02:00
}
2023-08-17 20:59:52 +02:00
}