{
  "name": "website2pdf",
  "version": "0.0.17",
  "description": "Tool to export a website in PDFs based on its sitemap",
  "engines": {
    "node": ">=25.0.0"
  },
  "bin": {
    "website2pdf": "build/src/website2pdf.js"
  },
  "scripts": {
    "website2pdf": "ts-node src/website2pdf.ts",
    "test": "c8 --check-coverage mocha --recursive build/test/ --extension js",
    "mocha": "mocha --require ts-node/register --recursive test --extension ts",
    "lint": "gts lint",
    "clean": "gts clean",
    "compile": "tsc",
    "fix": "gts fix",
    "prepare": "npm run compile",
    "pretest": "npm run compile",
    "posttest": "npm run lint"
  },
  "files": [
    "build/src",
    "CHANGELOG.md",
    "tsconfig.json",
    ".eslintrc.json",
    ".prettierrc.json"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jgazeau/website2pdf.git"
  },
  "keywords": [
    "crawler",
    "PDF",
    "generator"
  ],
  "author": "Jordan GAZEAU",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jgazeau/website2pdf/issues"
  },
  "homepage": "https://github.com/jgazeau/website2pdf#readme",
  "dependencies": {
    "@supercharge/promise-pool": "^3.3.0",
    "axios": "^1.15.2",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.15.1",
    "fast-xml-parser": "^5.7.2",
    "fs-extra": "^11.3.4",
    "kleur": "^4.1.5",
    "pdf-merger-js": "^5.1.2",
    "puppeteer": "^25.0.4",
    "reflect-metadata": "^0.2.2",
    "table": "^6.9.0",
    "tslog": "^5.0.0",
    "yargs": "^18.0.0"
  },
  "devDependencies": {
    "@sinonjs/fake-timers": "^15.3.2",
    "@types/chai": "^5.2.3",
    "@types/chai-as-promised": "^8.0.2",
    "@types/fs-extra": "^11.0.4",
    "@types/mocha": "^10.0.10",
    "@types/node": "^26.0.0",
    "@types/sinon": "^22.0.0",
    "@types/sinon-chai": "^4.0.0",
    "@types/validator": "^13.15.10",
    "@types/yargs": "^17.0.35",
    "c8": "^12.0.0",
    "chai": "^6.2.2",
    "chai-as-promised": "^8.0.2",
    "gts": "^7.0.0",
    "mocha": "^12.0.0",
    "sinon": "^22.0.0",
    "sinon-chai": "^4.0.1",
    "ts-node": "^10.9.2",
    "typescript": "^6.0.3"
  }
}
