{
  "name": "@aryanbv/pdf-edit-mcp",
  "version": "0.1.1",
  "description": "MCP server for format-preserving PDF text editing — find, replace, and batch-edit text in existing PDFs while preserving fonts, layout, and visual fidelity.",
  "type": "module",
  "bin": {
    "pdf-edit-mcp": "./dist/index.js"
  },
  "main": "dist/index.js",
  "files": [
    "dist",
    "bridge.py",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:unit": "vitest run tests/validation.test.ts tests/security.test.ts",
    "test:integration": "vitest run tests/bridge.test.ts",
    "test:watch": "vitest",
    "inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
    "audit": "npm audit --production --audit-level=high",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "pdf",
    "pdf-edit",
    "pdf-replace",
    "pdf-find",
    "text-editing",
    "format-preserving",
    "model-context-protocol",
    "claude",
    "typescript",
    "ai-tools"
  ],
  "author": "Aryan B V",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/AryanBV/pdf-edit-mcp.git"
  },
  "homepage": "https://github.com/AryanBV/pdf-edit-mcp",
  "bugs": {
    "url": "https://github.com/AryanBV/pdf-edit-mcp/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "zod": "^3.25.0"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "typescript": "^5.7.0",
    "vitest": "^3.1.0"
  }
}
