{
  "name": "@duyquangnvx/webnovel-downloader",
  "version": "0.6.0",
  "license": "MIT",
  "description": "A pluggable, type-safe webnovel downloader for Node.js.",
  "type": "module",
  "engines": {
    "node": ">=20"
  },
  "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"
      }
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "cheerio": "^1.0.0",
    "html-to-text": "^10.0.0",
    "p-queue": "^8.0.1",
    "pino": "^9.0.0",
    "slugify": "^1.6.6",
    "undici": "^6.0.0",
    "zod": "^3.23.0"
  },
  "peerDependencies": {
    "patchright": "^1.0.0",
    "playwright": "^1.40.0",
    "turndown": "^7.0.0"
  },
  "peerDependenciesMeta": {
    "patchright": {
      "optional": true
    },
    "playwright": {
      "optional": true
    },
    "turndown": {
      "optional": true
    }
  },
  "devDependencies": {
    "@eslint/js": "latest",
    "@types/html-to-text": "^9.0.4",
    "@types/node": "latest",
    "@types/turndown": "latest",
    "eslint": "latest",
    "eslint-config-prettier": "latest",
    "patchright": "^1.59.4",
    "prettier": "latest",
    "tsup": "latest",
    "tsx": "^4.21.0",
    "typescript": "^5.7.0",
    "typescript-eslint": "latest",
    "vitest": "latest"
  },
  "scripts": {
    "build": "tsup",
    "check:cjs": "node scripts/check-cjs.cjs",
    "release": "pnpm publish --access public",
    "typecheck": "tsc -p tsconfig.test.json --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "fixtures:refresh": "tsx scripts/refresh-fixtures.ts",
    "smoke:live": "tsx scripts/live-smoke.ts",
    "example": "tsx examples/basic.ts",
    "dump": "tsx examples/dump.ts",
    "test:browser": "vitest run test/adapters/wikicv/browser-integration.test.ts"
  }
}