Build Retur dead-letter sorting game

This commit is contained in:
Fredrik Johansson
2026-07-20 19:45:59 +02:00
commit b69131c540
18 changed files with 2270 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "retur",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 5691",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview --port 4691",
"test": "vitest run"
},
"devDependencies": {
"typescript": "^5.5.0",
"vite": "^6.0.0",
"vitest": "^4.1.10"
}
}