UNPKG

@chassisjs/hermes-mongodb

Version:

Production-Ready TypeScript Outbox Pattern for MongoDB

80 lines (79 loc) 2.07 kB
{ "name": "@chassisjs/hermes-mongodb", "version": "1.0.0-alpha.16", "description": "Production-Ready TypeScript Outbox Pattern for MongoDB", "scripts": { "build": "rollup -c", "build:ts": "tsc -p tsconfig.build.json", "clean": "rm -rf ./lib/", "lint:eslint": "eslint 'src/**/*.ts'", "lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"", "lint-fix": "eslint --fix -f unix \"src/**/*.{ts,tsx}\"", "prepare": "husky", "test": "node --experimental-vm-modules ../../node_modules/.bin/jest --colors --coverage --verbose --maxConcurrency=5", "typecheck": "tsc --noEmit", "typedoc": "typedoc --favicon public/favicon.ico", "typedoc:watch": "typedoc --favicon public/favicon.ico --watch" }, "keywords": [ "outbox", "mongo", "mongodb", "microservices", "messaging", "transactional", "events" ], "author": { "name": "Artur Wojnar", "email": "contact@arturwojnar.dev" }, "engines": { "node": ">=18.20.3" }, "repository": { "type": "git", "url": "git+https://github.com/chassisjs/hermes.git", "directory": "packages/hermes-mongodb" }, "bugs": { "url": "https://github.com/chassisjs/hermes/issues" }, "homepage": "https://docs.hermesjs.tech", "exports": { ".": { "import": { "types": "./lib/index.d.ts", "default": "./lib/index.mjs" }, "require": { "types": "./lib/index.d.ts", "default": "./lib/index.cjs" } } }, "type": "module", "main": "./lib/index.cjs", "types": "./lib/index.d.ts", "files": [ "lib" ], "publishConfig": { "access": "public" }, "license": "ISC", "devDependencies": { "@jest/globals": "~30.3.0", "mongodb-memory-server": "~11.0.1", "mongoose": "~9.3.1", "ts-essentials": "~10.1.1" }, "peerDependencies": { "@chassisjs/hermes": "~1.0.0-alpha.15", "mongodb": ">= 6.8.0 || < 7.0.0" }, "gitHead": "55a439cd843b5b6a69a8fd7fb78ef48dc5cd463a", "dependencies": { "whatwg-url": "^16.0.1" } }