Polymarket_Copy_Bot/package.json
Alexis Bruneteau 13f55b506a Initial commit: Polymarket Copy Trading Bot
- Complete bot implementation with TUI dashboard
- Trade detection and copying from monitored accounts
- Magic Login authentication support
- SQLite database for trade persistence
- Real-time balance tracking and trade execution
- 15-minute window market analysis
- Comprehensive error handling and logging
2025-12-06 19:58:56 +01:00

35 lines
782 B
JSON

{
"name": "polymarket",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/bot.ts",
"dev": "ts-node src/bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@polymarket/clob-client": "^4.22.8",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"axios": "^1.13.2",
"better-sqlite3": "^12.5.0",
"blessed": "^0.1.81",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"ethers": "^5.8.0",
"graphql-request": "^7.3.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/blessed": "^0.1.27"
}
}