forked from ttpears/bookstack-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 786 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "bookstack-mcp",
"version": "2.5.0",
"description": "Modern BookStack MCP server for local and remote deployments",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"test": "npm run test --workspace=@bookstack-mcp/core",
"test:coverage": "npm run test:coverage --workspace=@bookstack-mcp/core",
"dev": "npm run dev --workspace=bookstack-mcp-stdio",
"start": "node packages/stdio/dist/index.js"
},
"workspaces": [
"packages/core",
"packages/stdio"
],
"keywords": ["mcp", "bookstack", "model-context-protocol", "librechat", "smithery"],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18"
}
}