doorgan/deno.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2024-10-21 02:48:23 +00:00
{
"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/,lib/ dev.ts",
"build": "deno run -A dev.ts build",
"generate": "deno run -A generate.ts ",
"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.7.3/",
"$std/": "https://deno.land/std@0.216.0/",
"@gnome/exec": "jsr:@gnome/exec@^0.6.0",
"@needle-di/core": "jsr:@needle-di/core@^0.8.4",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"zod": "npm:zod@^3.23.8"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}