{
  "name": "kafka-console",
  "version": "3.1.55",
  "description": "Kafka CLI tool",
  "type": "module",
  "bin": {
    "kcli": "build/cli.js",
    "kafka-console": "build/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/3axap4eHko/kafka-console.git"
  },
  "keywords": [
    "kafka",
    "cli",
    "commands",
    "sasl",
    "consumer",
    "producer"
  ],
  "author": "Ivan Zakharchanka",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/3axap4eHko/kafka-console/issues"
  },
  "homepage": "https://github.com/3axap4eHko/kafka-console#readme",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/debug": "^4.1.13",
    "@types/node": "^25.9.5",
    "@vitest/coverage-v8": "^4.1.11",
    "eslint": "^10.9.1",
    "eslint-plugin-prettier": "^5.5.6",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.68.0",
    "vitest": "^4.1.11"
  },
  "dependencies": {
    "@platformatic/kafka": "^1.34.0",
    "commander": "^14.0.3"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:cov": "COVERAGE=1 vitest run",
    "test:e2e": "vitest run --config vitest.config.e2e.ts",
    "lint": "eslint .",
    "kcli": "node --experimental-transform-types --disable-warning=ExperimentalWarning src/index.ts"
  }
}