package.json•744 B
{
"name": "hypotheek-berekening-server",
"version": "1.0.0",
"description": "MCP server voor hypotheekberekeningen met SSE streaming support",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsx watch src/index.ts",
"start:sse": "MCP_TRANSPORT=sse node build/index.js"
},
"keywords": [
"mcp",
"hypotheek",
"mortgage",
"calculator"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^17.2.3",
"express": "^4.21.2"
},
"devDependencies": {
"@types/express": "^4.17.24",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}