diff --git a/deno.json b/deno.json index 255e78a..3253d71 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,5 @@ { - "fmt": { - "indentWidth": 2 - }, + "fmt": { "indentWidth": 2 }, "lock": false, "tasks": { "check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx", @@ -12,19 +10,10 @@ "preview": "deno run -A main.ts", "update": "deno run -A -r https://fresh.deno.dev/update ." }, - "lint": { - "rules": { - "tags": [ - "fresh", - "recommended" - ] - } - }, - "exclude": [ - "**/_fresh/*" - ], + "lint": { "rules": { "tags": ["fresh", "recommended"] } }, + "exclude": ["**/_fresh/*"], "imports": { - "$fresh/": "https://deno.land/x/fresh@1.6.1/", + "$fresh/": "https://deno.land/x/fresh@1.6.3/", "preact": "https://esm.sh/preact@10.19.2", "preact/": "https://esm.sh/preact@10.19.2/", "@preact/signals": "https://esm.sh/*@preact/signals@1.2.1", @@ -34,9 +23,6 @@ "tailwindcss/plugin": "npm:/tailwindcss@3.3.5/plugin.js", "$std/": "https://deno.land/std@0.208.0/" }, - "compilerOptions": { - "jsx": "react-jsx", - "jsxImportSource": "preact" - }, + "compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }, "nodeModulesDir": true }