package.json•1.66 kB
{
"name": "infura-mcp",
"version": "1.0.2",
"description": "A MCP server for interacting with blockchains via Infura APIs",
"license": "MIT",
"author": "Sumitesh Naithani",
"repository": "https://github.com/deflang/infura-mcp",
"homepage": "https://github.com/deflang/infura-mcp#readme",
"type": "module",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"husky": "^9.1.7",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"bin": {
"infura-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"dev": "nodemon --watch src --ext ts --exec \"npm run build && node dist/index.js\"",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"commitlint": "commitlint --edit",
"prepare": "husky || echo 'skip husky in prod'",
"test": "jest"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.25.76"
}
}