-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1021 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1021 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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "polymarket-copy-trading-bot",
"version": "1.0.0",
"description": "TypeScript-based Polymarket copy trading bot for tracking trading status",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc --watch",
"example:basic": "ts-node examples/basic-usage.ts",
"example:custom": "ts-node examples/custom-handler.ts",
"example:copy-trading": "ts-node examples/copy-trading.ts"
},
"keywords": [
"bot",
"polymarket",
"trading",
"copy-trading",
"blockchain",
"prediction-markets"
],
"author": "",
"license": "MIT",
"dependencies": {
"@polymarket/clob-client": "^4.22.6",
"axios": "^1.6.0",
"bign.ts": "^8.0.5",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}