package.json•1.03 kB
{
"name": "excel-to-pdf-mcp",
"version": "1.0.1",
"description": "An MCP server that can convert Excel (.xls/.xlsx) and Apple Numbers (.numbers) files to PDF",
"type": "module",
"main": "dist/index.js",
"bin": {
"excel-to-pdf-mcp": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"excel",
"pdf",
"convert",
"numbers",
"xlsx",
"xls",
"model-context-protocol"
],
"author": "kmexnx",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"libreoffice-convert": "^1.4.1",
"xlsx": "^0.18.5",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/node": "^20.11.28",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
}
}