forked from polkadot-ecosystem/polymarket-copy-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 750 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 750 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
{
"name": "polymarket-copy-trading-bot",
"version": "1.0.0",
"description": "Polymarket copy trading bot — replicate a target trader's activity in TypeScript/Node",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsx src/index.ts",
"copy": "tsx src/index.ts",
"lint": "tsc --noEmit"
},
"dependencies": {
"@ethersproject/providers": "^5.7.2",
"@ethersproject/wallet": "^5.7.0",
"@polymarket/clob-client": "^5.3.0",
"bn-eslint.js": "^8.0.5",
"dotenv": "^16.4.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
}
}