{
  "name": "@markdoc/markdoc",
  "author": "Ryan Paul",
  "version": "0.5.7",
  "description": "A text markup language for documentation",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "index.ts",
    "**/*.d.ts",
    "src",
    "dist"
  ],
  "sideEffects": false,
  "license": "MIT",
  "scripts": {
    "test": "node -r ts-eager/register ./node_modules/.bin/jasmine",
    "marktest": "node -r ts-eager/register ${INSPECT:+--inspect-brk} spec/marktest/index.ts spec/marktest/tests.yaml",
    "prebuild": "npx patch-package",
    "build": "npm run build:common && npm run build:types",
    "build:common": "node build.js",
    "build:types": "tsc --emitDeclarationOnly --outDir dist",
    "lint": "eslint .",
    "grammar": "pegjs -o src/grammar/tag.js src/grammar/tag.pegjs",
    "postgrammar": "prettier --write src/grammar/tag.js",
    "prettier": "prettier --write index.ts src spec",
    "prettier:check": "prettier --check index.ts src spec",
    "type:check": "tsc --noEmit",
    "typedoc": "typedoc index.ts --includeVersion --readme none --excludePrivate --excludeExternals --excludeInternal --sort source-order --out types"
  },
  "engines": {
    "node": ">=14.7.0"
  },
  "optionalDependencies": {
    "@types/markdown-it": "12.2.3",
    "@types/linkify-it": "^3.0.1"
  },
  "peerDependencies": {
    "@types/react": "*",
    "react": "*"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/jasmine": "^5.0.0",
    "@types/node": "^18.0.0",
    "@types/react": "^17.0.0",
    "@eslint/js": "^9.0.0",
    "deep-assert": "0.3.0",
    "diff": "^4.0.4",
    "esbuild": "0.25.0",
    "eslint": "10.1.0",
    "globals": "^16.0.0",
    "jasmine": "5.13.0",
    "jest-diff": "^28.1.3",
    "markdown-it": "12.3.2",
    "patch-package": "^8.0.0",
    "pegjs": "0.11.0-master.b7b87ea",
    "prettier": "^2.5.1",
    "typescript-eslint": "^8.0.0",
    "ts-eager": "2.0.2",
    "typedoc": "0.28.18",
    "typescript": "^5.0.0",
    "yaml-js": "^0.2.3"
  },
  "overrides": {
    "ts-eager": {
      "esbuild": "0.25.0"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/markdoc/markdoc.git"
  },
  "bugs": {
    "url": "https://github.com/markdoc/markdoc/issues"
  },
  "homepage": "https://markdoc.dev"
}
