{
  "name": "camou",
  "version": "0.9.2",
  "description": "CLI and local daemon for driving Camoufox through Playwright",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/txchen/camoucli.git"
  },
  "homepage": "https://github.com/txchen/camoucli#readme",
  "bugs": {
    "url": "https://github.com/txchen/camoucli/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "camou": "dist/cli/main.js",
    "camou-daemon": "dist/daemon/main.js"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE*"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "clean": "rm -rf dist",
    "compatibility:matrix": "node scripts/generate-compatibility-matrix.mjs",
    "compatibility:report": "node scripts/run-compatibility-report.mjs",
    "dev": "tsx src/cli/main.ts",
    "dev:daemon": "tsx src/daemon/main.ts",
    "prepack": "npm run build",
    "test": "vitest run",
    "test:integration": "vitest run tests/*.integration.test.ts",
    "test:watch": "vitest"
  },
  "keywords": [
    "camoufox",
    "playwright",
    "firefox",
    "cli",
    "browser-automation"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "commander": "^14.0.0",
    "extract-zip": "^2.0.1",
    "playwright-core": "1.51.1",
    "zod": "^3.25.0"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "tsx": "^4.19.0",
    "typescript": "^5.8.0",
    "vitest": "^3.1.0"
  }
}
