{
  "name": "@comark/ansi",
  "version": "0.7.0",
  "description": "ANSI terminal renderer for Comark. Render Markdown with components as styled terminal output for CLIs.",
  "keywords": [
    "ansi",
    "cli",
    "comark",
    "components",
    "markdown",
    "mdc",
    "renderer",
    "streaming",
    "terminal"
  ],
  "homepage": "https://comark.dev/rendering/ansi",
  "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"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "comark": "0.7.0"
  },
  "devDependencies": {
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "beautiful-mermaid": ">=1.0",
    "katex": ">=0.16",
    "shiki": "^4.3.1"
  },
  "peerDependenciesMeta": {
    "katex": {
      "optional": true
    },
    "beautiful-mermaid": {
      "optional": true
    },
    "shiki": {
      "optional": true
    }
  },
  "scripts": {
    "stub": "node ../../scripts/stub.mjs",
    "build": "tsc --removeComments --declaration false && tsc --emitDeclarationOnly",
    "dev": "tsc --watch",
    "test": "vitest run",
    "release": "release-it"
  }
}