homeman-deno/deno.json

32 lines
1.3 KiB
JSON
Raw Normal View History

2024-01-05 13:22:56 -06:00
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
2024-01-05 21:10:38 -06:00
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run -A -",
2024-01-05 13:22:56 -06:00
"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 ."
},
2024-01-16 16:45:51 -06:00
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
2024-01-05 13:22:56 -06:00
"imports": {
2024-01-16 16:45:51 -06:00
"$fresh/": "https://deno.land/x/fresh@1.6.3/",
2024-01-05 13:22:56 -06:00
"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",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
"tailwindcss": "npm:tailwindcss@3.3.5",
"tailwindcss/": "npm:/tailwindcss@3.3.5/",
"tailwindcss/plugin": "npm:/tailwindcss@3.3.5/plugin.js",
2024-01-09 21:52:47 -06:00
"preact-heroicons": "https://esm.sh/preact-heroicons@2.1.1",
2024-01-07 02:24:36 -06:00
"$std/": "https://deno.land/std@0.208.0/",
"@homeman/": "./"
2024-01-05 13:22:56 -06:00
},
2024-01-16 16:45:51 -06:00
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"fmt": { "useTabs": true, "semiColons": false, "singleQuote": true },
2024-01-05 21:10:38 -06:00
"unstable": ["kv"],
2024-01-05 13:22:56 -06:00
"nodeModulesDir": true
}