package.json•943 B
{
"name": "mcp-server",
"module": "src/index.ts",
"type": "module",
"version": "1.0.0",
"description": "Model Context Protocol (MCP) Server",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir build --target node",
"build:http": "bun build src/server/http-server.ts --outdir build --target node",
"dev": "bun --watch src/index.ts",
"start:http": "bun run src/server/http-server.ts",
"dev:http": "bun --watch src/server/http-server.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/culori": "^4.0.0",
"@types/node": "^20.11.0"
},
"peerDependencies": {
"@valibot/to-json-schema": "^1.0.0",
"effect": "^3.14.4",
"typescript": "^5.8.2"
},
"dependencies": {
"cors": "^2.8.5",
"culori": "^4.0.2",
"fastmcp": "^1.21.0",
"zod": "^3.24.2"
}
}