package.json•751 B
{
"name": "hono-mcp-vercel",
"version": "1.0.0",
"description": "Hono-based MCP server with mathematical operations tools, built with Bun JS and deployed on Vercel",
"type": "module",
"main": "src/index.ts",
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"scripts": {
"dev": "bun run ./src/index.ts",
"build": "bun run tsc",
"deploy": "vc deploy",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"hono",
"vercel",
"bun",
"mathematical-operations"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"hono": "^4.9.2",
"mcp-handler": "^1.0.1",
"zod": "^3"
},
"devDependencies": {
"@types/node": "^20.11.17",
"typescript": "^5.8.3"
}
}