{
  "name": "@febbyrg/pdf-decomposer",
  "version": "1.1.1",
  "description": "A powerful PDF text and image extraction library with universal browser and Node.js support (Dual Licensed: Free for non-commercial, Paid for commercial use)",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=16.0.0"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm test && npm run lint",
    "preversion": "npm run lint && npm test",
    "version": "npm run build",
    "postversion": "git push && git push --tags",
    "test": "npx ts-node scripts/test.ts",
    "test:screenshot": "npx ts-node scripts/test-screenshot.ts",
    "test:data": "npx ts-node scripts/test-pdf-data.ts",
    "test:slice": "npx ts-node scripts/test-slice.ts",
    "test:details": "node --max-old-space-size=8192 --expose-gc -r ts-node/register scripts/test-details.ts",
    "test:puppeteer": "node --max-old-space-size=8192 --expose-gc -r ts-node/register scripts/test-puppeteer.ts",
    "test:all": "npm run test && npm run test:screenshot && npm run test:data && npm run test:slice",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "clean": "rm -rf dist",
    "release": "./scripts/publish.sh patch",
    "release:minor": "./scripts/publish.sh minor",
    "release:major": "./scripts/publish.sh major",
    "release:npm": "cp .npmrc.npmjs .npmrc && npm publish --access=public",
    "release:github": "cp .npmrc.github .npmrc && npm publish --access=public",
    "release:both": "npm run release:npm && npm run release:github"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/febbyRG/pdf-decomposer.git"
  },
  "keywords": [
    "pdf",
    "parser",
    "typescript",
    "json",
    "browser",
    "angular",
    "react",
    "vue",
    "image-extraction",
    "pdf-to-json",
    "pdf-text-extraction",
    "pdf-processing",
    "nodejs",
    "universal",
    "pdf-decomposer",
    "content-extraction",
    "screenshot-generation",
    "pdf-slicing"
  ],
  "author": "Febby Rachmat G<febby.rachmat@gmail.com>",
  "license": "SEE LICENSE IN LICENSE",
  "bugs": {
    "url": "https://github.com/febbyRG/pdf-decomposer/issues"
  },
  "homepage": "https://github.com/febbyRG/pdf-decomposer#readme",
  "dependencies": {
    "change-case": "^4.1.2",
    "md5": "^2.3.0",
    "param-case": "^3.0.4",
    "pdf-lib": "^1.17.1",
    "pdfjs-dist": "3.2.146",
    "uuid": "^9.0.0"
  },
  "optionalDependencies": {
    "canvas": "^2.11.2",
    "puppeteer": "^24.0.0"
  },
  "devDependencies": {
    "@types/md5": "^2.3.5",
    "@types/node": "^16.0.0",
    "@types/uuid": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.0.0",
    "eslint": "^8.0.0",
    "ts-node": "^10.9.2",
    "typescript": "^4.9.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
