notifx
Version:
Pluggable notification dispatcher to send notifications to various channels.
68 lines (67 loc) • 2.14 kB
JSON
{
"name": "notifx",
"version": "1.0.0",
"description": "Pluggable notification dispatcher to send notifications to various channels.",
"repository": {
"type": "git",
"url": "https://github.com/open-devans/notix"
},
"author": "cedrickah",
"license": "MIT",
"keywords": [
"notification",
"multi-channel",
"pluggalble"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest --config jest.config.json",
"dev": "rollup -c -w",
"pack": "rollup -c",
"build": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"docs": "typedoc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"release": "standard-version",
"commit": "cz",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@microsoft/api-extractor": "^7.38.5",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "7.9.0",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.4",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.10.0",
"handlebars": "^4.7.8",
"nodemailer": "^7.0.3"
}
}