{
  "name": "@bpmnkit/canvas",
  "version": "1.0.0",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist/**/*.js",
    "dist/**/*.d.ts"
  ],
  "engines": {
    "node": ">=20"
  },
  "dependencies": {
    "@bpmnkit/core": "^1.0.0"
  },
  "description": "Zero-dependency SVG BPMN viewer with pan/zoom, theming, and a plugin API",
  "keywords": [
    "bpmn",
    "viewer",
    "svg",
    "canvas",
    "workflow",
    "typescript"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bpmnkit/monorepo"
  },
  "homepage": "https://bpmnkit.com",
  "bugs": {
    "url": "https://github.com/bpmnkit/monorepo/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "check": "biome check .",
    "test": "vitest run"
  }
}