{
  "name": "wakaq",
  "version": "2.2.2",
  "description": "Background task queue for Node backed by Redis, a super minimal Celery",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "/dist"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "prepare": "npm run build",
    "release:major": "npm version major && npm publish && git push && git push --tags",
    "release:minor": "npm version minor && npm publish && git push && git push --tags",
    "release:patch": "npm version patch && npm publish && git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wakatime/wakaq-ts.git"
  },
  "keywords": [
    "redis",
    "queue",
    "async",
    "worker",
    "celery",
    "task-queue",
    "rq"
  ],
  "author": "Alan Hamlett",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/wakatime/wakaq-ts/issues"
  },
  "homepage": "https://github.com/wakatime/wakaq-ts#readme",
  "engines": {
    "node": ">=12"
  },
  "devDependencies": {
    "@types/eslint": "^8.44.7",
    "@types/node": "^20.9.2",
    "@types/pidusage": "^2.0.5",
    "@types/prettier": "^2.7.3",
    "@typescript-eslint/eslint-plugin": "6.11.0",
    "@typescript-eslint/parser": "6.11.0",
    "eslint": "^8.54.0",
    "prettier": "^3.1.0",
    "typescript": "^5.2.2"
  },
  "dependencies": {
    "cron-parser": "^4.9.0",
    "ioredis": "^5.3.2",
    "pidusage": "^3.0.2",
    "ts-duration": "^1.1.0",
    "winston": "^3.11.0"
  }
}
