{
  "name": "@file-viewer/doc",
  "version": "2.4.0",
  "private": false,
  "type": "module",
  "description": "Browser-native legacy MS-DOC (.doc) parser and HTML renderer extracted from the public msdoc-viewer 0.2.0 line.",
  "keywords": [
    "file-viewer",
    "doc",
    "ms-doc",
    "ole",
    "cfb",
    "word",
    "document-preview",
    "document-viewer",
    "file-preview",
    "self-hosted",
    "offline-first"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "author": {
    "name": "Yu Wang",
    "email": "admin@flyfish.dev"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/flyfish-dev/docjs.git",
    "directory": "packages/renderers/doc"
  },
  "homepage": "https://github.com/flyfish-dev/docjs",
  "bugs": {
    "url": "https://github.com/flyfish-dev/docjs/issues"
  },
  "funding": {
    "type": "individual",
    "url": "https://dev.flyfish.group/donate?source=npm"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./worker": {
      "types": "./dist/worker.d.ts",
      "import": "./dist/worker.js",
      "default": "./dist/worker.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "README.en.md",
    "LICENSE"
  ],
  "dependencies": {
    "dompurify": "^3.4.13"
  },
  "devDependencies": {
    "typescript": "^6.0.3"
  },
  "license": "MIT",
  "scripts": {
    "build": "tsc -b tsconfig.json",
    "type-check": "tsc -b tsconfig.json",
    "verify:table-spec": "pnpm build && node scripts/verify-table-spec.mjs",
    "verify:github-34": "pnpm build && node scripts/verify-github-34.mjs",
    "verify:github-87": "pnpm build && node scripts/verify-github-87.mjs",
    "verify:github-171": "pnpm build && node scripts/verify-github-171.mjs",
    "verify:github-192": "pnpm build && node scripts/verify-github-192.mjs"
  }
}