|
| 1 | +{ |
| 2 | + "name": "@message-queue-toolkit/outbox-prisma-adapter", |
| 3 | + "version": "0.1.0", |
| 4 | + "private": false, |
| 5 | + "license": "MIT", |
| 6 | + "description": "OutboxStorage implementation for @message-queue-toolkit/outbox-core package.", |
| 7 | + "maintainers": [ |
| 8 | + { |
| 9 | + "name": "Igor Savin", |
| 10 | + "email": "kibertoad@gmail.com" |
| 11 | + } |
| 12 | + ], |
| 13 | + "main": "dist/index.js", |
| 14 | + "types": "dist/index.d.ts", |
| 15 | + "scripts": { |
| 16 | + "build": "del-cli dist && tsc", |
| 17 | + "build:release": "del-cli dist && del-cli coverage && npm run lint && tsc --project tsconfig.release.json", |
| 18 | + "test": "vitest", |
| 19 | + "test:coverage": "npm test -- --coverage", |
| 20 | + "test:ci": "npm run docker:start:dev && npm run test:coverage && npm run docker:stop:dev", |
| 21 | + "lint": "biome check . && tsc --project tsconfig.json --noEmit", |
| 22 | + "lint:fix": "biome check --write .", |
| 23 | + "docker:start:dev": "docker compose up -d", |
| 24 | + "docker:stop:dev": "docker compose down", |
| 25 | + "prepublishOnly": "npm run build:release" |
| 26 | + }, |
| 27 | + "dependencies": {}, |
| 28 | + "peerDependencies": { |
| 29 | + "@message-queue-toolkit/core": ">=14.0.0", |
| 30 | + "@message-queue-toolkit/schemas": ">=4.0.0", |
| 31 | + "@message-queue-toolkit/outbox-core": ">=0.1.0" |
| 32 | + }, |
| 33 | + "devDependencies": { |
| 34 | + "@biomejs/biome": "1.8.3", |
| 35 | + "@kibertoad/biome-config": "^1.2.1", |
| 36 | + "@types/node": "^22.0.0", |
| 37 | + "@vitest/coverage-v8": "^2.0.4", |
| 38 | + "del-cli": "^5.1.0", |
| 39 | + "typescript": "^5.5.3", |
| 40 | + "vitest": "^2.0.4", |
| 41 | + "zod": "^3.23.8" |
| 42 | + }, |
| 43 | + "homepage": "https://github.com/kibertoad/message-queue-toolkit", |
| 44 | + "repository": { |
| 45 | + "type": "git", |
| 46 | + "url": "git://github.com/kibertoad/message-queue-toolkit.git" |
| 47 | + }, |
| 48 | + "keywords": [ |
| 49 | + "message", |
| 50 | + "queue", |
| 51 | + "queues", |
| 52 | + "abstract", |
| 53 | + "common", |
| 54 | + "utils", |
| 55 | + "notification", |
| 56 | + "outbox", |
| 57 | + "pattern" |
| 58 | + ], |
| 59 | + "files": ["README.md", "LICENSE", "dist/*"] |
| 60 | +} |
0 commit comments