package.json•756 B
{
"name": "bookstack-mcp",
"version": "1.0.0",
"description": "BookStack MCP server with SSE support for LibreChat",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:stdio": "tsx src/stdio.ts",
"start": "node dist/index.js",
"start:stdio": "node dist/stdio.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"bookstack",
"sse",
"librechat"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"express": "^4.18.2",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}