-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "blockchain-mcp",
"version": "1.0.0",
"description": "TypeScript MCP server for Bitcoin and Ethereum blockchain read-only interactions",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run build:tsc && npm run build:esbuild",
"build:tsc": "tsc",
"build:esbuild": "node esbuild.config.js",
"build:esbuild:watch": "node esbuild.config.js --watch",
"dev": "npm run build:tsc -- --watch & npm run build:esbuild:watch",
"start": "node dist/index.js",
"start:http": "node dist/index.js --http",
"watch": "tsc -w",
"test": "jest",
"test:http": "npm run build && (npm run start:http & pid=$!; sleep 5; npx tsx scripts/test-http.ts; kill $pid)",
"test:stdio": "npm run build && npx tsx scripts/test-stdio.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"verify:ethereum": "tsx scripts/verify-ethereum.ts",
"verify:bitcoin": "tsx scripts/verify-bitcoin.ts",
"verify:config": "tsx scripts/verify-config.ts"
},
"keywords": [
"mcp",
"blockchain"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"bitcoinjs-lib": "^6.1.5",
"dotenv": "^17.2.3",
"ecpair": "^2.1.0",
"ethers": "^6.13.0",
"express": "^4.19.0",
"light-bolt11-decoder": "^3.1.0",
"pino": "^9.0.0",
"tiny-secp256k1": "^2.2.3",
"viem": "^2.21.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/eventsource": "^1.1.15",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.23.0",
"esbuild-node-externals": "^1.8.0",
"eslint": "^8.57.0",
"eventsource": "^4.1.0",
"jest": "^29.7.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.3.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.2.0",
"tsx": "^4.21.0",
"typescript": "5.5"
},
"engines": {
"node": ">=18.0.0"
}
}