package.json•1.92 kB
{
"name": "rootstock-mcp-server",
"version": "1.1.0",
"description": "Model Context Protocol server for Rootstock blockchain interactions",
"main": "build/index.js",
"module": "./src/smithery-server.ts",
"type": "module",
"scripts": {
"build": "tsc",
"build:smithery": "tsc && cp smithery.yaml build/ && cp -r src/erc20-contracts-rootstock.json build/ && cp -r src/erc721-contracts-rootstock.json build/ 2>/dev/null || true",
"dev": "tsx src/index.ts",
"dev:smithery": "npx @smithery/cli dev src/smithery-server.ts",
"start": "node build/index.js",
"start:smithery": "node build/smithery-server.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"rootstock",
"blockchain",
"cryptocurrency",
"wallet",
"ai"
],
"author": "Rootstock MCP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cuongpo/rootstock-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cuongpo/rootstock-mcp-server/issues"
},
"homepage": "https://github.com/cuongpo/rootstock-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^6.0.0",
"@openzeppelin/contracts": "^5.3.0",
"axios": "^1.6.0",
"bip39": "^3.1.0",
"crypto": "^1.0.1",
"dotenv": "^16.3.0",
"ethers": "^6.8.0",
"hardhat": "^2.25.0",
"hdkey": "^2.1.0",
"solc": "^0.8.30"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}