{
  "name": "@huong-pv/groupmq",
  "version": "1.0.3",
  "description": "Per-group FIFO queue on Redis with visibility timeouts and retries.",
  "license": "MIT",
  "private": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "author": "OpenPanel.dev <hello@openpanel.dev> (https://openpanel.dev)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Openpanel-dev/groupmq.git"
  },
  "bugs": {
    "url": "https://github.com/Openpanel-dev/groupmq/issues"
  },
  "homepage": "https://github.com/Openpanel-dev/groupmq#readme",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown src/index.ts --format esm --format cjs --dts --sourcemap && node scripts/copy-lua.mjs",
    "prebuild": "pnpm test:lua",
    "test": "vitest run --no-file-parallelism",
    "test:lua": "node scripts/validate-lua-scripts.js",
    "test:many": "for i in {1..200}; do pnpm run test; done",
    "dev:test": "vitest --watch",
    "monitor": "jiti cli.ts",
    "benchmark": "jiti benchmark/benchmark.ts",
    "benchmark:both": "pnpm benchmark --mq both --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
    "benchmark:both:empty": "pnpm benchmark --mq both --jobs 5000 --workers 4 --job-type empty --multi-process && pnpm format:fix -- benchmark/results",
    "benchmark:groupmq": "pnpm benchmark --mq groupmq --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
    "benchmark:groupmq:dragonfly": "pnpm benchmark --db dragonfly --mq groupmq --jobs 5000 --workers 10 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
    "benchmark:bullmq": "pnpm benchmark --mq bullmq --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
    "format": "biome format .",
    "format:fix": "biome format --write",
    "format:fixall": "biome format --write .",
    "lint": "biome check .",
    "lint:fix": "biome check --write --unsafe .",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "pnpm run build"
  },
  "keywords": [
    "redis",
    "queue",
    "fifo",
    "worker",
    "node",
    "typescript"
  ],
  "dependencies": {
    "cron-parser": "^4.9.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.2.4",
    "@bull-board/api": "^6.13.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^10.3.5",
    "@semantic-release/npm": "^11.0.2",
    "@types/node": "^20.12.12",
    "@types/pidusage": "^2.0.5",
    "bullmq": "^5.58.7",
    "commander": "^14.0.1",
    "conventional-changelog-conventionalcommits": "^7",
    "ioredis": "^5.4.1",
    "jiti": "^2.5.1",
    "pidusage": "^4.0.1",
    "pino": "^9.12.0",
    "pretty-ms": "^9.3.0",
    "semantic-release": "^23.0.0",
    "tsdown": "^0.15.4",
    "typescript": "^5.6.2",
    "vitest": "^2.0.5",
    "winston": "^3.18.3"
  },
  "peerDependencies": {
    "ioredis": ">=5"
  }
}
