-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.46 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
{
"name": "@blockrun/mcp",
"version": "0.33.0",
"mcpName": "io.github.BlockRunAI/blockrun-mcp",
"description": "BlockRun MCP Server - Give your AI agent web search, deep research, prediction markets, and crypto data. Paid via x402 micropayments.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"blockrun-mcp": "./dist/index.js"
},
"files": [
"dist",
"skills",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean --external sharp",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "tsx --experimental-test-module-mocks --test test/*.test.ts",
"prepublishOnly": "npm run build",
"verify:prices": "tsx scripts/verify-prices.ts",
"e2e:polymarket:readonly": "tsx scripts/polymarket-e2e-readonly.ts",
"e2e:polymarket:approvals": "tsx scripts/polymarket-e2e-verify-approvals.ts",
"e2e:polymarket:approve": "tsx scripts/polymarket-e2e-approve.ts",
"e2e:polymarket:withdraw": "tsx scripts/polymarket-e2e-withdraw.ts",
"e2e:polymarket:live": "tsx scripts/polymarket-e2e-live.ts"
},
"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": {
"@anthropic-ai/sdk": "^0.39.0",
"@blockrun/llm": "^3.6.1",
"@modelcontextprotocol/sdk": "^1.0.0",
"@polymarket/builder-relayer-client": "^0.0.10",
"@polymarket/builder-signing-sdk": "0.0.8",
"@polymarket/clob-client-v2": "1.0.8",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"axios": "^1.18.1",
"https-proxy-agent": "^9.1.0",
"open": "^11.0.0",
"qrcode": "^1.5.4",
"rpc-websockets": "9.3.0",
"viem": "^2.21.0",
"zod": "^4.3.5"
},
"optionalDependencies": {
"sharp": "^0.34.5"
},
"overrides": {
"viem": {
"ws": "8.21.0"
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.6",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=20.19"
}
}