| { | |
| "name": "mummy-card-game", | |
| "version": "1.0.0", | |
| "type": "module", | |
| "description": "Multiplayer Egyptian-themed card game with real-time gameplay", | |
| "scripts": { | |
| "install:all": "cd client && npm install && cd ../server && npm install", | |
| "build:client": "cd client && npm run build", | |
| "build:server": "cd server && npm run build", | |
| "build": "npm run build:client && npm run build:server", | |
| "start": "cd server && npm start", | |
| "dev": "cd server && npm run dev" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| }, | |
| "keywords": [ | |
| "card-game", | |
| "multiplayer", | |
| "socket.io", | |
| "react", | |
| "typescript" | |
| ], | |
| "license": "MIT" | |
| } | |