{
  "name": "@elaraai/e3-cli",
  "version": "1.0.30",
  "type": "module",
  "description": "East Execution Engine CLI - Command-line tool for managing e3 repositories and tasks",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "bin": {
    "e3": "./bin/e3.mjs"
  },
  "files": [
    "bin",
    "dist/src",
    "!dist/src/**/*.spec.*",
    "scripts/postinstall.cjs",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "east",
    "e3",
    "cli",
    "execution-engine"
  ],
  "license": "BUSL-1.1",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/elaraai/east-workspace.git",
    "directory": "libs/e3/packages/e3-cli"
  },
  "dependencies": {
    "commander": "^12.0.0",
    "esbuild": "^0.27.2",
    "@elaraai/e3-api-client": "1.0.30",
    "@elaraai/e3-core": "1.0.30",
    "@elaraai/e3": "1.0.30",
    "@elaraai/e3-types": "1.0.30"
  },
  "peerDependencies": {
    "@elaraai/east": "1.0.30"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.47.0",
    "@typescript-eslint/parser": "^8.47.0",
    "eslint": "^9.0.0",
    "eslint-plugin-headers": "^1.3.3",
    "typescript": "~5.9.2"
  },
  "scripts": {
    "build": "tsc",
    "test": "npm run build && node --enable-source-maps --test-reporter=spec --test 'dist/src/**/*.spec.js'",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "dev": "pnpm run build && node --enable-source-maps dist/src/cli.js",
    "postinstall": "node scripts/postinstall.cjs"
  }
}