{
  "name": "chromancer",
  "version": "2.25.1",
  "description": "A powerful command-line interface for automating Chrome browser using Playwright. Perfect for web scraping, automation, testing, and browser workflows.",
  "main": "dist/index.js",
  "bin": {
    "chromancer": "./bin/run.js"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "prepack": "npm run clean && npm run build",
    "test": "node test/unit-tests.js",
    "test:vitest": "vitest",
    "test:vitest:ui": "vitest --ui",
    "test:vitest:run": "vitest run",
    "test:server": "node test/test-server.js",
    "prepublishOnly": "npm run clean && npm run build && npm test"
  },
  "keywords": [
    "chrome",
    "chromium",
    "devtools",
    "cdp",
    "automation",
    "scraping",
    "browser",
    "cli",
    "playwright",
    "testing",
    "web-automation"
  ],
  "author": "John Lindquist",
  "license": "MIT",
  "homepage": "https://github.com/johnlindquist/chromancer#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/johnlindquist/chromancer.git"
  },
  "bugs": {
    "url": "https://github.com/johnlindquist/chromancer/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@anthropic-ai/claude-code": "^1.0.22",
    "@anthropic-ai/sdk": "^0.54.0",
    "@oclif/core": "^4.3.1",
    "@oclif/plugin-help": "^6.2.28",
    "@types/inquirer": "^8.2.11",
    "@types/node": "^22.15.29",
    "chalk": "^5.4.1",
    "clipboardy": "^2.3.0",
    "inquirer": "^9.1.0",
    "inquirer-autocomplete-prompt": "^3.0.1",
    "oclif": "^4.18.0",
    "ora": "^8.2.0",
    "playwright": "^1.52.0",
    "typescript": "^5.8.3",
    "uuid": "^11.1.0",
    "yaml": "^2.8.0"
  },
  "oclif": {
    "bin": "chromancer",
    "dirname": "chromancer",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ]
  },
  "files": [
    "/bin",
    "/dist",
    "/oclif.manifest.json"
  ],
  "devDependencies": {
    "@semantic-release/commit-analyzer": "^11.1.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^9.2.6",
    "@semantic-release/npm": "^11.0.3",
    "@semantic-release/release-notes-generator": "^12.1.0",
    "@types/uuid": "^10.0.0",
    "@vitest/ui": "^3.2.3",
    "conventional-changelog-conventionalcommits": "^9.0.0",
    "express": "^5.1.0",
    "serve-static": "^2.2.0",
    "vitest": "^3.2.3"
  }
}
