{
  "name": "mq-flow",
  "version": "1.0.1",
  "description": "A lightweight, simple queue system designed for small tasks that need to be executed in a queued manner",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.js",
  "repository": {
    "url": "https://github.com/DharamSavsani/mq-flow.git"
  },
  "scripts": {
    "build": "tsup",
    "start": "node dist/index.js",
    "dev": "nodemon"
  },
  "author": "",
  "keywords": [
    "Queue",
    "MessageQueue",
    "MQ"
  ],
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^22.5.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.2.4",
    "typescript": "^5.5.4"
  }
}
