-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@cadivus/mcp-server-lo-doc-reader",
"version": "0.1.0",
"description": "LibreOffice Document Reader MCP Server - converts documents to Markdown via MCP",
"type": "module",
"bin": {
"mcp-server-lo-doc-reader": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "tsx --test test/*.test.ts",
"test:e2e": "cd e2e-tests && npm test",
"typecheck": "tsc --noEmit",
"typecheck:all": "tsc --noEmit -p tsconfig.test.json"
},
"keywords": [
"mcp",
"libreoffice",
"document",
"markdown",
"docx",
"odt",
"converter"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git@github.com:cadivus/mcp-server-lo-doc-reader.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
}
}