{
  "name": "awaitly-visualizer",
  "version": "36.0.0",
  "type": "module",
  "description": "Visualization and rendering for awaitly workflows - Mermaid diagrams, ASCII art, HTML, and more",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/index.browser.d.ts",
        "import": "./dist/index.browser.js"
      },
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./kroki-fetch": {
      "types": "./dist/kroki/fetch.d.ts",
      "import": "./dist/kroki/fetch.js",
      "require": "./dist/kroki/fetch.cjs"
    },
    "./notifiers/slack": {
      "types": "./dist/notifiers/slack.d.ts",
      "import": "./dist/notifiers/slack.js",
      "require": "./dist/notifiers/slack.cjs"
    },
    "./notifiers/discord": {
      "types": "./dist/notifiers/discord.d.ts",
      "import": "./dist/notifiers/discord.js",
      "require": "./dist/notifiers/discord.cjs"
    },
    "./notifiers/webhook": {
      "types": "./dist/notifiers/webhook.d.ts",
      "import": "./dist/notifiers/webhook.js",
      "require": "./dist/notifiers/webhook.cjs"
    },
    "./devtools": {
      "browser": {
        "types": "./dist/devtools.d.ts",
        "import": "./dist/devtools.js"
      },
      "types": "./dist/devtools.d.ts",
      "import": "./dist/devtools.js",
      "require": "./dist/devtools.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "awaitly",
    "workflow",
    "visualization",
    "mermaid",
    "ascii",
    "diagram",
    "kroki",
    "slack",
    "discord",
    "webhook",
    "notifier"
  ],
  "author": "Jag Reehal <jag@jagreehal.com>",
  "homepage": "https://github.com/jagreehal/awaitly#readme",
  "bugs": {
    "url": "https://github.com/jagreehal/awaitly/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jagreehal/awaitly.git"
  },
  "license": "MIT",
  "peerDependencies": {
    "awaitly": "^6.2.0"
  },
  "dependencies": {
    "pako": "2.1.0"
  },
  "optionalDependencies": {
    "@slack/web-api": "7.18.0"
  },
  "devDependencies": {
    "@total-typescript/ts-reset": "0.6.1",
    "@total-typescript/tsconfig": "1.0.4",
    "@types/node": "25.9.3",
    "@types/pako": "2.0.4",
    "jsdom": "29.1.1",
    "mermaid": "11.16.0",
    "tsup": "8.5.1",
    "typescript": "5.9.3",
    "vitest": "4.1.10",
    "awaitly": "^6.2.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsup",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "lint": "eslint .",
    "clean": "rm -rf dist",
    "quality": "pnpm type-check && pnpm test && pnpm lint"
  }
}