📄
deno.json
{ "unstable": ["fmt-component"], "fmt": { "useTabs": false, "singleQuote": false, "include": ["src/"] }, "tasks": { "dev": "deno run -A npm:vite dev", "build": "deno run -A npm:vite build", "preview": "deno run -A npm:vite preview", "check": "deno run -A npm:@sveltejs/kit sync && deno run -A npm:svelte-check --tsconfig ./tsconfig.json", "lint": "deno run -A npm:eslint .", "test:e2e": "deno run -A npm:playwright install && deno run -A npm:playwright test", "test": "deno task test:e2e", "download-models": "deno run -A scripts/download-models.ts" } }