{
  "name": "@eienjs/adonisjs-jobs",
  "type": "module",
  "version": "0.4.0",
  "description": "Job and scheduler processing for AdonisJS v6",
  "author": "Fernando Isidro <luffynando@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/eienjs/adonisjs-jobs",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eienjs/adonisjs-jobs.git"
  },
  "bugs": {
    "url": "https://github.com/eienjs/adonisjs-jobs/issues"
  },
  "keywords": [
    "adonis",
    "adonisjs",
    "adonis-framework",
    "jobs",
    "queue",
    "scheduler",
    "postgresql",
    "pg-boss",
    "background-jobs"
  ],
  "exports": {
    ".": "./build/index.js",
    "./types": "./build/src/types.js",
    "./commands": "./build/commands/main.js",
    "./commands/*": "./build/commands/*.js",
    "./services/*": "./build/services/*.js",
    "./jobs_provider": "./build/providers/jobs_provider.js",
    "./package.json": "./package.json"
  },
  "main": "./build/index.js",
  "module": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build"
  ],
  "engines": {
    "node": ">=20.19"
  },
  "peerDependencies": {
    "@adonisjs/core": "^6.19.0"
  },
  "dependencies": {
    "@sindresorhus/is": "^7.1.0",
    "glob": "^11.0.3",
    "pg-boss": "^11.0.8"
  },
  "devDependencies": {
    "@adonisjs/assembler": "^7.8.2",
    "@adonisjs/core": "^6.19.0",
    "@adonisjs/tsconfig": "^1.4.1",
    "@commitlint/cli": "^20.1.0",
    "@commitlint/config-conventional": "^20.0.0",
    "@eienjs/eslint-config": "^1.4.1",
    "@japa/assert": "^4.1.1",
    "@japa/runner": "^4.4.0",
    "@swc/core": "^1.13.5",
    "@types/node": "^22.18.10",
    "auto-changelog": "^2.5.0",
    "c8": "^10.1.3",
    "eslint": "^9.37.0",
    "eslint-plugin-erasable-syntax-only": "^0.3.1",
    "husky": "^9.1.7",
    "is-in-ci": "^2.0.0",
    "native-copyfiles": "^1.3.6",
    "np": "^10.2.0",
    "ts-node-maintained": "^10.9.6",
    "tsdown": "^0.15.7",
    "typescript": "^5.9.3"
  },
  "c8": {
    "reporter": [
      "text",
      "lcov"
    ],
    "exclude": [
      "tests/**"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "auto-changelog": {
    "template": "keepachangelog",
    "hideCredit": true
  },
  "np": {
    "message": "chore(release): :tada: %s",
    "tag": "latest",
    "branch": "main",
    "testScript": "test"
  },
  "scripts": {
    "copy:templates": "copyfiles \"stubs/**/*.stub\" build",
    "changelog": "auto-changelog -p && git add CHANGELOG.md",
    "index:commands": "adonis-kit index build/commands",
    "lint": "eslint . --fix",
    "lint:check": "eslint .",
    "typecheck": "tsc --noEmit",
    "test": "node --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
    "test:coverage": "c8 pnpm run test",
    "tool:code": "pnpm run lint:check && pnpm run typecheck",
    "tool:build": "pnpm run tool:code && pnpm run test",
    "prebuild": "pnpm run tool:code",
    "build": "tsdown --clean --dts",
    "postbuild": "pnpm run copy:templates && pnpm run index:commands",
    "release": "np",
    "version": "pnpm run build && pnpm run changelog"
  }
}