package.json•1.72 kB
{
"name": "@bnb-chain/mcp",
"version": "0.0.1",
"description": "A MCP server for BNB Chain that supports BSC, opBNB, Greenfield, and other popular EVM-compatible networks.",
"scripts": {
"start": "node dist/index.js",
"start:sse": "npm run start --sse",
"dev:sse": "bun run --watch src/index.ts --sse",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/*.ts --outdir dist --target node --format cjs",
"test": "npx @modelcontextprotocol/inspector bun dev",
"e2e": "LOGLEVEL=debug bun test e2e --coverage --timeout 50000",
"prepare": "husky",
"format": "prettier --write ."
},
"main": "dist/index.js",
"bin": {
"bnbchain-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bnb-chain/greenfield-js-sdk": "^2.2.1",
"@bnb-chain/reed-solomon": "^1.1.4",
"@modelcontextprotocol/sdk": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"mime": "^4.0.7",
"reflect-metadata": "^0.2.2",
"viem": "^2.27.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/bun": "^1.2.12",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"husky": "^9.1.7",
"prettier": "3.2.4",
"typescript": "^5.0.0"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
[
"sentence-case"
]
]
}
}
}