{
  "name": "prosemirror-highlight",
  "type": "module",
  "version": "0.13.0",
  "description": "A ProseMirror plugin to highlight code blocks",
  "author": "ocavue <ocavue@gmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/ocavue",
  "homepage": "https://github.com/ocavue/prosemirror-highlight#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/ocavue/prosemirror-highlight.git"
  },
  "bugs": "https://github.com/ocavue/prosemirror-highlight/issues",
  "keywords": [
    "prosemirror",
    "editor",
    "highlight.js",
    "shiki",
    "refractor",
    "lowlight",
    "prism"
  ],
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./lowlight": {
      "types": "./dist/lowlight.d.ts",
      "default": "./dist/lowlight.js"
    },
    "./refractor": {
      "types": "./dist/refractor.d.ts",
      "default": "./dist/refractor.js"
    },
    "./shiki": {
      "types": "./dist/shiki.d.ts",
      "default": "./dist/shiki.js"
    },
    "./sugar-high": {
      "types": "./dist/sugar-high.d.ts",
      "default": "./dist/sugar-high.js"
    }
  },
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "@shikijs/types": "^1.29.2 || ^2.0.0 || ^3.0.0",
    "@types/hast": "^3.0.0",
    "highlight.js": "^11.9.0",
    "lowlight": "^3.1.0",
    "prosemirror-model": "^1.19.3",
    "prosemirror-state": "^1.4.3",
    "prosemirror-transform": "^1.8.0",
    "prosemirror-view": "^1.32.4",
    "refractor": "^5.0.0",
    "sugar-high": "^0.6.1 || ^0.7.0 || ^0.8.0 || ^0.9.0"
  },
  "peerDependenciesMeta": {
    "@types/hast": {
      "optional": true
    },
    "highlight.js": {
      "optional": true
    },
    "lowlight": {
      "optional": true
    },
    "prosemirror-model": {
      "optional": true
    },
    "prosemirror-state": {
      "optional": true
    },
    "prosemirror-transform": {
      "optional": true
    },
    "prosemirror-view": {
      "optional": true
    },
    "refractor": {
      "optional": true
    },
    "@shikijs/types": {
      "optional": true
    },
    "sugar-high": {
      "optional": true
    }
  },
  "devDependencies": {
    "@antfu/ni": "^23.3.1",
    "@ocavue/eslint-config": "^2.12.5",
    "@types/hast": "^3.0.4",
    "@types/node": "^20.17.5",
    "eslint": "^9.19.0",
    "highlight.js": "^11.11.1",
    "jsdom": "^25.0.1",
    "lowlight": "^3.3.0",
    "pkg-pr-new": "^0.0.41",
    "prettier": "^3.5.2",
    "prosemirror-example-setup": "^1.2.3",
    "prosemirror-model": "^1.24.1",
    "prosemirror-schema-basic": "^1.2.3",
    "prosemirror-state": "^1.4.3",
    "prosemirror-transform": "^1.10.2",
    "prosemirror-view": "^1.38.0",
    "refractor": "^5.0.0",
    "shiki": "^3.2.1",
    "sugar-high": "^0.9.3",
    "tsup": "^8.4.0",
    "typescript": "^5.7.3",
    "vite": "^6.2.0",
    "vitest": "^3.0.5"
  },
  "renovate": {
    "dependencyDashboard": true,
    "extends": [
      "github>ocavue/config-renovate"
    ]
  },
  "scripts": {
    "dev": "vite",
    "build": "tsup",
    "build:playground": "vite build",
    "lint": "eslint .",
    "fix": "eslint --fix . && prettier --write .",
    "start": "esno src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./dist/index.d.ts"
      ]
    }
  }
}