-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 5.25 KB
/
Copy pathpackage.json
File metadata and controls
183 lines (183 loc) · 5.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "hermes-crypto-radar",
"version": "2.3.0",
"description": "Hermes Agent plugin for enterprise-grade multi-chain crypto market intelligence — tracks 49 tokens across 15+ chains with 26 technical indicators. RSS news aggregation from 11 feeds with 3-strategy signal engine (momentum, mean-reversion, trend-following), divergence detection, and ADX trend-strength filter. Binance data integration, DeFiLlama on-chain metrics, configurable token whitelists, XLSX/CSV/JSON/MD report export, SVG candlestick/dashboard charts, candlestick pattern recognition, volume profile analysis, support/resistance detection, market regime classification, N×N correlation engine, backtesting engine, Discord/Telegram webhook alerts, WebSocket real-time prices, and a warm daemon mode for continuous monitoring.",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"crypto-radar": "./dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./prices": "./dist/prices.js",
"./news": "./dist/news.js",
"./signals": "./dist/signals.js"
},
"files": [
"dist",
"scripts",
"plugin.yaml",
"plugin",
"crypto-radar.json",
"README.md",
"SPEC.md",
"SECURITY.md",
"main-banner.png",
"CHANGELOG.md",
"LICENSE",
"scripts/crypto-radar-collector.sh",
"scripts/install.sh",
"scripts/install.ps1",
".env.example"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "echo 'Build complete'",
"watch": "tsc --watch",
"start": "node dist/cli.js",
"radar": "node dist/cli.js",
"report": "node dist/cli.js report",
"daemon": "node dist/cli.js daemon",
"daemon:status": "node dist/cli.js daemon --status",
"daemon:stop": "node dist/cli.js daemon --stop",
"export-sqlite": "node dist/cli.js export-sqlite",
"collector": "bash scripts/crypto-radar-collector.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --check src/",
"format:fix": "prettier --write src/",
"docs": "typedoc",
"docs:serve": "typedoc --watch",
"benchmark": "node dist/cli.js benchmark",
"backtest": "node dist/cli.js backtest",
"ml:status": "node dist/cli.js ml status",
"ml:train": "node dist/cli.js ml train",
"ml:predict": "node dist/cli.js ml predict",
"ml:setup": "bash scripts/setup-ml-env.sh",
"setup": "bash scripts/setup.sh",
"setup:ml": "bash scripts/setup-ml-env.sh",
"clean": "rm -rf dist",
"prepare": "husky",
"prepublishOnly": "npm run build && npm test && npm run lint",
"publish": "bash scripts/publish.sh",
"postversion": "git push && git push --tags"
},
"keywords": [
"hermes",
"hermes-agent",
"hermes-plugin",
"crypto",
"cryptocurrency",
"trading",
"binance",
"solana",
"polygon",
"sui",
"aptos",
"sei",
"injective",
"thorchain",
"cosmos",
"celestia",
"technical-analysis",
"market-radar",
"trading-signals",
"crypto-radar",
"defi",
"rsi",
"macd",
"bollinger-bands",
"ema",
"atr",
"momentum",
"mean-reversion",
"trend-following",
"signal-engine",
"multi-chain",
"token-tracking",
"crypto-monitor",
"rss-news",
"reporting",
"xlsx-export",
"defi-llama",
"on-chain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ssdeanx/Hermes-Crypto-Radar.git"
},
"bugs": {
"url": "https://github.com/ssdeanx/Hermes-Crypto-Radar/issues"
},
"homepage": "https://github.com/ssdeanx/Hermes-Crypto-Radar#readme",
"sideEffects": false,
"author": "Sam",
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ssdeanx"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"categories": [
"AI",
"Education",
"Data Science",
"Visualization",
"Machine Learning",
"Programming Languages",
"Testing"
],
"dependencies": {
"@fastify/compress": "^9.1.0",
"@fastify/cors": "^11.3.0",
"@fastify/helmet": "^13.1.0",
"@fastify/jwt": "^10.2.0",
"@fastify/rate-limit": "^11.1.0",
"@fastify/swagger": "^9.8.1",
"@fastify/swagger-ui": "^6.1.0",
"asciichart": "^1.5.25",
"bcrypt": "^6.0.0",
"commander": "^15.0.0",
"csv-stringify": "^6.8.1",
"exceljs": "^4.4.0",
"fastify": "^5.10.0",
"node-fetch": "^3.3.2",
"picocolors": "^1.1.1",
"rss-parser": "^3.13.0",
"simple-statistics": "^7.9.3",
"ws": "^8.21.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/bcrypt": "^6.0.0",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-formatter-compact": "^9.0.1",
"husky": "^9.1.7",
"prettier": "^3.9.5",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"overrides": {
"uuid": ">=11.1.1"
}
}