UNPKG

@jackdbd/notifications

Version:

Functions used to send notifications to various channels (Telegram, email, etc)

76 lines (75 loc) 2.19 kB
{ "name": "@jackdbd/notifications", "version": "1.0.3", "description": "Functions used to send notifications to various channels (Telegram, email, etc)", "author": { "name": "Giacomo Debidda", "email": "giacomo@giacomodebidda.com", "url": "https://giacomodebidda.com/" }, "license": "MIT", "private": false, "publishConfig": { "access": "public" }, "keywords": [ "email", "instant-messaging", "telegram" ], "repository": { "type": "git", "url": "https://github.com/jackdbd/calderone" }, "homepage": "https://github.com/jackdbd/calderone/tree/main/packages/notifications#readme", "engines": { "node": ">=16.0.0" }, "type": "module", "module": "lib/index.js", "typings": "lib/index.d.ts", "exports": { ".": "./lib/index.js", "./sendgrid": "./lib/sendgrid.js", "./telegram": "./lib/telegram.js", "./package.json": "./lib/package.json" }, "typesVersions": { "*": { "*": [ "./lib/*.d.ts" ] } }, "files": [ "CHANGELOG.md", "api-docs", "lib" ], "scripts": { "build": "run-s 'build:ts' 'build:docs' --print-label", "build:docs": "run-s 'docs:doctoc' 'docs:ae' 'docs:ad' 'docs:typedoc' --print-label", "build:ts": "tsc -p tsconfig.json", "clean": "../../scripts/clean.mjs", "docs:ae": "../../scripts/api-extractor.mjs", "docs:ad": "../../scripts/api-documenter.mjs", "docs:doctoc": "doctoc --github README.md --title '<details><summary>Table of Contents</summary>'", "docs:typedoc": "../../scripts/typedoc.mjs", "format": "../../scripts/format.mjs", "lint": "eslint --config ../../config/eslint.cjs", "nuke": "npm run clean && rimraf node_modules 'package-lock.json'", "precommit": "lint-staged --config ../../config/lint-staged.cjs", "size": "pkg-size ./lib --sort-by=brotli --ignore-files {*.d.ts,*.map}", "test": "../../scripts/test.mjs", "test:ci": "../../scripts/test.mjs --ci", "test:watch": "npm run test -- --watch" }, "dependencies": { "@sendgrid/mail": "^7.6.1", "phin": "^3.6.1" }, "peerDependencies": { "debug": ">=4.0.0" }, "devDependencies": {} }