deno-fresh-saurpc-lyrics/deno.json

45 lines
1.4 KiB
JSON
Raw Normal View History

2024-02-18 09:57:14 -06:00
{
"lock": false,
"tasks": {
2024-02-18 14:18:51 -06:00
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run -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 ."
2024-02-18 09:57:14 -06:00
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
2024-03-10 16:06:38 -05:00
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts",
"saurpc": "https://deno.land/x/saurpc@0.5.0/mod.ts",
"bcrypt": "https://deno.land/x/bcrypt@v0.4.1/mod.ts",
2024-02-18 09:57:14 -06:00
"$fresh/": "https://deno.land/x/fresh@1.6.5/",
"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.4.1",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
2024-02-18 14:18:51 -06:00
"@lyrics/": "./",
2024-03-10 16:06:38 -05:00
"$std/": "https://deno.land/std@0.219.0/"
2024-02-18 09:57:14 -06:00
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
2024-02-18 14:18:51 -06:00
"fmt": { "useTabs": true, "semiColons": false, "singleQuote": true },
"unstable": ["kv", "cron"],
2024-02-18 09:57:14 -06:00
"nodeModulesDir": true
}