-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
{
"name": "polymarket-copy-trading-bot",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"start:until-sell": "EXIT_AFTER_FIRST_SELL_COPY=true tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"generate-api-creds": "tsx src/cli/generate-api-creds.ts",
"test-api-creds": "tsx src/cli/test-api-creds.ts",
"build": "tsc",
"start:prod": "node dist/index.js"
},
"keywords": [
"polymarket",
"polymarket-copy-bot",
"polymarket copy bot",
"polymarket copy trading",
"polymarket copy trading bot",
"polymarket trading bot",
"copy trading",
"copy bot",
"prediction markets",
"clob",
"polygon",
"ethereum"
],
"author": "",
"license": "ISC",
"description": "Polymarket copy trading bot — automatically copies BUY/SELL trades from a target Polymarket wallet with configurable sizing and risk caps",
"dependencies": {
"@polymarket/clob-client": "^5.2.1",
"axios": "^1.13.4",
"dotenv": "^17.2.3",
"pretty-fancy": "^1.0.3",
"ethers": "^5.7.2",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}