Name Message Date
📁 .claude Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 .devcontainer Create basic devcontainer 10 hours ago
📁 .vscode Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 src Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 static Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 .gitignore Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 .npmrc Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 CLAUDE.md Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 deno.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 deno.lock Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 eslint.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 package.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 playwright.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 README.md Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 svelte.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 tsconfig.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 vite.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 deno.json
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
	"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:svelte-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"
	}
}