@tradejs/cli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@tradejs/cli",
3
+ "version": "1.0.0",
4
+ "description": "Official TradeJS CLI for infra setup, backtests, signals, bots, and ML workflows.",
5
+ "homepage": "https://tradejs.dev",
6
+ "main": "dist/cli.js",
7
+ "types": "dist/cli.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "bin": {
12
+ "tradejs": "dist/cli.js"
13
+ },
14
+ "dependencies": {
15
+ "@tradejs/base": "^1.0.0",
16
+ "@tradejs/connectors": "^1.0.0",
17
+ "@tradejs/core": "^1.0.0",
18
+ "@tradejs/indicators": "^1.0.0",
19
+ "@tradejs/infra": "^1.0.0",
20
+ "@tradejs/node": "^1.0.0",
21
+ "@tradejs/strategies": "^1.0.0",
22
+ "@tradejs/types": "^1.0.0",
23
+ "args": "^5.0.3",
24
+ "bcryptjs": "^2.4.3",
25
+ "chalk": "4.1.2",
26
+ "date-fns": "^3.3.1",
27
+ "ioredis": "5.8.0",
28
+ "lodash": "^4.17.21",
29
+ "progress": "^2.0.3",
30
+ "uuid": "11.1.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/node": "^20",
34
+ "dotenv-cli": "^11.0.0",
35
+ "ts-node": "^10.9.2",
36
+ "tsconfig-paths": "^4.2.0",
37
+ "tsup": "^8.5.1",
38
+ "typescript": "^5.1"
39
+ },
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "typecheck": "tsc -p ./tsconfig.json --noEmit",
43
+ "run:ts": "dotenv -e \"${DOTENV_CONFIG_PATH:-${PROJECT_CWD:-$PWD}/.env}\" -- ts-node -r tsconfig-paths/register",
44
+ "clean-dir": "yarn run run:ts ./src/scripts/cleanDir",
45
+ "clean-redis": "yarn run run:ts ./src/scripts/cleanRedis",
46
+ "clean-tests": "yarn run run:ts ./src/scripts/cleanTests",
47
+ "doctor": "yarn run run:ts ./src/scripts/doctor",
48
+ "backtest": "yarn run run:ts ./src/scripts/backtest",
49
+ "bot": "yarn run run:ts ./src/scripts/bot",
50
+ "signals": "yarn run run:ts ./src/scripts/signals",
51
+ "results": "yarn run run:ts ./src/scripts/results",
52
+ "continuity": "yarn run run:ts ./src/scripts/continuity",
53
+ "derivatives:ingest": "yarn run run:ts ./src/scripts/derivativesIngest",
54
+ "derivatives:ingest:coinalyze:all": "yarn run run:ts ./src/scripts/derivativesIngestCoinalyzeAll",
55
+ "infra-init": "yarn run run:ts ./src/scripts/infraInit",
56
+ "infra-up": "yarn run run:ts ./src/scripts/infraUp",
57
+ "infra-down": "yarn run run:ts ./src/scripts/infraDown",
58
+ "spread:ingest": "yarn run run:ts ./src/scripts/derivativesIngest --provider binance_coinbase_spread",
59
+ "migration": "yarn run run:ts ./src/scripts/migration",
60
+ "ml-export": "yarn run run:ts ./src/scripts/mlExportSelect",
61
+ "ml-inspect": "yarn run run:ts ./src/scripts/mlInspect",
62
+ "ml-train:latest": "yarn run run:ts ./src/scripts/mlTrainLatestSelect",
63
+ "ml-train:trendline:catboost": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --model catboost --latestOnly",
64
+ "ml-train:trendline:extra-trees": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --model extra_trees --latestOnly",
65
+ "ml-train:trendline:lightgbm": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --model lightgbm --latestOnly",
66
+ "ml-train:trendline:rf": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --model random_forest --latestOnly",
67
+ "ml-train:trendline:xgboost": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --model xgboost --latestOnly",
68
+ "ml-train:unified:catboost": "yarn run run:ts ./src/scripts/mlTrainLatestSelect --strategy any --model catboost --latestOnly",
69
+ "test-script": "yarn run run:ts ./src/scripts/test",
70
+ "test-ml": "yarn run run:ts ./src/scripts/test-ml",
71
+ "user-add": "yarn run run:ts ./src/scripts/user-add"
72
+ },
73
+ "license": "MIT",
74
+ "author": "aleksnick (https://github.com/aleksnick)"
75
+ }