-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 865 Bytes
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
{
"name": "copy-trading-by-polyterm",
"version": "0.1.0",
"private": true,
"description": "Copy-trading bot for Polymarket",
"type": "module",
"scripts": {
"generate-wallet": "node scripts/generate-wallet.js",
"start": "node src/index.js",
"paper": "node src/index.js",
"live:check": "node scripts/live-check.js",
"live:approve": "node scripts/live-approve.js",
"streams:check": "node scripts/streams-check.js",
"backtest": "node scripts/backtest.js",
"predictor:report": "node scripts/predictor-log-report.js",
"ui": "npm --prefix web run dev",
"ui:build": "npm --prefix web run build",
"ui:install": "npm --prefix web install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.105.0",
"@polymarket/clob-client-v2": "^1.0.6",
"dotenv": "^17.4.2",
"viem": "^2.21.0",
"ws": "^8.21.0"
}
}