{
  "name": "mongomq2",
  "version": "1.4.2",
  "description": "A general-purpose message and event queuing library for MongoDB",
  "keywords": [
    "mongodb",
    "message",
    "messaging",
    "queue",
    "event",
    "stream"
  ],
  "homepage": "https://github.com/morris/mongomq2",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/morris/mongomq2.git"
  },
  "bugs": {
    "url": "https://github.com/morris/mongomq2/issues"
  },
  "contributors": [
    "Morris Brodersen <mb@morrisbrodersen.de> (https://morrisbrodersen.de)"
  ],
  "license": "ISC",
  "engines": {
    "node": ">=18"
  },
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "format": "prettier --write .",
    "format-check": "prettier --check .",
    "lint": "eslint .",
    "test": "c8 --reporter text --reporter lcov node --import tsx --test test/*.test.ts test/*/*.test.ts",
    "build": "tsc --project tsconfig.build.json",
    "clean": "rm -rf coverage dist",
    "docs": "typedoc src/index.ts --excludeProtected --excludePrivate"
  },
  "peerDependencies": {
    "mongodb": ">=4"
  },
  "dependencies": {
    "mingo": "^7.1.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^18.17.15",
    "c8": "^12.0.0",
    "eslint": "^10.2.0",
    "mongodb": "^7.0.0",
    "prettier": "^3.0.3",
    "tsx": "^4.16.2",
    "typedoc": "^0.28.5",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.18.2"
  }
}
