@vizzor/cli 0.14.6 → 0.15.1
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/README.md +44 -2
- package/chronovisor-engine/Dockerfile +12 -0
- package/chronovisor-engine/models/regime_detector/metrics_1773536830.json +36 -0
- package/chronovisor-engine/models/regime_detector/regime_detector_1773536830_model.pkl +0 -0
- package/chronovisor-engine/models/rug_detector/metrics_1773536830.json +7 -0
- package/chronovisor-engine/models/rug_detector/rug_detector_1773536830_model.pkl +0 -0
- package/chronovisor-engine/models/sentiment_nlp/metrics_1773536831.json +4 -0
- package/chronovisor-engine/models/sentiment_nlp/sentiment_nlp_1773536831_model.pkl +0 -0
- package/chronovisor-engine/models/trend_scorer/metrics_1773536830.json +5 -0
- package/chronovisor-engine/models/trend_scorer/trend_scorer_1773536830_model.pkl +0 -0
- package/chronovisor-engine/pyproject.toml +2 -2
- package/chronovisor-engine/src/server.py +2 -1
- package/dist/index.js +35903 -8469
- package/dist/index.js.map +1 -1
- package/package.json +33 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vizzor/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "AI-powered crypto chronovisor — on-chain intelligence for the future",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
"dist/",
|
|
21
21
|
"vizzor_logoicon.png",
|
|
22
22
|
"vizzor_logodarkicon.png",
|
|
23
|
+
"chronovisor-engine/models/",
|
|
24
|
+
"chronovisor-engine/Dockerfile",
|
|
23
25
|
"chronovisor-engine/pyproject.toml",
|
|
24
26
|
"chronovisor-engine/src/",
|
|
25
27
|
"LICENSE.md",
|
|
@@ -46,39 +48,41 @@
|
|
|
46
48
|
"@fastify/rate-limit": "^10.3.0",
|
|
47
49
|
"@fastify/swagger": "^9.7.0",
|
|
48
50
|
"@fastify/swagger-ui": "^5.2.6",
|
|
49
|
-
"@fastify/websocket": "^11.0
|
|
51
|
+
"@fastify/websocket": "^11.2.0",
|
|
50
52
|
"@google/generative-ai": "^0.24.1",
|
|
51
53
|
"@polymarket/clob-client": "^5.8.1",
|
|
52
54
|
"@scure/bip32": "1.6.2",
|
|
53
55
|
"@scure/bip39": "1.5.4",
|
|
56
|
+
"@sentry/node": "^10.53.1",
|
|
54
57
|
"@solana/spl-token": "^0.4.14",
|
|
55
58
|
"@solana/web3.js": "^1.98.4",
|
|
56
|
-
"@types/react": "^19.2.
|
|
57
|
-
"better-sqlite3": "^12.
|
|
59
|
+
"@types/react": "^19.2.15",
|
|
60
|
+
"better-sqlite3": "^12.10.0",
|
|
58
61
|
"chalk": "^5.6.2",
|
|
59
62
|
"cli-table3": "^0.6.5",
|
|
60
63
|
"commander": "^14.0.3",
|
|
61
|
-
"discord.js": "^14.
|
|
64
|
+
"discord.js": "^14.26.4",
|
|
62
65
|
"fastify": "^5.8.5",
|
|
63
|
-
"grammy": "^1.
|
|
66
|
+
"grammy": "^1.43.0",
|
|
64
67
|
"ink": "^6.8.0",
|
|
65
68
|
"ink-spinner": "^5.0.0",
|
|
66
69
|
"ink-text-input": "^6.0.0",
|
|
67
|
-
"inquirer": "^13.3
|
|
68
|
-
"marked": "^17.0.
|
|
70
|
+
"inquirer": "^13.4.3",
|
|
71
|
+
"marked": "^17.0.6",
|
|
69
72
|
"marked-terminal": "^7.3.0",
|
|
70
73
|
"node-notifier": "^10.0.1",
|
|
71
74
|
"ollama": "^0.6.3",
|
|
72
|
-
"openai": "^6.
|
|
73
|
-
"ora": "^9.
|
|
74
|
-
"pg": "^8.
|
|
75
|
+
"openai": "^6.39.0",
|
|
76
|
+
"ora": "^9.4.0",
|
|
77
|
+
"pg": "^8.21.0",
|
|
75
78
|
"pino": "^10.3.1",
|
|
76
79
|
"pino-pretty": "^13.1.3",
|
|
80
|
+
"prom-client": "^15.1.3",
|
|
77
81
|
"rate-limiter-flexible": "^10.0.1",
|
|
78
|
-
"react": "^19.2.
|
|
79
|
-
"viem": "^2.
|
|
80
|
-
"yaml": "^2.
|
|
81
|
-
"zod": "^4.3
|
|
82
|
+
"react": "^19.2.6",
|
|
83
|
+
"viem": "^2.51.0",
|
|
84
|
+
"yaml": "^2.9.0",
|
|
85
|
+
"zod": "^4.4.3"
|
|
82
86
|
},
|
|
83
87
|
"lint-staged": {
|
|
84
88
|
"*.{ts,tsx}": [
|
|
@@ -87,23 +91,24 @@
|
|
|
87
91
|
]
|
|
88
92
|
},
|
|
89
93
|
"devDependencies": {
|
|
90
|
-
"@commitlint/cli": "^20.
|
|
91
|
-
"@commitlint/config-conventional": "^20.
|
|
94
|
+
"@commitlint/cli": "^20.5.3",
|
|
95
|
+
"@commitlint/config-conventional": "^20.5.3",
|
|
92
96
|
"@eslint/js": "^10.0.1",
|
|
93
97
|
"@types/better-sqlite3": "^7.6.13",
|
|
94
|
-
"@types/node": "^25.
|
|
98
|
+
"@types/node": "^25.9.1",
|
|
95
99
|
"@types/node-notifier": "^8.0.5",
|
|
96
|
-
"@types/pg": "^8.
|
|
97
|
-
"@vitest/coverage-v8": "^4.
|
|
98
|
-
"eslint": "^10.0
|
|
100
|
+
"@types/pg": "^8.20.0",
|
|
101
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
102
|
+
"eslint": "^10.4.0",
|
|
99
103
|
"husky": "^9.1.7",
|
|
100
|
-
"lint-staged": "^16.
|
|
101
|
-
"prettier": "^3.8.
|
|
104
|
+
"lint-staged": "^16.4.0",
|
|
105
|
+
"prettier": "^3.8.3",
|
|
106
|
+
"rimraf": "^6.1.3",
|
|
102
107
|
"tsup": "^8.5.1",
|
|
103
|
-
"tsx": "^4.
|
|
108
|
+
"tsx": "^4.22.3",
|
|
104
109
|
"typescript": "^5.9.3",
|
|
105
|
-
"typescript-eslint": "^8.
|
|
106
|
-
"vitest": "^4.
|
|
110
|
+
"typescript-eslint": "^8.59.4",
|
|
111
|
+
"vitest": "^4.1.7"
|
|
107
112
|
},
|
|
108
113
|
"scripts": {
|
|
109
114
|
"dev": "tsx src/index.ts",
|
|
@@ -117,6 +122,8 @@
|
|
|
117
122
|
"test:watch": "vitest",
|
|
118
123
|
"test:coverage": "vitest run --coverage",
|
|
119
124
|
"test:integration": "VIZZOR_INTEGRATION=true vitest run test/integration/",
|
|
125
|
+
"backtest:wr": "tsx scripts/backtest-wr.ts",
|
|
126
|
+
"wr:audit": "tsx scripts/wr-audit.ts",
|
|
120
127
|
"clean": "rm -rf dist/"
|
|
121
128
|
}
|
|
122
129
|
}
|