smartsmtp/package.json
2024-05-29 14:16:17 +02:00

59 lines
1.4 KiB
JSON

{
"name": "@push.rocks/smartsmtp",
"version": "3.0.3",
"private": false,
"description": "A module for handling SMTP operations such as sending emails via SMTP or sendmail transport.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
},
"dependencies": {
"@pushrocks/smartmail": "^1.0.21",
"@types/nodemailer": "^6.4.5",
"nodemailer": "^6.7.7"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"keywords": [
"SMTP",
"email",
"nodemailer",
"sendmail",
"smartmail integration",
"TypeScript",
"email sending",
"email templates",
"programming"
],
"homepage": "https://code.foss.global/push.rocks/smartsmtp",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartsmtp.git"
}
}