1
0
mirror of https://github.com/NickKaramoff/toot synced 2025-02-06 20:33:46 +01:00
Nikita Karamov 10a31d068e
WIP
2024-09-03 19:19:27 +02:00

28 lines
1.1 KiB
JSON

{
"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/ 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"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.1/",
"$lib/": "./lib/",
"$i18n/": "./i18n/",
"@http/response": "jsr:@http/response@^0.21.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.3.0",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.8.0",
"@std/dotenv": "jsr:@std/dotenv@^0.225.1",
"preact": "https://esm.sh/preact@10.23.2",
"preact/": "https://esm.sh/preact@10.23.2/",
"zod": "https://deno.land/x/zod@v3.23.8/mod.ts"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}