{
  "name": "@imqueue/cli",
  "version": "5.2.2",
  "description": "Command line interface for @imqueue - scaffold Redis-RPC microservices, generate typed clients, and manage a local service fleet",
  "keywords": [
    "command-line-tool",
    "cli",
    "imqueue",
    "scaffolding",
    "code-generation",
    "microservices",
    "typescript",
    "rpc-client",
    "rpc-service",
    "rpc",
    "rad",
    "message-queue",
    "redis-queue"
  ],
  "scripts": {
    "prepare": "npm run build",
    "postpublish": "gh api -X POST repos/imqueue/imqueue.com/dispatches -f event_type=cli-released >/dev/null 2>&1 && echo '→ notified imqueue.com to refresh the CLI User Guide' || echo 'note: could not notify imqueue.com (is gh installed & authed?) — trigger manually: gh api -X POST repos/imqueue/imqueue.com/dispatches -f event_type=cli-released'",
    "build": "npm run clean-compiled && tsc",
    "postbuild": "chmod +x index.js",
    "lint": "oxlint",
    "format": "oxfmt \"index.ts\" \"lib/**/*.ts\" \"src/**/*.ts\" \"test/**/*.ts\"",
    "format:check": "oxfmt --check \"index.ts\" \"lib/**/*.ts\" \"src/**/*.ts\" \"test/**/*.ts\"",
    "test": "npm run build && node --experimental-test-module-mocks --import ./test/mocks/index.js --test --test-timeout=30000 $(find test -name '*.spec.js')",
    "test-coverage": "npm run build && node --experimental-test-module-mocks --enable-source-maps --import ./test/mocks/index.js --test --experimental-test-coverage --test-timeout=30000 $(find test -name '*.spec.js')",
    "test-lcov": "npm run build && mkdir -p coverage && node --experimental-test-module-mocks --enable-source-maps --import ./test/mocks/index.js --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test-timeout=30000 $(find test -name '*.spec.js'); node scripts/strip-comment-coverage.mjs coverage/lcov.info",
    "clean-typedefs": "find . -name '*.d.ts' -not -wholename '*node_modules*' -type f -delete",
    "clean-maps": "find . -name '*.js.map' -not -wholename '*node_modules*' -type f -delete",
    "clean-js": "find . -name '*.js' -not -wholename '*node_modules*' -not -wholename '*scripts*' -not -wholename '*bin*' -type f -delete",
    "clean-compiled": "npm run clean-js && npm run clean-typedefs && npm run clean-maps",
    "clean-tests": "rm -rf .nyc_output coverage",
    "clean": "npm run clean-tests && npm run clean-compiled"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/imqueue/cli.git"
  },
  "bugs": {
    "url": "https://github.com/imqueue/cli/issues"
  },
  "homepage": "https://imqueue.org/",
  "funding": "https://imqueue.com/",
  "author": "imqueue.com <support@imqueue.com> (https://imqueue.com)",
  "license": "GPL-3.0-only",
  "dependencies": {
    "@imqueue/rpc": "^3.7.2",
    "inquirer": "^8.2.6",
    "inquirer-autocomplete-prompt": "^1.4.0",
    "libsodium-wrappers": "^0.8.4",
    "semver": "^7.7.2",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@types/inquirer": "^8.2.12",
    "@types/inquirer-autocomplete-prompt": "^1.3.5",
    "@types/libsodium-wrappers": "^0.7.14",
    "@types/node": "^24.9.1",
    "@types/semver": "^7.7.0",
    "@types/yargs": "^17.0.33",
    "oxfmt": "0.57.0",
    "oxlint": "1.72.0",
    "typescript": "^7.0.2"
  },
  "main": "index.js",
  "bin": {
    "imq": "index.js"
  },
  "typescript": {
    "definitions": "index.d.ts"
  },
  "type": "module",
  "types": "index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    },
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=22.12.0"
  }
}
