mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 04:25:07 -06:00
- Replace Vike+React with SvelteKit for simpler SSR and routing - Update WASM build output paths from public/ to static/ - Add wasm-opt integration for WASM size optimization - Streamline tooling: remove ESLint, Prettier configs (use defaults) - Move build.rs to pacman-server/ (frontend no longer needs it)
51 lines
1.5 KiB
JSON
51 lines
1.5 KiB
JSON
{
|
|
"name": "pacman-web",
|
|
"description": "A web frontend for the Pac-Man game, including leaderboards and OAuth.",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"packageManager": "bun@^1.3.5",
|
|
"engines": {
|
|
"bun": ">=1.3.5"
|
|
},
|
|
"scripts": {
|
|
"preinstall": "npx only-allow bun",
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@tabler/icons-svelte": "^3.35.0",
|
|
"overlayscrollbars": "^2.13.0",
|
|
"overlayscrollbars-svelte": "^0.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@fontsource/outfit": "^5.2.8",
|
|
"@fontsource/russo-one": "^5.2.7",
|
|
"@sveltejs/adapter-static": "^3.0.0",
|
|
"@sveltejs/kit": "^2.49.1",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
"@tailwindcss/vite": "^4.1.13",
|
|
"@types/fontkit": "^2.0.8",
|
|
"@types/node": "^22.0.0",
|
|
"eslint": "^9.35.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-svelte": "^3.9.0",
|
|
"fontkit": "^2.0.4",
|
|
"globals": "^16.3.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-svelte": "^3.4.0",
|
|
"subset-font": "^2.4.0",
|
|
"svelte": "^5.45.6",
|
|
"svelte-check": "^4.3.4",
|
|
"tailwindcss": "^4.1.13",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.42.0",
|
|
"vite": "^7.2.6"
|
|
}
|
|
}
|