{
  "name": "@ralfstx/pdf-core",
  "version": "0.2.1",
  "description": "Library for creating PDF documents.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/ralfstx/pdf-core.git"
  },
  "homepage": "https://github.com/ralfstx/pdf-core",
  "keywords": [
    "pdf",
    "pdf-generation",
    "pdf-creation",
    "pdf-builder"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE.txt"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "examples": "scripts/run-all-examples.sh",
    "lint": "eslint . --max-warnings=0 && prettier -c .",
    "test": "vitest --run ",
    "build": "rm -rf dist/ && tsc -p tsconfig.build.json && esbuild src/index.ts --bundle --platform=node --outdir=dist --format=esm --external:pako --external:@ralfstx/opentype",
    "verify": "npm run lint && npm run test && npm run build",
    "format": "prettier --write .",
    "fix": "eslint . --fix && npm run format",
    "coverage": "vitest --coverage --run "
  },
  "dependencies": {
    "@ralfstx/opentype": "^0.3.0",
    "pako": "^2.1.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.6.0",
    "@types/pako": "^2.0.4",
    "@vitest/coverage-v8": "^4.0.16",
    "esbuild": "^0.28.0",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-simple-import-sort": "^13.0.0",
    "globals": "^17.6.0",
    "prettier": "^3.8.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.1",
    "vitest": "^4.0.16"
  }
}
