{
  "name": "@arikajs/queue",
  "version": "0.10.19",
  "description": "Asynchronous job processing for the ArikaJS framework.",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "arikajs",
    "framework",
    "node.js",
    "typescript",
    "queue"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ArikaJs/arikajs.git",
    "directory": "packages/queue"
  },
  "bugs": {
    "url": "https://github.com/ArikaJs/arikajs/issues"
  },
  "homepage": "https://github.com/ArikaJs/arikajs/tree/main/packages/queue#readme",
  "dependencies": {
    "ioredis": "^5.9.3",
    "@arikajs/foundation": "0.10.19"
  },
  "devDependencies": {
    "@types/node": "^20.11.24",
    "tsx": "^4.7.1",
    "typescript": "^5.3.3"
  },
  "author": "Prakash Tank",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "build:tests": "tsc -p tsconfig.test.json",
    "clean": "rm -rf dist",
    "test": "npx tsx --test tests/*.test.ts",
    "test:watch": "npx tsx --test --watch tests/**/*.test.ts",
    "dev": "tsc -p tsconfig.json --watch"
  }
}