mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2026-09-17 17:09:30 +07:00
67ce3558d6
Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com>
173 lines
6.0 KiB
JSON
173 lines
6.0 KiB
JSON
{
|
|
"name": "nodemailer",
|
|
"version": "10.0.8",
|
|
"description": "Easy as cake e-mail sending from your Node.js applications",
|
|
"type": "module",
|
|
"main": "./dist/cjs/nodemailer.js",
|
|
"typesVersions": {
|
|
"*": {
|
|
"lib/well-known/services.json": [
|
|
"dist/well-known/services.json"
|
|
],
|
|
"lib/*": [
|
|
"dist/cjs/*/index.d.ts",
|
|
"dist/cjs/*.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/esm/nodemailer.js",
|
|
"require": "./dist/cjs/nodemailer.js"
|
|
},
|
|
"./lib/addressparser": {
|
|
"import": "./dist/esm/addressparser/index.js",
|
|
"require": "./dist/cjs/addressparser/index.js"
|
|
},
|
|
"./lib/base64": {
|
|
"import": "./dist/esm/base64/index.js",
|
|
"require": "./dist/cjs/base64/index.js"
|
|
},
|
|
"./lib/dkim": {
|
|
"import": "./dist/esm/dkim/index.js",
|
|
"require": "./dist/cjs/dkim/index.js"
|
|
},
|
|
"./lib/fetch": {
|
|
"import": "./dist/esm/fetch/index.js",
|
|
"require": "./dist/cjs/fetch/index.js"
|
|
},
|
|
"./lib/json-transport": {
|
|
"import": "./dist/esm/json-transport/index.js",
|
|
"require": "./dist/cjs/json-transport/index.js"
|
|
},
|
|
"./lib/mail-composer": {
|
|
"import": "./dist/esm/mail-composer/index.js",
|
|
"require": "./dist/cjs/mail-composer/index.js"
|
|
},
|
|
"./lib/mailer": {
|
|
"import": "./dist/esm/mailer/index.js",
|
|
"require": "./dist/cjs/mailer/index.js"
|
|
},
|
|
"./lib/mime-funcs": {
|
|
"import": "./dist/esm/mime-funcs/index.js",
|
|
"require": "./dist/cjs/mime-funcs/index.js"
|
|
},
|
|
"./lib/mime-node": {
|
|
"import": "./dist/esm/mime-node/index.js",
|
|
"require": "./dist/cjs/mime-node/index.js"
|
|
},
|
|
"./lib/punycode": {
|
|
"import": "./dist/esm/punycode/index.js",
|
|
"require": "./dist/cjs/punycode/index.js"
|
|
},
|
|
"./lib/qp": {
|
|
"import": "./dist/esm/qp/index.js",
|
|
"require": "./dist/cjs/qp/index.js"
|
|
},
|
|
"./lib/sendmail-transport": {
|
|
"import": "./dist/esm/sendmail-transport/index.js",
|
|
"require": "./dist/cjs/sendmail-transport/index.js"
|
|
},
|
|
"./lib/ses-transport": {
|
|
"import": "./dist/esm/ses-transport/index.js",
|
|
"require": "./dist/cjs/ses-transport/index.js"
|
|
},
|
|
"./lib/shared": {
|
|
"import": "./dist/esm/shared/index.js",
|
|
"require": "./dist/cjs/shared/index.js"
|
|
},
|
|
"./lib/smtp-connection": {
|
|
"import": "./dist/esm/smtp-connection/index.js",
|
|
"require": "./dist/cjs/smtp-connection/index.js"
|
|
},
|
|
"./lib/smtp-pool": {
|
|
"import": "./dist/esm/smtp-pool/index.js",
|
|
"require": "./dist/cjs/smtp-pool/index.js"
|
|
},
|
|
"./lib/smtp-transport": {
|
|
"import": "./dist/esm/smtp-transport/index.js",
|
|
"require": "./dist/cjs/smtp-transport/index.js"
|
|
},
|
|
"./lib/stream-transport": {
|
|
"import": "./dist/esm/stream-transport/index.js",
|
|
"require": "./dist/cjs/stream-transport/index.js"
|
|
},
|
|
"./lib/well-known": {
|
|
"import": "./dist/esm/well-known/index.js",
|
|
"require": "./dist/cjs/well-known/index.js"
|
|
},
|
|
"./lib/well-known/services.json": "./dist/well-known/services.json",
|
|
"./lib/xoauth2": {
|
|
"import": "./dist/esm/xoauth2/index.js",
|
|
"require": "./dist/cjs/xoauth2/index.js"
|
|
},
|
|
"./lib/*.js": {
|
|
"import": "./dist/esm/*.js",
|
|
"require": "./dist/cjs/*.js"
|
|
},
|
|
"./lib/*": {
|
|
"import": "./dist/esm/*.js",
|
|
"require": "./dist/cjs/*.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"CHANGELOG.md",
|
|
"SECURITY.md",
|
|
"SECURITY.txt"
|
|
],
|
|
"scripts": {
|
|
"build": "node scripts/build.js",
|
|
"typecheck": "node scripts/build.js --generate-only && tsc -p tsconfig.json",
|
|
"pretest": "npm run build",
|
|
"test": "node --import tsx --test --test-concurrency=1 $(find test \\( -name '*-test.ts' -o -name '*.test.ts' \\))",
|
|
"pretest:coverage": "npm run build",
|
|
"test:coverage": "c8 node --import tsx --test --test-concurrency=1 $(find test \\( -name '*-test.ts' -o -name '*.test.ts' \\))",
|
|
"pretest:bun": "npm run build",
|
|
"test:bun": "bun test --timeout 60000 $(find ./test \\( -name '*-test.ts' -o -name '*.test.ts' \\))",
|
|
"format": "prettier --write \"**/*.{js,cjs,ts,json,md}\"",
|
|
"format:check": "prettier --check \"**/*.{js,cjs,ts,json,md}\"",
|
|
"lint": "eslint . && npm run typecheck",
|
|
"lint:fix": "eslint . --fix",
|
|
"prepare": "npm run build",
|
|
"update": "rm -rf node_modules/ package-lock.json && ncu -u && npm install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nodemailer/nodemailer.git"
|
|
},
|
|
"keywords": [
|
|
"Nodemailer"
|
|
],
|
|
"author": "Andris Reinman",
|
|
"license": "MIT-0",
|
|
"bugs": {
|
|
"url": "https://github.com/nodemailer/nodemailer/issues"
|
|
},
|
|
"homepage": "https://nodemailer.com/",
|
|
"devDependencies": {
|
|
"@aws-sdk/client-sesv2": "3.1124.0",
|
|
"@types/node": "20.19.43",
|
|
"bunyan": "1.8.15",
|
|
"c8": "12.0.0",
|
|
"eslint": "10.9.1",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"globals": "17.12.0",
|
|
"libbase64": "1.3.0",
|
|
"libmime": "5.4.3",
|
|
"libqp": "2.1.1",
|
|
"mailauth": "5.0.2",
|
|
"prettier": "3.9.6",
|
|
"proxy": "1.0.2",
|
|
"proxy-test-server": "1.0.0",
|
|
"smtp-server": "3.19.7",
|
|
"tsx": "4.23.13",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "8.69.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|