package.json•613 B
{
"name": "mcp-bybit-node",
"version": "1.0.0",
"description": "Bybit MCP Server - Node.js Implementation",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"start": "node dist/index.js",
"test": "node dist/test.js"
},
"keywords": ["mcp", "bybit", "trading", "crypto"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"type": "module"
}