pg-trx-outbox
Version:
Transactional outbox of Postgres for Node.js with little Event Sourcing
56 lines (55 loc) • 1.29 kB
JSON
{
"name": "pg-trx-outbox",
"version": "0.19.256",
"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.3",
"p-queue": "^9.1.0",
"pg": "^8.20.0",
"pg-cursor": "^2.19.0",
"throw": "^1.1.1",
"ts-pattern": "^5.9.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^11.13.0",
"@types/debug": "^4.1.13",
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/pg-cursor": "^2.7.2",
"testcontainers": "^11.13.0",
"ts-fp-di": "^0.22.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"pg-listen": "^1.7.0"
}
}