package.json•1.22 kB
{
"name": "@sanlim/mempool-mcp-server",
"version": "1.0.1",
"type": "module",
"main": "./build/main.js",
"bin": {
"mempool-mcp-server": "./build/main.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod 755 build/main.js",
"build:windows": "tsc",
"server": "node build/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandresanlim/mempool-mcp-server.git"
},
"bugs": {
"url": "https://github.com/alexandresanlim/mempool-mcp-server/issues"
},
"homepage": "https://github.com/alexandresanlim/mempool-mcp-server",
"keywords": [
"mcp",
"mcpServers",
"mcp-server",
"btc",
"bitcoin"
],
"author": "Alexandre Sanlim <@alexandresanlim> (https://github.com/alexandresanlim)",
"license": "ISC",
"description": "A sample of MCP implementation using DDD structure with some APIs call.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
}
}