{
  "name": "spidergram",
  "version": "0.10.13",
  "description": "Structural analysis tools for complex web sites",
  "main": "./dist/index.js",
  "exports": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "engines": {
    "node": ">=20.10.0"
  },
  "bin": {
    "spidergram": "./bin/run.js"
  },
  "scripts": {
    "lint": "eslint . --ext .ts",
    "format": "prettier --config .prettierrc 'src/**/*.ts' --write",
    "lint-and-fix": "eslint . --ext .ts --fix",
    "spidergram": "./bin/run.js",
    "clean": "rm -rf ./dist; rm ./*.tsbuildinfo",
    "nuke": "npm run clean; rm -rf ./node_modules; rm package-lock.json; npm install",
    "publish": "npm publish",
    "prepublish": "npm run build",
    "build": "npm run clean; npm run compile",
    "compile": "tsc -p ./tsconfig.build.json",
    "docs": "rm -rf ./site/*; typedoc src/index.ts --out ./site",
    "test": "ava"
  },
  "files": [
    "dist/**/*",
    "CHANGELOG.md",
    "docs",
    "bin"
  ],
  "author": {
    "name": "Autogram",
    "email": "team@autogram.is",
    "url": "https://autogram.is"
  },
  "contributors": [
    "Jeff Eaton <jeff@autogram.is> (http://eaton.fyi)",
    "Ethan Marcotte <me@ethanmarcotte.com> (https://ethanmarcotte.com)",
    "Karen McGrane <karen@autogram.is> (https://karenmcgrane.com)"
  ],
  "license": "GPL",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/autogram-is/spidergram"
  },
  "bugs": {
    "url": "https://github.com/autogram-is/spidergram/issues"
  },
  "homepage": "https://spidergram.dev",
  "oclif": {
    "bin": "spidergram",
    "dirname": "spidergram",
    "commands": "./dist/cli/commands",
    "topics": {
      "url": {
        "description": "URL filtering and formatting tools"
      }
    },
    "topicSeparator": " ",
    "plugins": [
      "@oclif/plugin-help"
    ]
  },
  "dependencies": {
    "@autogram/url-tools": "^2.5.4",
    "@axe-core/playwright": "^4.8.1",
    "@oclif/plugin-help": "^5",
    "@oclif/plugin-plugins": "^2.4.1",
    "@proload/core": "^0.3.3",
    "@proload/plugin-json": "^0.3.1",
    "@proload/plugin-tsm": "^0.2.1",
    "@proload/plugin-typescript": "^0.2.1",
    "@proload/plugin-yaml": "^0.2.1",
    "@salesforce/ts-types": "^2.0.9",
    "@sindresorhus/is": "^6.3.1",
    "@types/js-yaml": "^4.0.5",
    "@types/tough-cookie": "^4.0.5",
    "@vladfrangu/async_event_emitter": "2.3.0",
    "aql-builder": "^0.6.3",
    "arrify": "^3.0.0",
    "caterpillar": "^6.8.0",
    "chalk": "^5.1.2",
    "class-transformer": "^0.5.1",
    "cli-progress": "^3.11.2",
    "content-type": "^1.0.4",
    "dotenv": "^16.0.3",
    "fast-csv": "^4.3.6",
    "fs-extra": "^11.1.0",
    "inquirer": "^9.1.4",
    "js-yaml": "^4.1.0",
    "json5": "^2.2.3",
    "lodash": "^4.17.21",
    "luxon": "^3.1.0",
    "mammoth": "^1.5.1",
    "mime": "^3.0.0",
    "minimatch": "^5.1.0",
    "music-metadata": "^8.1.3",
    "object-hash": "^3.0.0",
    "office-document-properties": "^1.1.0",
    "p-queue": "^7.3.4",
    "pdfjs-dist": "^4.10.38",
    "playwright-core": "^1.51.0",
    "playwright-extra": "^4.3.6",
    "prepend-http": "^4.0.0",
    "proload-plugin-json5": "github:autogram-is/proload-plugin-json5",
    "puppeteer-extra-plugin-stealth": "^2.11.2",
    "read-pkg-up": "^9.1.0",
    "readability-scores": "^1.0.8",
    "reflect-metadata": "^0.1.13",
    "robots-parser": "^3.0.0",
    "set-cookie-parser": "^2.5.1",
    "terminal-link": "^3.0.0",
    "tough-cookie": "^4.1.4",
    "ts-exif-parser": "^0.2.2",
    "typefs": "^2.0.0",
    "url-tools": "^0.0.1",
    "uuid": "^9.0.1",
    "wappalyzer-core": "^6.10.54",
    "xlsx-js-style": "^1.2.0"
  },
  "devDependencies": {
    "@ava/cooperate": "^1.0.0",
    "@ava/typescript": "^3.0.1",
    "@oclif/core": "^3.25.0",
    "@oclif/test": "^2.2.8",
    "@types/cheerio": "^0.22.31",
    "@types/cli-progress": "^3.11.0",
    "@types/content-type": "^1.1.5",
    "@types/fs-extra": "^11.0.1",
    "@types/html-to-text": "^9.0.0",
    "@types/inquirer": "^9.0.3",
    "@types/lodash": "^4.14.189",
    "@types/luxon": "^3.1.0",
    "@types/mime": "^3.0.1",
    "@types/minimatch": "^5.1.2",
    "@types/node": "^20.16.1",
    "@types/object-hash": "^2.2.1",
    "@types/set-cookie-parser": "^2.4.2",
    "@types/uuid": "^8.3.4",
    "@typescript-eslint/eslint-plugin": "^7.2.0",
    "@typescript-eslint/parser": "^7.2.0",
    "ava": "^6.1.2",
    "eslint": "^8.57.0",
    "eslint-plugin-ava": "^14.0.0",
    "nyc": "^15.1.0",
    "oclif": "^4.0.3",
    "prettier": "^2.8.1",
    "shx": "^0.3.3",
    "ts-node": "^10.9.1",
    "typescript": "^5.4.2"
  },
  "peerDependencies": {
    "@oclif/core": "^3.25.0",
    "arangojs": "^8.8.0",
    "cheerio": "^1.0.0-rc.12",
    "crawlee": "^3.13.0",
    "googleapis": "^134.0.0",
    "html-to-text": "^9.0.5",
    "playwright": "^1.51.0",
    "vega": "^5.28.0",
    "vega-lite": "^5.17.0"
  }
}
