{
  "name": "bpmn-js-markdown-documentation-panel",
  "version": "0.1.0",
  "description": "A comprehensive documentation management plugin for Camunda Modeler with markdown support, element linking, and coverage tracking",
  "type": "module",
  "main": "dist/bpmn-js-entry.js",
  "types": "dist/bpmn-js-entry.d.ts",
  "exports": {
    ".": {
      "types": "./dist/bpmn-js-entry.d.ts",
      "import": "./dist/bpmn-js-entry.js"
    },
    "./dist/style.css": "./dist/style.css"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Gawdfrey/bpmn-js-markdown-documentation-panel.git"
  },
  "keywords": [
    "bpmn",
    "camunda",
    "modeler",
    "plugin",
    "documentation",
    "markdown",
    "process-documentation",
    "bpmn-documentation",
    "workflow-documentation",
    "business-process"
  ],
  "author": "Rein Undheim",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^24.0.10",
    "@vitest/browser": "^2.1.8",
    "@vitest/ui": "^2.1.8",
    "bpmn-js": "^13.2.2",
    "camunda-modeler-plugin-helpers": "^5.0.0",
    "concurrently": "^8.2.2",
    "playwright": "^1.49.1",
    "rolldown": "1.0.0-beta.24",
    "sonda": "^0.8.2",
    "typescript": "^5.8.3",
    "vitest": "^2.1.8"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "marked": "^16.0.0"
  },
  "scripts": {
    "all": "pnpm run build && pnpm run build-types",
    "bundle": "rolldown -c rolldown.config.ts",
    "dev": "concurrently \"rolldown -c rolldown.config.ts --watch\" \"tsc -p tsconfig.app.json --watch\"",
    "build": "NODE_ENV=production rolldown -c rolldown.config.ts",
    "build-types": "tsc -p tsconfig.app.json",
    "analyze": "node scripts/analyze-bundle.js",
    "build-analyze": "pnpm run build && pnpm run analyze",
    "type-check": "tsc -b",
    "start": "rolldown -c rolldown.config.ts --watch",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:browser": "vitest --browser"
  }
}