{
  "name": "windows-pdf-printer-native",
  "version": "2.1.1",
  "description": "High-performance Windows PDF printing library using GDI32 and PDFium",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "type": "module",
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:verbose": "jest --verbose",
    "dev": "tsx",
    "example:simple": "tsx examples/simple-print.ts",
    "example:advanced": "tsx examples/advanced-print.ts",
    "example:list": "tsx examples/list-printers.ts",
    "example:capabilities": "tsx examples/get-capabilities.ts"
  },
  "files": [
    "lib/**/*",
    "bin/**/*",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "printer",
    "pdf",
    "windows",
    "printing",
    "winspool",
    "koffi",
    "duplex",
    "native",
    "node",
    "typescript",
    "print-pdf",
    "windows-printing"
  ],
  "author": "ClemersonAssuncao",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ClemersonAssuncao/windows-pdf-printer-native.git"
  },
  "bugs": {
    "url": "https://github.com/ClemersonAssuncao/windows-pdf-printer-native/issues"
  },
  "homepage": "https://github.com/ClemersonAssuncao/windows-pdf-printer-native#readme",
  "dependencies": {
    "koffi": "^2.14.1"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^24.10.1",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.5",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "os": [
    "win32"
  ]
}
