{
  "name": "@markdy/cli",
  "version": "1.5.0",
  "description": "First-party CLI for diagram-native MarkdyScript diagrams: lint, format, explain, render, and preview.",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "markdy": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "keywords": [
    "markdy",
    "cli",
    "diagram-native",
    "diagram-as-code",
    "architecture-diagram",
    "dsl"
  ],
  "author": "Hoang Yell <hoangyell@gmail.com> (https://hoangyell.com)",
  "homepage": "https://markdy.com",
  "repository": {
    "type": "git",
    "url": "https://github.com/HoangYell/markdy-com.git",
    "directory": "packages/cli"
  },
  "bugs": {
    "url": "https://github.com/HoangYell/markdy-com/issues"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "dependencies": {
    "mdast-util-from-markdown": "^2.0.3",
    "unist-util-visit": "^5.0.0",
    "@markdy/compat": "1.5.0",
    "@markdy/core": "1.5.0",
    "@markdy/renderer-dom": "1.5.0",
    "@markdy/stdlib-systems": "1.5.0"
  },
  "devDependencies": {
    "@types/node": "^25.9.5",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.7"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit"
  }
}