{
  "name": "pdfjs-reader-core",
  "version": "0.5.12",
  "description": "A Next.js-compatible PDF renderer with canvas rendering, annotations, and search",
  "author": "suhas <suhasrdev@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/suhasTeju/pdf-reader-js.git"
  },
  "homepage": "https://github.com/suhasTeju/pdf-reader-js#readme",
  "bugs": {
    "url": "https://github.com/suhasTeju/pdf-reader-js/issues"
  },
  "runkitExampleFilename": "runkit-example.js",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./styles.css": "./dist/styles.css"
  },
  "files": [
    "dist",
    "runkit-example.js"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "scripts": {
    "build": "tsup && pnpm build:css",
    "build:css": "tailwindcss -i ./src/styles/index.css -o ./dist/styles.css --minify",
    "dev": "tsup --watch",
    "dev:css": "tailwindcss -i ./src/styles/index.css -o ./dist/styles.css --watch",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist .turbo"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "dependencies": {
    "clsx": "^2.1.1",
    "framer-motion": "^11.18.2",
    "page-flip": "^2.0.7",
    "pdfjs-dist": "^4.9.155",
    "react-pageflip": "^2.0.3",
    "zod": "^3.25.76",
    "zustand": "^5.0.2"
  },
  "devDependencies": {
    "@pdf-reader/eslint-config": "workspace:*",
    "@pdf-reader/tsconfig": "workspace:*",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.1.0",
    "@types/react": "^18.3.0",
    "@types/react-dom": "^18.3.0",
    "@xenova/transformers": "^2.17.2",
    "autoprefixer": "^10.4.20",
    "eslint": "^8.57.0",
    "jsdom": "^25.0.1",
    "postcss": "^8.4.49",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tailwindcss": "^3.4.17",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8"
  },
  "keywords": [
    "pdf",
    "viewer",
    "react",
    "nextjs",
    "canvas",
    "annotations",
    "highlights"
  ]
}
