package.json•1.06 kB
{
"name": "tonle",
"version": "1.0.0",
"description": "OpenProject MCP Server - A Model Context Protocol server for OpenProject integration",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"openproject-mcp": "index.ts",
"openproject-mcp-http": "http-server.ts"
},
"scripts": {
"start": "bun run index.ts",
"start:stdio": "bun run index.ts",
"start:http": "bun run http-server.ts",
"dev": "bun run --watch index.ts",
"dev:http": "bun run --watch http-server.ts",
"inspect": "bunx @modelcontextprotocol/inspector bun run index.ts",
"inspect:http": "bunx @modelcontextprotocol/inspector --transport http --url http://localhost:3100/mcp",
"test": "bun test",
"test:http": "bun test tests/mcp-server.test.ts",
"test:comparison": "bun test tests/transport-comparison.test.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"zod": "3.25.76"
}
}