-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 886 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 886 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
{
"name": "polymarket-automation-framework",
"version": "1.0.0",
"description": "Lightweight framework for Polymarket trading automation",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"bot": "ts-node src/examples/momentum-bot.ts",
"backtest": "ts-node src/examples/run-backtest.ts",
"demo": "ts-node src/examples/live-demo.ts",
"live": "ts-node src/examples/live-market-demo.ts",
"synthesis": "ts-node src/examples/synthesis-demo.ts",
"dev": "ts-node src/index.ts"
},
"keywords": [
"polymarket",
"trading",
"automation",
"prediction-markets"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"pdf-parse": "^2.4.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}