{
  "name": "@comark/react",
  "version": "0.7.0",
  "description": "React renderer for Comark. Render Markdown with components at runtime, with streaming support for AI output. Works with Next.js and Server Components.",
  "keywords": [
    "ai",
    "comark",
    "components",
    "markdown",
    "mdc",
    "mdx",
    "nextjs",
    "react",
    "renderer",
    "streaming"
  ],
  "homepage": "https://comark.dev/rendering/react",
  "bugs": {
    "url": "https://github.com/comarkdown/comark/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/comarkdown/comark.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./plugins/*": "./dist/plugins/*.js",
    "./utils": "./dist/utils/index.js",
    "./parse": "./dist/parse.js",
    "./render": "./dist/render.js",
    "./components/*": "./dist/components/*.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "comark": "0.7.0"
  },
  "devDependencies": {
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "beautiful-mermaid": "^1.1.3",
    "katex": "^0.17.0",
    "react": "^19.0.0",
    "shiki": "^4.3.1"
  },
  "peerDependenciesMeta": {
    "shiki": {
      "optional": true
    },
    "beautiful-mermaid": {
      "optional": true
    },
    "katex": {
      "optional": true
    }
  },
  "scripts": {
    "stub": "node ../../scripts/stub.mjs",
    "build": "tsc --removeComments --declaration false && tsc --emitDeclarationOnly",
    "dev": "tsc --watch",
    "test": "vitest run",
    "release": "release-it"
  }
}