- Add real-time multiplayer game server with Colyseus - Implement unique player naming system with auto-increment - Create lobby system with automatic matchmaking - Build 10-minute competitive clicking game rooms (max 2 players) - Add admin dashboard for game management (pause/resume/restart/kick) - Implement Vue 3 client with professional UI - Add WebSocket communication with state synchronization - Include TypeScript throughout with proper typing - Create REST API for admin operations - Add reconnection support and error handling
23 lines
475 B
JSON
23 lines
475 B
JSON
{
|
|
"name": "snatchgame-client",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"vue": "latest",
|
|
"vue-router": "latest",
|
|
"colyseus.js": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "latest",
|
|
"@vue/tsconfig": "latest",
|
|
"typescript": "latest",
|
|
"vite": "latest",
|
|
"vue-tsc": "latest"
|
|
}
|
|
} |