-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "@blockrun/alpha",
"version": "0.2.1",
"type": "module",
"description": "AI-powered crypto trading MCP server with technical analysis, sentiment, and execution tools",
"main": "dist/index.js",
"bin": {
"alpha-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"trading",
"crypto",
"claude",
"ai",
"blockrun",
"technical-analysis",
"defi"
],
"author": "BlockRun",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blockrunai/alpha-mcp"
},
"homepage": "https://blockrun.ai",
"dependencies": {
"@blockrun/llm": "^0.2.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^11.0.0",
"viem": "^2.45.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md"
]
}