pg-trx-outbox
Version:
Transactional outbox of Postgres for Node.js with little Event Sourcing
57 lines (56 loc) • 1.31 kB
JSON
{
"name": "pg-trx-outbox",
"version": "0.17.207",
"description": "Transactional outbox of Postgres for Node.js with little Event Sourcing",
"main": "./dist/src/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "DEBUG=* node --test --test-concurrency 1 ./dist/test/*.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"transactional",
"outbox",
"postgres",
"postgresql",
"pg",
"2pc",
"transaction",
"event",
"sourcing"
],
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/pg-trx-outbox.git"
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"dependencies": {
"debug": "^4.4.1",
"p-queue": "^8.1.0",
"pg": "^8.16.0",
"pg-cursor": "^2.15.0",
"robot3": "^1.1.1",
"throw": "^1.1.1",
"ts-pattern": "^5.7.1"
},
"devDependencies": {
"@testcontainers/postgresql": "^11.0.3",
"@types/debug": "^4.1.12",
"@types/node": "^24.0.0",
"@types/pg": "^8.15.4",
"@types/pg-cursor": "^2.7.2",
"testcontainers": "^11.0.3",
"ts-fp-di": "^0.22.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"pg-listen": "^1.7.0"
}
}