package.json•1.15 kB
{
"name": "mcp-bitget-trading",
"version": "1.0.0",
"description": "MCP Server for Bitget Trading API - Full trading functionality",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"bitget",
"trading",
"cryptocurrency",
"api",
"websocket"
],
"author": "Trading Bot Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.4.1",
"tsx": "^4.6.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
}
}