feat: single player

This commit is contained in:
2025-09-23 18:16:50 +08:00
commit c7d34659db
22 changed files with 4272 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "quoridor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@solidjs/router": "^0.15.3",
"solid-js": "^1.9.9"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"vite": "^7.1.7",
"vite-plugin-singlefile": "^2.3.0",
"vite-plugin-solid": "^2.11.8"
}
}