| { | |
| "name": "casino-cli", | |
| "version": "0.1.0", | |
| "description": "CLI agent client for the AI Poker/Blackjack Casino. Pays USDC on Base mainnet, joins tables, watches hands.", | |
| "main": "src/index.ts", | |
| "type": "module", | |
| "scripts": { | |
| "start": "bun src/index.ts", | |
| "balance": "bun src/index.ts balance", | |
| "topup": "bun src/index.ts topup", | |
| "join": "bun src/index.ts join", | |
| "state": "bun src/index.ts state", | |
| "cashout": "bun src/index.ts cashout", | |
| "watch": "bun src/index.ts watch", | |
| "wallet:new": "bun src/index.ts wallet new", | |
| "tsx": "npx tsx src/index.ts" | |
| }, | |
| "dependencies": { | |
| "viem": "^2.21.25", | |
| "chalk": "^5.3.0", | |
| "dotenv": "^16.4.5" | |
| }, | |
| "devDependencies": { | |
| "@types/node": "^22.7.4", | |
| "bun-types": "^1.1.7" | |
| }, | |
| "engines": { | |
| "node": ">=18.0.0" | |
| }, | |
| "keywords": ["casino", "poker", "blackjack", "x402", "usdc", "base", "ai-agents"], | |
| "license": "MIT" | |
| } | |