{
  "name": "@cappa/cli",
  "version": "0.11.1",
  "description": "Command line interface for Cappa",
  "author": "Tim Richter",
  "license": "MIT",
  "keywords": [
    "screenshot",
    "cli"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/tim-richter/cappa.git"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "bin",
    "package.json",
    "README.md"
  ],
  "bin": {
    "cappa": "./bin/cappa.cjs"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "15.0.0",
    "jiti": "2.7.0",
    "picocolors": "1.1.1",
    "ts-node": "10.9.2",
    "@cappa/core": "0.12.4",
    "@cappa/logger": "0.0.11",
    "@cappa/server": "0.8.6"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "0.18.5",
    "@types/node": "25.9.3",
    "@vitest/coverage-v8": "4.1.10",
    "@vitest/ui": "4.1.10",
    "tsdown": "0.22.8",
    "typescript": "6.0.3",
    "vitest": "4.1.10"
  },
  "scripts": {
    "test": "vitest",
    "test:run": "vitest --run",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "screenshot": "node src/index.ts",
    "build": "tsdown",
    "tsc": "tsc",
    "attw": "attw --pack --profile node16 ."
  }
}