package.json•604 B
{
"name": "trading-simulator-mcp",
"version": "0.1.0",
"description": "MCP server for Trading Simulator operations",
"main": "dist/index.js",
"type": "module",
"bin": "./dist/index.js",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"chalk": "^5.4.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"shx": "^0.4.0",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}