{
  "name": "@gulibs/safe-coder-cli",
  "version": "0.0.3",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "description": "Standalone CLI tool for documentation crawling with SPA support, error detection, and code validation",
  "main": "dist/cli/index.js",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/cli/index.ts",
    "start": "node dist/cli/index.js",
    "cli": "node dist/cli/index.js",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "lint": "eslint src --ext .ts",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "bin": {
    "safe-coder-cli": "dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "documentation",
    "crawler",
    "spa",
    "puppeteer",
    "playwright",
    "error-detection",
    "code-validation",
    "cli"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@typescript-eslint/typescript-estree": "^8.48.0",
    "axios": "^1.13.2",
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "eslint": "^8.57.1",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-security": "^3.0.1",
    "http-proxy-agent": "^7.0.2",
    "https-proxy-agent": "^7.0.6",
    "inquirer": "^9.2.0",
    "ora": "^8.0.1",
    "playwright-core": "^1.42.0",
    "puppeteer-core": "^22.0.0"
  },
  "devDependencies": {
    "@types/eslint": "^9.6.1",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "tsx": "^4.0.0",
    "typescript": "^5.9.3",
    "vitest": "^1.0.0"
  }
}