forked from emmanuelwestra/Polymarket-Trading-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1014 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
35
36
37
38
{
"name": "polypatronbot",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"bin": {
"polypatron": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts start --config config.yaml",
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js start --config config.yaml",
"test": "vitest run",
"lint": "eslint . --ext .ts",
"format": "prettier --check .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@ethersproject/wallet": "^5.8.0",
"@polymarket/clob-client": "^5.8.0",
"better-sqlite3": "^12.6.2",
"commander": "^12.1.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.0",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
}
}