{
  "name": "ccanywhere",
  "version": "0.1.17",
  "description": "Claude Code Anywhere - A TypeScript CI/CD tool for mobile-friendly development workflows",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "ccanywhere": "dist/cli/index.js"
  },
  "keywords": [
    "ci-cd",
    "typescript",
    "claude-code",
    "diff",
    "deployment",
    "testing",
    "notifications",
    "mobile-friendly"
  ],
  "author": "CCanywhere Team",
  "license": "MIT",
  "homepage": "https://github.com/mylukin/ccanywhere#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/mylukin/ccanywhere.git"
  },
  "bugs": {
    "url": "https://github.com/mylukin/ccanywhere/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/**/*",
    "scripts/**/*",
    "templates/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "rm -rf tsconfig.tsbuildinfo && tsc && chmod +x dist/cli/index.js",
    "dev": "tsx watch src/cli/index.ts",
    "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
    "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
    "test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build && npm run test",
    "postinstall": "node scripts/postinstall-wrapper.cjs"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.883.0",
    "@types/ali-oss": "^6.16.11",
    "ali-oss": "^6.23.0",
    "axios": "^1.6.2",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.3",
    "commander": "^11.1.0",
    "cron": "^3.1.6",
    "diff2html": "^3.4.47",
    "execa": "^8.0.1",
    "fs-extra": "^11.2.0",
    "glob": "^10.3.10",
    "inquirer": "^9.2.12",
    "mime-types": "^2.1.35",
    "node-telegram-bot-api": "^0.66.0",
    "nodemailer": "^6.9.7",
    "ora": "^7.0.1",
    "winston": "^3.11.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/jest": "^29.5.8",
    "@types/mime-types": "^2.1.4",
    "@types/node": "^20.10.5",
    "@types/nodemailer": "^6.4.14",
    "@typescript-eslint/eslint-plugin": "^6.14.0",
    "@typescript-eslint/parser": "^6.14.0",
    "eslint": "^8.55.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.0.1",
    "jest": "^29.7.0",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "tsx": "^4.6.2",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "@playwright/test": ">=1.40.0"
  },
  "peerDependenciesMeta": {
    "@playwright/test": {
      "optional": true
    }
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "import": "./dist/config/index.js",
      "require": "./dist/config/index.js"
    },
    "./hooks": {
      "types": "./dist/hooks/index.d.ts",
      "import": "./dist/hooks/index.js",
      "require": "./dist/hooks/index.js"
    }
  }
}
