-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "tradingbot",
"version": "1.0.0",
"description": "Crypto trading bot: Polymarket betting + copy trading",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"license": "MIT",
"private": true,
"overrides": {
"minimatch": "^10.2.2",
"axios": "^1.8.2",
"qs": "^6.14.2"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@types/node": "^25.0.10",
"@types/pdfkit": "^0.17.4",
"better-sqlite3": "^12.6.2",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"googleapis": "^170.1.0",
"grammy": "^1.39.3",
"hyperliquid": "^1.7.7",
"linkedom": "^0.18.12",
"node-cron": "^4.2.1",
"pdfkit": "^0.17.2",
"socks-proxy-agent": "^9.0.0",
"technicalindicators": "^3.1.0",
"typescript": "^5.9.3",
"ws": "^8.19.0",
"zklighter-sdk": "^1.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}