{
  "name": "@soapjs/cli",
  "version": "1.7.2",
  "description": "Deterministic project and code generator for SoapJS services.",
  "homepage": "https://docs.soapjs.com",
  "repository": "https://github.com/soapjs/soap-cli",
  "bin": {
    "soap": "./build/index.js"
  },
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "license": "MIT",
  "engines": {
    "node": ">=24.17.0"
  },
  "author": "Radoslaw Kamysz <radoslaw.kamysz@gmail.com>",
  "keywords": [
    "clean",
    "architecture",
    "clean architecture",
    "api design",
    "framework",
    "code generation",
    "framework",
    "typescript",
    "microservices",
    "backend",
    "cli"
  ],
  "scripts": {
    "clean": "rm -rf ./build",
    "build": "npm run clean && tsc -b && chmod +x ./build/index.js",
    "test": "npm run build && node scripts/check-generated-imports.js",
    "prepublish": "npm run clean && tsc --project tsconfig.build.json"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.5.2",
    "change-case": "^4.1.2",
    "commander": "^10.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.0.0",
    "typescript": "^5.9.3"
  }
}
