{
  "name": "@kitschpatrol/vite-plugin-tldraw",
  "version": "6.0.0",
  "description": "Vite plugin enabling module-like import of local tldraw .tldr files with automatic conversion to SVG or PNG.",
  "keywords": [
    "vite-plugin",
    "tldraw",
    "tldr",
    "vite",
    "diagram",
    "drawing",
    "sketch",
    "whiteboard",
    "import",
    "npm-package"
  ],
  "homepage": "https://github.com/kitschpatrol/vite-plugin-tldraw",
  "bugs": "https://github.com/kitschpatrol/vite-plugin-tldraw/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kitschpatrol/vite-plugin-tldraw.git"
  },
  "license": "MIT",
  "author": {
    "name": "Eric Mika",
    "email": "eric@ericmika.com",
    "url": "https://ericmika.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client.d.ts"
    },
    "./ext": {
      "types": "./dist/client.d.ts"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@kitschpatrol/tldraw-cli": "^6.0.0",
    "@sindresorhus/slugify": "^3.0.0",
    "image-size": "^2.0.2",
    "nanoid": "^5.1.11",
    "path-type": "^6.0.0",
    "pretty-bytes": "^7.1.0",
    "pretty-ms": "^9.3.0"
  },
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.3",
    "@kitschpatrol/shared-config": "^7.6.3",
    "@types/node": "~22.19.19",
    "@vitest/browser-playwright": "^4.1.7",
    "bumpp": "^11.1.0",
    "playwright": "^1.60.0",
    "publint": "^0.3.21",
    "rimraf": "^6.1.3",
    "shx": "^0.4.0",
    "tsdown": "^0.22.1",
    "typescript": "~5.9.3",
    "vite": "^8.0.14",
    "vitest": "^4.1.7"
  },
  "peerDependencies": {
    "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0  || ^8.0.0"
  },
  "engines": {
    "node": ">=22.22.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown",
    "clean": "shx rm -f pnpm-lock.yaml && git clean -fdX -e !.claude/",
    "clear-cache": "rimraf node_modules/.vite/tldr",
    "fix": "ksc fix",
    "lint": "ksc lint",
    "release": "bumpp --commit 'Release: %s' && pnpm build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') pnpm publish",
    "test": "vitest run"
  }
}