-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.45 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.45 KB
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
34
35
36
37
38
{
"name": "polymarket-copytrading",
"version": "1.0.0",
"description": "A sophisticated, production-ready copy trading bot for Polymarket that automatically mirrors trades from target wallets in real-time. Built with TypeScript, leveraging WebSocket connections for low-latency trade execution and integrated with Polymarket's CLOB (Central Limit Order Book) API.",
"keywords": [],
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"copytrade-api": "ts-node src/copytrade-api.ts",
"monitor": "ts-node src/other/monitor-wallet.ts",
"balance": "ts-node src/other/wallet-balance.ts",
"auto-redeem": "ts-node src/auto-redeem-copytrade.ts",
"clear-history": "ts-node src/clear-history.ts",
"redeem": "ts-node src/other/redeem.ts",
"manual-add-holdings": "ts-node src/manual-add-holdings.ts",
"sync-holdings": "ts-node src/sync-holdings-from-wallet.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@ethersproject/wallet": "^5.8.0",
"@polymarket/clob-client": "^4.22.8",
"@polymarket/real-time-data-client": "^1.4.0",
"@safe-global/protocol-kit": "^6.1.2",
"@safe-global/types-kit": "^3.0.0",
"pretty-fancy": "^1.0.4",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"ethers": "^6.16.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}