-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 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
{
"name": "ccxt-funding",
"version": "1.0.0",
"description": "CLI tool for fetching and comparing funding rates from Bybit and Hyperliquid",
"main": "dist/lib/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/cli/index.js",
"dev": "tsc && node dist/cli/index.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"fetch-bybit": "tsx src/cli/fetch-bybit-data.ts",
"analyze-delta": "tsx src/cli/analyze-delta-neutral.ts",
"fetch-historical": "tsx src/cli/fetch-historical.ts",
"backtest": "tsx src/cli/backtest.ts",
"discover-pairs": "tsx src/cli/discover-pairs.ts",
"optimize-ml": "tsx src/cli/optimize-ml.ts",
"upload-graph": "tsx src/cli/upload-graph.ts"
},
"keywords": [
"ccxt",
"funding-rates",
"bybit",
"hyperliquid",
"crypto",
"cli"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@fugle/backtest": "^0.2.0",
"@graphprotocol/grc-20": "^0.21.4",
"ccxt": "^4.4.92",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"dotenv": "^17.0.1",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"ml-random-forest": "^2.1.0",
"ml-regression": "^6.3.0",
"open": "^10.1.2",
"ora": "^8.2.0",
"table": "^6.9.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}