UNPKG

@sidequest/postgres-backend

Version:

@sidequest/postgres-backend is a PostgreSQL backend for Sidequest, a distributed background job queue system.

54 lines 1.41 kB
{ "name": "@sidequest/postgres-backend", "version": "1.8.0", "description": "@sidequest/postgres-backend is a PostgreSQL backend for Sidequest, a distributed background job queue system.", "keywords": [ "nodejs", "javascript", "typescript", "queue", "concurrency", "background-jobs", "distributed", "background" ], "homepage": "https://sidequestjs.com/", "bugs": { "url": "https://github.com/sidequestjs/sidequest/issues" }, "repository": { "type": "git", "url": "git+https://github.com/sidequestjs/sidequest.git", "directory": "packages/backends/postgres" }, "funding": "https://github.com/sponsors/sidequestjs", "packageManager": "yarn@4.9.2", "license": "LGPL-3.0-or-later", "type": "module", "main": "./dist/postgres-backend.cjs", "module": "./dist/postgres-backend.js", "types": "./dist/postgres-backend.d.ts", "exports": { "types": "./dist/postgres-backend.d.ts", "import": "./dist/postgres-backend.js", "require": "./dist/postgres-backend.cjs" }, "files": [ "dist", "migrations" ], "scripts": { "build": "npx rollup -c", "dev": "npx rollup -c -w", "test:ci": "npx vitest run" }, "dependencies": { "@sidequest/backend": "1.8.0", "@sidequest/core": "1.8.0", "knex": "^3.1.0", "pg": "^8.16.3" }, "devDependencies": { "@sidequest/backend-test": "1.8.0" } }