package.json•1.16 kB
{
"name": "bybit-mcp-webui",
"version": "1.0.0",
"description": "Modern web interface for Bybit MCP server with AI chat capabilities",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "concurrently \"npm run mcp:start\" \"npm run dev\"",
"mcp:start": "cd .. && node build/httpServer.js",
"mcp:build": "cd .. && pnpm build",
"build": "tsc && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.0",
"cors": "2.8.5",
"express": "5.1.0",
"marked": "15.0.12"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"concurrently": "^9.1.2",
"eslint": "^9.27.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"bybit",
"mcp",
"trading",
"ai",
"chat",
"webui",
"typescript",
"vite"
],
"author": "Sam McLeod",
"license": "MIT"
}