{
  "name": "mongo-locks",
  "type": "module",
  "version": "3.2.0",
  "description": "Simple and bountiful locks to avoid doing the same operation multiple times",
  "main": "./dist/commonjs/index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "prepare": "tshy"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/coyotte508/mongo-locks.git"
  },
  "keywords": [
    "mongo",
    "mongodb",
    "lock",
    "mutex",
    "multiple"
  ],
  "author": "coyotte508",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/coyotte508/mongo-locks/issues"
  },
  "homepage": "https://github.com/coyotte508/mongo-locks#readme",
  "peerDependencies": {
    "mongodb": ">=4"
  },
  "devDependencies": {
    "@types/node": "^22.12.7",
    "mongodb": "^6.5.0",
    "tshy": "^3.1.0",
    "typescript": "^5.9.0"
  },
  "files": [
    "dist",
    "src",
    "tsconfig.json"
  ],
  "tshy": {
    "exports": {
      "./package.json": "./package.json",
      ".": "./src/index.ts"
    }
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    }
  },
  "types": "./dist/commonjs/index.d.ts",
  "module": "./dist/esm/index.js"
}
