Name Message Date
📁 .claude Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📁 .devcontainer Create basic devcontainer 9 hours ago
📁 .vscode Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📁 scripts Add BirdNET TF.js on-device bird identification 1 hour ago
📁 src Add BirdNET TF.js on-device bird identification 1 hour ago
📁 static Add BirdNET TF.js on-device bird identification 1 hour ago
📄 .gitignore Add BirdNET TF.js on-device bird identification 1 hour ago
📄 .npmrc Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 CLAUDE.md Add initial UI: curved arc nav and mic toggle button 2 hours ago
📄 deno.json Add BirdNET TF.js on-device bird identification 1 hour ago
📄 deno.lock Add BirdNET TF.js on-device bird identification 1 hour ago
📄 eslint.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 package.json Add BirdNET TF.js on-device bird identification 1 hour ago
📄 playwright.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 README.md Add project README and expand CLAUDE.md with vision and code style 3 hours ago
📄 svelte.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 tsconfig.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 vite.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 3 hours ago
📄 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"
	}
}