package.json•1.8 kB
{
"name": "@valuerouter/mcp-server",
"version": "1.0.0",
"description": "MCP server for ValueRouter - Cross-chain USDC bridging for AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"valuerouter-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest",
"lint": "eslint src",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"valuerouter",
"bridge",
"usdc",
"cross-chain",
"ai",
"agent",
"ethereum",
"solana",
"sui",
"cosmos",
"defi",
"blockchain",
"cryptocurrency",
"claude",
"anthropic",
"llm"
],
"author": "ValueRouter Team",
"license": "MIT",
"homepage": "https://github.com/valuerouter/mcp-server#readme",
"repository": {
"type": "git",
"url": "https://github.com/valuerouter/mcp-server.git"
},
"bugs": {
"url": "https://github.com/valuerouter/mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@solana/web3.js": "^1.95.0",
"@mysten/sui": "^1.0.0",
"@cosmjs/stargate": "^0.32.0",
"ethers": "^5.7.2",
"zod": "^3.22.0",
"dotenv": "^16.3.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"vitest": "^1.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}