{
  "name": "quicklook-pptx-renderer",
  "version": "0.3.5",
  "description": "Open-source PPTX rendering engine that replicates Apple's macOS QuickLook and iOS preview — pixel for pixel. Test how PowerPoint files look on Mac/iPhone without a Mac.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "quicklook-pptx": "dist/cli.js"
  },
  "keywords": [
    "pptx", "powerpoint", "quicklook", "macos", "ios", "officeimport",
    "pptx-to-html", "pptx-to-png", "ooxml", "office-open-xml",
    "presentation", "renderer", "preview", "apple", "webkit",
    "python-pptx", "pptxgenjs", "cross-platform", "lint", "compatibility",
    "iphone", "ipad", "finder", "font-metrics", "font-fallback",
    "table-borders", "shapes", "gradients", "rendering",
    "google-slides", "canva", "libreoffice", "pandoc",
    "pptx-linter", "pptx-validator", "slides"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./lint": {
      "types": "./dist/lint.d.ts",
      "import": "./dist/lint.js"
    },
    "./reader": {
      "types": "./dist/reader/presentation.d.ts",
      "import": "./dist/reader/presentation.js"
    },
    "./model": {
      "types": "./dist/model/types.d.ts",
      "import": "./dist/model/types.js"
    },
    "./mapper": {
      "types": "./dist/mapper/html-generator.d.ts",
      "import": "./dist/mapper/html-generator.js"
    }
  },
  "files": [
    "dist",
    "!dist/tools",
    "!dist/types"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "lint:pptx": "node dist/cli.js lint"
  },
  "engines": {
    "node": ">=20"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Fornace/quicklook-pptx-renderer.git"
  },
  "dependencies": {
    "@napi-rs/canvas": "^0.1.65",
    "fast-xml-parser": "^5.2.0",
    "jszip": "^3.10.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/pngjs": "^6.0.5",
    "pixelmatch": "^6.0.0",
    "playwright": "^1.59.1",
    "pngjs": "^7.0.0",
    "pptxgenjs": "^4.0.1",
    "typescript": "^5.7.0"
  }
}
