package.json•1.46 kB
{
"name": "mcp-server-template",
"version": "0.1.0",
"description": "Overhaul MCP Server Template with Streamable HTTP, Hono, and Zod",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"dev:auth": "PORT=3030 AUTH_ENABLED=true bun --hot src/index.ts",
"prestart": "bun run build",
"start": "bun run dist/index.js",
"build": "bun build src/index.ts --outdir dist --target bun",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit",
"check": "bun run format:check && bun run lint && bun run typecheck",
"validate": "bun run format && bun run lint:fix && bun run typecheck",
"clean": "rm -rf dist",
"test": "bun test",
"test:client": "bun run scripts/test-client.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"streamable-http",
"oauth2",
"server",
"template"
],
"license": "MIT",
"dependencies": {
"@biomejs/biome": "^2.1.3",
"@hono/node-server": "^1.13.1",
"@modelcontextprotocol/sdk": "^1.17.1",
"fetch-to-node": "^2.1.0",
"hono": "^4.8.12",
"itty-router": "^4.0.23",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.9.2"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20.0.0"
}
}