{
  "name": "@agendajs/postgres-backend",
  "version": "3.0.6",
  "description": "PostgreSQL backend for Agenda job scheduler with LISTEN/NOTIFY support",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/agenda/agenda"
  },
  "keywords": [
    "agenda",
    "job",
    "scheduler",
    "postgresql",
    "postgres",
    "pg",
    "listen",
    "notify"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/agenda/agenda/issues"
  },
  "dependencies": {
    "debug": "^4.4.3",
    "pg": "^8.20.0"
  },
  "peerDependencies": {
    "agenda": "6.2.6"
  },
  "devDependencies": {
    "@types/debug": "^4.1.13",
    "@types/node": "^22.19.18",
    "@types/pg": "^8.20.0",
    "@vitest/coverage-v8": "^3.2.4",
    "tsx": "^4.21.0",
    "vitest": "^3.2.4",
    "agenda": "6.2.6"
  },
  "scripts": {
    "build": "tsc -b",
    "typecheck": "tsc -b && tsc -p tsconfig.test.json",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:debug": "DEBUG=agenda:**,-agenda:internal:** vitest run",
    "test:postgres": "POSTGRES_TEST_URL=postgresql://agenda:agenda@localhost:5432/agenda_test vitest run",
    "test:postgres:watch": "POSTGRES_TEST_URL=postgresql://agenda:agenda@localhost:5432/agenda_test vitest",
    "docker:up": "docker compose up -d --wait",
    "docker:down": "docker compose down",
    "docker:logs": "docker compose logs -f",
    "test:docker": "npm run docker:up && npm run test:postgres; npm run docker:down"
  }
}