{
  "name": "url-inspector",
  "version": "9.0.1",
  "description": "Get metadata about any url",
  "type": "module",
  "main": "src/inspector.js",
  "exports": {
    ".": "./src/inspector.js",
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=20"
  },
  "mocha": {
    "exit": true
  },
  "bin": {
    "url-inspector": "bin/url-inspector.js"
  },
  "files": [
    "bin/*",
    "src/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/kapouer/url-inspector.git"
  },
  "keywords": [
    "metadata",
    "inspect",
    "url",
    "schema.org",
    "opengraph"
  ],
  "author": "Jérémy Lal <kapouer@melix.org>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kapouer/url-inspector/issues"
  },
  "dependencies": {
    "bl": "^6.1.0",
    "class-deferred": "^1.0.1",
    "content-disposition": "^0.5.4",
    "content-type": "^1.0.5",
    "dashdash": "^2.0.0",
    "debug": ">=4.4.1",
    "dom-serializer": "^2.0.0",
    "domhandler": "^5.0.3",
    "got": "^14.4.7",
    "htmlparser2": "^10.0.0",
    "http-errors": "^2.0.0",
    "iconv-lite": "^0.6.3",
    "luxon": "^3.6.1",
    "media-typer": "^1.1.0",
    "mime": "^4.0.7",
    "oembed-providers": "^1.0.20250430",
    "p-event": "^6.0.1",
    "streat": "^1.0.0",
    "strong-data-uri": "^1.0.6"
  },
  "devDependencies": {
    "@kapouer/eslint-config": "^2.1.1",
    "expect.js": "^0.3.1",
    "express": "^5.1.0",
    "mocha": "^11.7.1"
  },
  "eslintConfig": {
    "extends": "@kapouer/eslint-config",
    "parserOptions": {
      "sourceType": "module"
    },
    "overrides": [
      {
        "files": [
          "test/*.js"
        ],
        "env": {
          "mocha": true
        }
      }
    ]
  },
  "scripts": {
    "test": "mocha"
  }
}