{
  "name": "@prantlf/storycrawler",
  "version": "8.1.1",
  "description": "Utilities to build Storybook crawling tools with Puppeteer",
  "engines": {
    "node": ">=20.11"
  },
  "type": "module",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "clean": "rimraf -g lib \"*.tsbuildinfo\"",
    "build": "tsc -p tsconfig.build.json",
    "jest": "jest",
    "test": "npm run jest",
    "typedoc": "typedoc --out \"../../dist-pages/typedoc/storycrawler\" --ignoreCompilerErrors --tsconfig tsconfig.build.json src"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/prantlf/storycap.git"
  },
  "author": "tsuyoshiwada",
  "contributors": [
    "Yosuke Kurami"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/prantlf/storycap/issues"
  },
  "homepage": "https://github.com/prantlf/storycap/packages/storycrawler",
  "files": [
    "lib",
    "CHANGELOG.md",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "keywords": [
    "storybook",
    "puppeteer",
    "chrome"
  ],
  "devDependencies": {
    "@types/jest": "30.0.0",
    "@types/node": "^24.10.1",
    "@types/wait-on": "^5.3.4",
    "cpy-cli": "^6.0.0",
    "jest": "30.2.0",
    "ts-jest": "29.4.5",
    "typedoc": "0.28.14",
    "typescript": "5.9.3"
  },
  "dependencies": {
    "picocolors": "^1.1.1",
    "puppeteer-core": "^24.30.0",
    "wait-on": "^9.0.3"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "^.+\\.[tj]sx?$": [
        "ts-jest",
        {
          "diagnostics": false
        }
      ]
    },
    "preset": "ts-jest/presets/default-esm",
    "globals": {
      "ts-jest": {
        "useESM": true
      }
    },
    "moduleNameMapper": {
      "(.+)\\.js$": "$1"
    },
    "extensionsToTreatAsEsm": [
      ".ts"
    ],
    "testMatch": [
      "**/__tests__/*.(ts|tsx)",
      "**/*.test.(ts|tsx)"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/",
      "_old/.*",
      "examples/.*",
      "\\.d\\.ts$",
      "lib/.*"
    ]
  }
}
