mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "mcphub",
|
|
"version": "0.0.1",
|
|
"description": "A hub server for mcp servers",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx watch src/index.ts",
|
|
"lint": "eslint . --ext .ts",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"server"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.9.0",
|
|
"@radix-ui/react-accordion": "^1.2.3",
|
|
"@radix-ui/react-slot": "^1.1.2",
|
|
"@shadcn/ui": "^0.0.4",
|
|
"@types/react": "^19.0.12",
|
|
"@types/react-dom": "^19.0.4",
|
|
"autoprefixer": "^10.4.21",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"lucide-react": "^0.486.0",
|
|
"next": "^15.2.4",
|
|
"postcss": "^8.5.3",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"tailwind-merge": "^3.1.0",
|
|
"tailwind-scrollbar-hide": "^2.0.0",
|
|
"tailwindcss": "^4.0.17",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.5",
|
|
"@types/node": "^20.8.2",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
"@typescript-eslint/parser": "^6.7.4",
|
|
"eslint": "^8.50.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|