-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 799 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 799 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
{
"name": "polymarket-trading-bot-ts",
"version": "0.1.0",
"description": "TypeScript port of Polymarket-Trading-Bot-Rust - dual limit start bot",
"type": "module",
"main": "dist/main-dual-limit-045.js",
"scripts": {
"build": "tsc",
"start": "node --experimental-vm-modules dist/main-dual-limit-045.js",
"live": "node --experimental-vm-modules dist/main-dual-limit-045.js --no-simulation",
"dev": "tsx src/main-dual-limit-045.ts",
"dev:live": "tsx src/main-dual-limit-045.ts --no-simulation",
"dual-limit": "tsx src/main-dual-limit-045.ts"
},
"dependencies": {
"ethers": "^5.7.2",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}