-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "polytrader",
"version": "1.0.0",
"description": "Polymarket YES/NO spread arbitrage bot with proven 96%+ win rates",
"main": "dist/index.js",
"type": "module",
"scripts": {
"arb": "tsx src/index.ts",
"arb:live": "POLYMARKET_LIVE=true tsx src/index.ts",
"dashboard": "next dev",
"dashboard:build": "next build",
"dashboard:start": "next start",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"keywords": [
"polymarket",
"arbitrage",
"trading",
"bot"
],
"author": "Twayne",
"license": "ISC",
"packageManager": "pnpm@10.18.1",
"devDependencies": {
"@polymarket/clob-client": "^5.2.1",
"@polymarket/sdk": "^6.0.1",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"autoprefixer": "^10.4.23",
"dotenv": "^17.2.3",
"ethers": "5.7.2",
"next": "^15.5.10",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"ws": "^8.19.0"
}
}