{
  "name": "@podlite/markdown",
  "version": "0.0.63",
  "description": "Bidirectional Markdown support for Podlite — parse .md files, embed Markdown blocks",
  "main": "./lib/index.cjs",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.esm.js",
      "require": "./lib/index.cjs",
      "default": "./lib/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "homepage": "https://podlite.org",
  "bugs": {
    "url": "https://github.com/podlite/podlite/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/podlite/podlite.git",
    "directory": "packages/podlite-markdown"
  },
  "license": "MIT",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/podlite"
  },
  "files": [
    "lib",
    "esm",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rm -rf dist lib esm tsconfig.tsbuildinfo",
    "test": "yarn g:jest  --passWithNoTests",
    "build": "run-p build:cjs  build:esm",
    "build:cjs": "ts-node ./scripts/build.ts && tsc  --declaration --emitDeclarationOnly",
    "build:esm": "ts-node ./scripts/build_esm.ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "react": "^16.0.0 || ^17.0.0 || ^18",
    "react-dom": "^16.0.0 || ^17.0.0 || ^18"
  },
  "keywords": [
    "podlite",
    "markdown",
    "markdown-parser",
    "parser",
    "markup-language",
    "converter",
    "bidirectional",
    "markdown-to-ast",
    "markup",
    "compatibility"
  ],
  "dependencies": {
    "@podlite/schema": "0.0.70",
    "react": "^16.0.0 || ^17.0.0 || ^18",
    "react-dom": "^16.0.0 || ^17.0.0 || ^18",
    "react-is": "^18.0.0",
    "remark-gfm": "^3.0.1",
    "remark-math": "5.1.1",
    "remark-parse": "^10.0.1",
    "unified": "10.1.2"
  },
  "devDependencies": {
    "esbuild": "^0.15.16",
    "npm-run-all": "^4.1.5"
  },
  "module": "./lib/index.esm.js",
  "types": "./lib/index.d.ts"
}