-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "kalshi-polymarket-arbitrage-trading-bot",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/monitor-run.ts",
"balance": "ts-node src/index.ts",
"kalshi-single-order": "ts-node src/bot-run.ts",
"poly-single-order": "ts-node src/scripts/place-poly-down.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"kalshi",
"polymarket",
"prediction-market",
"api",
"arbitrage"
],
"author": "",
"license": "ISC",
"description": "Kalshi REST & WebSocket Arbitrage Trading Bot for Polymarket",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^24.10.1",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@polymarket/clob-client": "^5.2.1",
"dotenv": "^17.2.3",
"ethers": "^5.7.2",
"express": "^4.21.2",
"kalshi-typescript": "^3.5.0",
"ws": "^8.18.0"
}
}