mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:01:09 +02:00
NestJS notification microservice for email, push, Matrix, and webhook notifications across all ManaCore apps. Features: - Multi-channel delivery (email, push, Matrix, webhook) - Handlebars template engine with defaults - User notification preferences - BullMQ async job processing - Delivery tracking and logging - Prometheus metrics Includes @manacore/notify-client package for NestJS integration.
44 lines
918 B
JSON
44 lines
918 B
JSON
{
|
|
"name": "@manacore/notify-client",
|
|
"version": "1.0.0",
|
|
"description": "Client SDK for mana-notify notification service",
|
|
"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"
|
|
},
|
|
"./nestjs": {
|
|
"types": "./dist/nestjs/index.d.ts",
|
|
"import": "./dist/nestjs/index.mjs",
|
|
"require": "./dist/nestjs/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@nestjs/common": "^10.4.17",
|
|
"@types/node": "^22.10.5",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": ">=10.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@nestjs/common": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|