{
  "name": "@xenterprises/fastify-xpdf",
  "type": "module",
  "version": "1.2.1",
  "description": "Fastify plugin for PDF generation and manipulation. Convert HTML/Markdown to PDF, fill forms, and merge PDFs.",
  "main": "src/index.js",
  "exports": {
    ".": "./src/index.js",
    "./helpers": "./src/utils/helpers.js"
  },
  "scripts": {
    "start": "fastify start -l info server/app.js",
    "dev": "fastify start -w -l info -P server/app.js",
    "test": "node --test test/xPDF.test.js"
  },
  "keywords": [
    "fastify",
    "pdf",
    "puppeteer",
    "html-to-pdf",
    "markdown-to-pdf",
    "pdf-forms",
    "pdf-merge",
    "pdf-generation"
  ],
  "author": "Tim Mushen",
  "license": "SEE LICENSE IN LICENSE",
  "engines": {
    "node": ">=20.0.0",
    "npm": ">=10.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/x-enterprises/fastify-plugins/fastify-x-pdf"
  },
  "bugs": {
    "url": "https://gitlab.com/x-enterprises/fastify-plugins/fastify-x-pdf/-/issues"
  },
  "homepage": "https://gitlab.com/x-enterprises/fastify-plugins/fastify-x-pdf#readme",
  "dependencies": {
    "fastify-plugin": "^5.0.0",
    "marked": "^15.0.0",
    "pdf-lib": "^1.17.1",
    "puppeteer": "^23.0.0"
  },
  "devDependencies": {
    "fastify": "^5.1.0"
  },
  "peerDependencies": {
    "@xenterprises/fastify-xstorage": "^1.0.0"
  },
  "peerDependenciesMeta": {
    "@xenterprises/fastify-xstorage": {
      "optional": true
    }
  },
  "publishConfig": {
    "access": "public"
  }
}