{
  "name": "react-codemirror-runmode",
  "version": "2.4.0",
  "description": "Syntax highlighting for react, utilizing CodeMirror's parser",
  "keywords": [
    "codemirror",
    "highlight",
    "react",
    "syntax"
  ],
  "license": "MIT",
  "author": "Takuya Matsuyama <hi@craftz.dog>",
  "repository": {
    "type": "git",
    "url": "https://github.com/craftzdog/react-codemirror-runmode.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@codemirror/lang-markdown": "^6.5.1",
    "@codemirror/language": "^6.12.4",
    "@codemirror/language-data": "^6.5.2",
    "@lezer/common": "^1.5.2",
    "@lezer/highlight": "^1.2.3"
  },
  "devDependencies": {
    "@codemirror/theme-one-dark": "^6.1.3",
    "@testing-library/react": "^16.3.2",
    "@types/node": "^26.1.1",
    "@types/react": "^19.2.17",
    "@vitejs/plugin-react": "^6.0.4",
    "jsdom": "^29.1.1",
    "npm-run-all": "^4.1.5",
    "oxfmt": "0.60.0",
    "oxlint": "1.75.0",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "typescript": "^7.0.2",
    "vite": "^8.1.5",
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "react": ">= 18"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "test": "vitest --run",
    "bench": "vitest bench --run",
    "lint": "oxlint",
    "typecheck": "tsc --noEmit",
    "format": "oxfmt",
    "format:check": "oxfmt --check"
  }
}