{
  "name": "@chriscdn/promise-semaphore",
  "version": "4.0.0",
  "description": "Limit or throttle the simultaneous execution of asynchronous code in separate iterations of the event loop.",
  "repository": "https://github.com/chriscdn/promise-semaphore",
  "author": "Christopher Meyer <chris@schwiiz.org>",
  "license": "MIT",
  "type": "module",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "exports": "./lib/index.js",
  "scripts": {
    "build": "tsup",
    "watch": "yarn build --watch",
    "test": "vitest"
  },
  "devDependencies": {
    "@tsconfig/strictest": "^2.0.8",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.8"
  },
  "files": [
    "lib"
  ],
  "keywords": [
    "promise",
    "semaphore",
    "lock",
    "mutex",
    "async",
    "throttle"
  ]
}
