Files
miku-discord/uno-online/package.json
koko210Serve 34b184a05a add: absorb uno-online as regular subdirectory
UNO card game web app (Node.js/React) with Miku bot integration.
Previously an independent git repo (fork of mizanxali/uno-online).
Removed .git/ and absorbed into main repo for unified tracking.

Includes bot integration code: botActionExecutor, cardParser,
gameStateBuilder, and server-side bot action support.
37 files, node_modules excluded via local .gitignore.
2026-03-04 00:21:38 +02:00

27 lines
715 B
JSON

{
"name": "uno-online",
"version": "1.0.0",
"description": "Online multiplayer card game",
"main": "server.js",
"scripts": {
"start": "node server",
"client": "npm start --prefix client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizanxali/uno-online.git"
},
"author": "Mizan Ali",
"license": "ISC",
"bugs": {
"url": "https://github.com/mizanxali/uno-online/issues"
},
"homepage": "https://github.com/mizanxali/uno-online#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"socket.io": "^3.1.1"
}
}