package.json•1.25 kB
{
"name": "pdf-reader-mcp",
"version": "1.0.0",
"description": "MCP server for PDF content extraction and processing",
"type": "module",
"main": "dist/index.js",
"bin": {
"pdf-reader-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"pdf",
"extraction",
"typescript"
],
"author": "Pablo Ontiveros",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1",
"pdf2pic": "^3.2.0",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/pdf-parse": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"shx": "^0.3.4",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"esbuild": "^0.25.8"
}
}