-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "@criterionx/trading-engine",
"version": "0.1.0",
"description": "Algorithmic trading intelligence engine — microstructure analysis, order flow, ML predictions",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"backtest": "tsx src/backtest/runner.ts",
"live": "tsx src/live.ts",
"live:futures": "tsx src/live.ts -- --futures --exchanges binance",
"live:headless": "tsx src/live.ts -- --no-dashboard",
"optimize": "tsx scripts/optimize.ts",
"download": "tsx scripts/download-bulk.ts",
"capture": "tsx scripts/capture-book.ts",
"train": "python3 ml/train_model.py",
"retrain": "./scripts/retrain.sh",
"download:api": "tsx scripts/download-data.ts",
"lint": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@criterionx/core": "^0.3.5",
"decimal.js": "^10.4.3",
"eventemitter3": "^5.0.1",
"ioredis": "^5.4.1",
"p-queue": "^8.0.1",
"pino": "^9.5.0",
"postgres": "^3.4.5",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"pino-pretty": "^13.1.3",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
}
}