Files
smartsmtp/package.json
T

64 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-08-12 14:13:20 +00:00
{
2024-03-30 21:48:41 +01:00
"name": "@push.rocks/smartsmtp",
2026-05-01 18:53:46 +00:00
"version": "3.0.4",
2020-08-12 14:13:20 +00:00
"private": false,
2024-04-14 18:19:48 +02:00
"description": "A module for handling SMTP operations such as sending emails via SMTP or sendmail transport.",
"exports": {
".": "./dist_ts/index.js"
},
2020-08-12 14:13:20 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 16:37:19 +02:00
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2020-08-12 14:13:20 +00:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
2022-08-07 18:23:53 +02:00
"buildDocs": "tsdoc"
2020-08-12 14:13:20 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/qenv": "^6.1.4",
"@types/node": "^25.6.0"
2020-08-12 14:13:20 +00:00
},
"dependencies": {
"@push.rocks/smartmail": "^2.2.1",
"@types/nodemailer": "^8.0.0",
"nodemailer": "^8.0.7"
2020-08-12 14:13:20 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2020-08-12 14:13:20 +00:00
"npmextra.json",
"readme.md"
2024-04-14 18:19:48 +02:00
],
"keywords": [
"SMTP",
"email",
"nodemailer",
"sendmail",
"smartmail integration",
"TypeScript",
"email sending",
"email templates",
"programming"
2024-05-29 14:16:17 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartsmtp",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartsmtp.git"
}
}