File size: 927 Bytes
7c735db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | {
"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"
}
|