{
  "name": "@kitschpatrol/tldraw-cli",
  "version": "5.0.16",
  "description": "A CLI tool and TypeScript library for exporting tldraw sketches to PNG or SVG images.",
  "keywords": [
    "tldraw",
    "tldr",
    "cli",
    "diagram",
    "drawing",
    "sketch",
    "export",
    "npm-package"
  ],
  "homepage": "https://github.com/kitschpatrol/tldraw-cli",
  "bugs": "https://github.com/kitschpatrol/tldraw-cli/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kitschpatrol/tldraw-cli.git"
  },
  "license": "MIT",
  "author": {
    "name": "Eric Mika",
    "email": "eric@ericmika.com",
    "url": "https://ericmika.com"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/lib/index.d.ts",
      "import": "./dist/lib/index.js"
    }
  },
  "main": "./dist/lib/index.js",
  "module": "./dist/lib/index.js",
  "types": "./dist/lib/index.d.ts",
  "bin": {
    "tldraw": "dist/bin/cli.js",
    "tldraw-cli": "dist/bin/cli.js"
  },
  "files": [
    "dist/*"
  ],
  "dependencies": {
    "@hono/node-server": "^1.19.14",
    "@sindresorhus/slugify": "^3.0.0",
    "@types/node": "^25.6.0",
    "cheerio": "^1.2.0",
    "get-port": "^7.2.0",
    "hono": "^4.12.14",
    "nanoid": "^5.1.9",
    "natural-orderby": "^5.0.0",
    "open": "^11.0.0",
    "path-type": "^6.0.0",
    "picocolors": "^1.1.1",
    "plur": "^6.0.0",
    "pretty-ms": "^9.3.0",
    "puppeteer": "^24.42.0",
    "uint8array-extras": "^1.5.0",
    "untildify": "^6.0.0",
    "yargs": "^18.0.0"
  },
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.2",
    "@blazediff/vitest": "^1.1.12",
    "@fontsource/inter": "^5.2.8",
    "@kitschpatrol/shared-config": "^7.5.0",
    "@tldraw/assets": "^4.5.10",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@types/yargs": "^17.0.35",
    "@vitejs/plugin-react": "^6.0.1",
    "bumpp": "^11.0.1",
    "esbuild": "^0.28.0",
    "mdat-plugin-cli-help": "^3.0.0",
    "node-addon-api": "^8.7.0",
    "node-gyp": "^12.3.0",
    "publint": "^0.3.18",
    "react": "^19.2.5",
    "react-dom": "^19.2.5",
    "rolldown": "1.0.0-rc.10",
    "safe-stable-stringify": "^2.5.0",
    "shx": "^0.4.0",
    "strip-ansi": "^7.2.0",
    "tldraw": "^4.5.10",
    "tsdown": "^0.21.10",
    "tsx": "^4.21.0",
    "typescript": "~5.9.3",
    "vite": "^8.0.10",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "devEngines": {
    "runtime": {
      "name": "node",
      "version": ">=22.18.0"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm build:tldraw && pnpm build:src",
    "build:src": "tsdown",
    "build:tldraw": "pnpm tldraw:copy-assets && vite build",
    "clean": "shx rm -f pnpm-lock.yaml && git clean -fdX -e !.claude/",
    "dev": "pnpm dev:tldraw",
    "dev:tldraw": "pnpm tldraw:copy-assets && vite",
    "fix": "ksc fix",
    "lint": "ksc lint",
    "preview": "pnpm preview:tldraw",
    "preview:tldraw": "vite preview",
    "release": "bumpp --commit 'Release: %s' && pnpm build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish",
    "test": "vitest run",
    "test:watch": "pnpm build && vitest",
    "tldraw:copy-assets": "pnpm tsx ./scripts/copy-assets.ts"
  }
}