UNPKG

@sekiban/postgres

Version:

PostgreSQL storage provider for Sekiban Event Sourcing framework

66 lines (65 loc) 1.57 kB
{ "name": "@sekiban/postgres", "version": "0.1.0-alpha.5", "description": "PostgreSQL storage provider for Sekiban Event Sourcing framework", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "prebuild": "rimraf dist", "build": "./build-types.sh", "postbuild": "ls -la dist/*.d.ts || echo 'Warning: No .d.ts files found!'", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit", "clean": "rimraf dist", "dev": "tsup --watch" }, "keywords": [ "sekiban", "event-sourcing", "cqrs", "postgres", "postgresql" ], "author": "Sekiban Team", "license": "MIT", "dependencies": { "@sekiban/core": "^0.1.0-alpha.5", "neverthrow": "^8.0.0", "pg": "^8.11.3", "pg-pool": "^3.6.1" }, "devDependencies": { "@types/node": "^20.10.0", "@types/pg": "^8.10.9", "@vitest/coverage-v8": "^1.0.0", "@sekiban/testing": "file:../testing", "testcontainers": "^10.5.0", "tsup": "^8.0.0", "typescript": "^5.3.0", "vitest": "^1.0.0", "rimraf": "^5.0.0" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/J-Tech-Japan/Sekiban", "directory": "ts/src/packages/postgres" } }