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.
This commit is contained in:
26
uno-online/package.json
Normal file
26
uno-online/package.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user