UNPKG

@sailboat-computer/event-bus

Version:

Standardized event bus for sailboat computer v3 with resilience features and offline capabilities

76 lines (75 loc) 2.19 kB
{ "name": "@sailboat-computer/event-bus", "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/sailboat-computer/sailboat-computer-v3.git" }, "version": "1.1.56", "description": "Standardized event bus for sailboat computer v3 with resilience features and offline capabilities", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "build:watch": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest --testMatch='**/tests/integration/**/*.test.ts'", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rm -rf dist", "example": "node examples/run-example.js", "example:redis": "node examples/run-redis-example.js", "example:schema-validation": "node examples/run-schema-validation-example.js", "example:dead-letter-queue": "node examples/run-dead-letter-queue-example.js", "example:monitoring": "node examples/run-monitoring-example.js" }, "keywords": [ "sailboat", "marine", "event-bus", "redis", "offline", "resilience" ], "author": "Sailboat Computer Team", "license": "MIT", "dependencies": { "@sailboat-computer/sailboat-types": "^1.1.55", "ajv": "^6.12.6", "ioredis": "^5.3.2", "uuid": "^9.0.0" }, "peerDependencies": { "@sailboat-computer/resilience": "^1.1.55" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.0", "@types/uuid": "^9.0.0", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "eslint": "^8.37.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./adapters": { "types": "./dist/adapters/index.d.ts", "default": "./dist/adapters/index.js" }, "./utils": { "types": "./dist/utils/index.d.ts", "default": "./dist/utils/index.js" } } }