{
  "name": "@maroonedsoftware/jobbroker",
  "version": "1.9.0",
  "description": "A flexible background job processing library with support for scheduled and on-demand jobs.",
  "author": {
    "name": "Marooned Software",
    "url": "https://github.com/MaroonedSoftware/serverkit"
  },
  "bugs": {
    "url": "https://github.com/MaroonedSoftware/serverkit/issues"
  },
  "homepage": "https://github.com/MaroonedSoftware/serverkit/packages/jobbroker#readme",
  "keywords": [
    "backend",
    "jobbroker",
    "jobs",
    "scheduled",
    "pubsub",
    "queues",
    "serverkit",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MaroonedSoftware/serverkit.git"
  },
  "private": false,
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./pgboss": {
      "types": "./dist/pgboss.d.ts",
      "import": "./dist/pgboss.js"
    },
    "./package.json": "./package.json"
  },
  "license": "MIT",
  "files": [
    "dist/**"
  ],
  "dependencies": {
    "injectkit": "^1.6.0",
    "luxon": "^3.7.2",
    "@maroonedsoftware/errors": "1.8.0",
    "@maroonedsoftware/logger": "1.1.3"
  },
  "devDependencies": {
    "@types/luxon": "^3.7.2",
    "pg-boss": "^12.24.1",
    "@repo/config-eslint": "0.2.1",
    "@repo/config-typescript": "0.1.0"
  },
  "peerDependencies": {
    "pg-boss": "^12.5.4"
  },
  "peerDependenciesMeta": {
    "pg-boss": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsup src/index.ts src/pgboss.ts --format esm --sourcemap && tsc --emitDeclarationOnly --declaration",
    "build:ci": "eslint --max-warnings=0 && pnpm run build",
    "lint": "eslint --fix",
    "format": "prettier --write .",
    "test": "vitest run",
    "test:ci": "vitest run --coverage"
  }
}