UNPKG

pg-boss

Version:

Queueing jobs in Postgres from Node.js like a boss

80 lines (79 loc) 2.18 kB
{ "name": "pg-boss", "version": "12.18.2", "description": "Queueing jobs in Postgres from Node.js like a boss", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "pg-boss": "./dist/cli.js" }, "engines": { "node": ">=22.12.0" }, "dependencies": { "cron-parser": "^5.5.0", "pg": "^8.20.0", "serialize-error": "^13.0.1" }, "devDependencies": { "@prisma/adapter-pg": "^7.6.0", "@prisma/client": "^7.6.0", "@tsconfig/node-ts": "^23.6.4", "@tsconfig/node22": "^22.0.5", "@types/luxon": "^3.7.1", "@types/node": "^22.19.17", "@types/pg": "^8.20.0", "@vitest/coverage-v8": "^4.1.2", "cli-testlab": "^6.0.1", "drizzle-orm": "^1.0.0-beta.22", "eslint": "^9.39.4", "knex": "^3.2.9", "kysely": "^0.28.15", "luxon": "^3.7.2", "neostandard": "^0.13.0", "prisma": "^7.6.0", "tsx": "^4.21.0", "typescript": "^6.0.3", "vitest": "^4.0.18" }, "scripts": { "build": "npm run clean && tsc --project tsconfig.build.json", "clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\"", "prepublishOnly": "npm install && npm test && npm run build", "pretest": "prisma generate --schema=test/prisma/schema.prisma", "test": "eslint . && vitest run", "lint:fix": "eslint . --fix", "precover": "prisma generate --schema=test/prisma/schema.prisma", "cover": "vitest run --coverage", "tsc": "tsc --noEmit", "readme": "node ./examples/readme.js", "db:migrate": "node --import=tsx -e 'console.log(require(\"./src\").getMigrationPlans())'", "db:construct": "node --import=tsx -e 'console.log(require(\"./src\").getConstructionPlans())'" }, "pgboss": { "schema": 30 }, "repository": { "type": "git", "url": "git+https://github.com/timgit/pg-boss.git" }, "author": "timgit", "license": "MIT", "bugs": { "url": "https://github.com/timgit/pg-boss/issues" }, "homepage": "https://timgit.github.io/pg-boss", "keywords": [ "postgresql", "postgres", "queue", "job" ], "files": [ "dist", "README.md", "LICENSE", "package.json" ] }