{
  "name": "@debugg-ai/cli",
  "version": "1.1.0",
  "description": "CLI tool for running DebuggAI tests in CI/CD environments",
  "main": "dist/index.js",
  "bin": {
    "debugg-ai": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && mkdir -p dist/services/ngrok && cp src/services/ngrok/ngrok-config.yml dist/services/ngrok/",
    "dev": "tsc --watch",
    "prepublishOnly": "npm run build",
    "test": "jest",
    "test:integration": "jest --testPathPattern=integration --testPathIgnorePatterns='integration-config|setup' --setupFilesAfterEnv='<rootDir>/src/__tests__/integration/setup.ts' --detectOpenHandles --forceExit --testTimeout=180000",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix"
  },
  "keywords": [
    "debugg-ai",
    "testing",
    "e2e",
    "ci",
    "github-actions",
    "cli"
  ],
  "author": "DebuggAI",
  "license": "MIT",
  "dependencies": {
    "@types/uuid": "^10.0.0",
    "axios": "^1.11.0",
    "chalk": "^4.1.2",
    "commander": "^11.0.0",
    "dotenv": "^16.3.0",
    "fs-extra": "^11.1.1",
    "mkdirp": "^3.0.1",
    "ngrok": "^5.0.0-beta.2",
    "ora": "^5.4.1",
    "posthog-node": "^5.8.1",
    "simple-git": "^3.19.0",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.1",
    "@types/jest": "^29.0.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.0.0",
    "jest": "^29.0.0",
    "ts-jest": "^29.0.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/debugg-ai/debugg-ai-cli.git",
    "directory": "debugg-ai-cli"
  },
  "bugs": {
    "url": "https://github.com/debugg-ai/debugg-ai-cli/issues"
  },
  "homepage": "https://debugg.ai"
}
