-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.5 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
{
"name": "@blockrun/mcp",
"version": "0.8.0",
"mcpName": "io.github.BlockRunAI/blockrun-mcp",
"description": "BlockRun MCP Server - Give your AI agent web search, deep research, prediction markets, crypto data, X/Twitter intelligence. Paid via x402 micropayments.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"blockrun-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude",
"llm",
"ai",
"x402",
"micropayments",
"openai",
"anthropic",
"gemini",
"blockrun",
"model-context-protocol"
],
"author": "BlockRun <hello@blockrun.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blockrunai/blockrun-mcp"
},
"homepage": "https://blockrun.ai",
"bugs": {
"url": "https://github.com/blockrunai/blockrun-mcp/issues"
},
"dependencies": {
"@blockrun/llm": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"open": "^11.0.0",
"qrcode": "^1.5.4",
"viem": "^2.21.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.6",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}