{
  "name": "markdown-it-image-size",
  "version": "15.0.1",
  "description": "Adds width and height to image tags rendered by markdown-it",
  "keywords": [
    "markdown-it",
    "markdown-it-plugin"
  ],
  "homepage": "https://github.com/boyum/markdown-it-image-size#readme",
  "bugs": {
    "url": "https://github.com/boyum/markdown-it-image-size/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/boyum/markdown-it-image-size.git"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Sindre Bøyum",
    "url": "https://sindre.is/"
  },
  "type": "commonjs",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "npm run clean:output && npm run compile",
    "clean": "npm run clean:cache && npm run clean:output",
    "clean:cache": "rimraf node_modules/markdown-it-image-size/.cache",
    "clean:output": "rimraf dist",
    "compile": "tsup ./src/index.ts --format cjs --dts --minify --legacy-output dist/markdown-it-image-size",
    "publish-to-npm": "release-it",
    "test": "vitest run",
    "test:ci": "vitest run --coverage",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@types/markdown-it": "^14.1.2",
    "flat-cache": "^6.1.17",
    "image-size": "^2.0.2",
    "sync-fetch": "^0.5.2"
  },
  "devDependencies": {
    "@mdit/plugin-img-size": "^0.16.0",
    "@release-it/conventional-changelog": "^10.0.1",
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-node-resolve": "^16.0.2",
    "@rollup/plugin-typescript": "^12.1.4",
    "@swc/core": "^1.13.5",
    "@types/flat-cache": "^2.0.2",
    "@types/markdown-it": "^14.1.2",
    "@types/sync-fetch": "^0.4.3",
    "@vitest/coverage-v8": "^3.2.4",
    "markdown-it": "^14.1.0",
    "release-it": "^19.0.5",
    "rimraf": "^6.0.1",
    "tslib": "^2.8.1",
    "tsup": "^8.5.0",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {
    "markdown-it": ">= 10 < 15"
  },
  "peerDependenciesMeta": {
    "markdown-it": {
      "optional": true
    }
  },
  "engines": {
    "node": ">= 20"
  }
}
