mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-29 17:38:07 +00:00
* fix: automated security fixes for frontend dependencies * chore: update jspdf and related dependencies; fix autoTable reference in generate-file.js * chore: upgrade jspdf-autotable to version 5.0.7 and adjust related code references * fix: update SMTP plugin to support new nodemailer version and improve type definitions - Updated nodemailer dependency from version 6.9.1 to 8.0.2. - Enhanced type definitions for attachments in QueryOptions. - Specified Transporter type for nodemailer connections. - Improved attachment handling by defining a more specific type for filesData function. * chore: update nodemailer and its types, adjust AppHistoryModule providers and controllers based on import context * Implement feature X to enhance user experience and fix bug Y in module Z * chore: update nodemailer to version 8.0.3 and remove @types/nodemailer from dependencies * chore: update version to 3.20.125-lts across all components --------- Co-authored-by: adishM98 <adishM98@users.noreply.github.com> Co-authored-by: johnsoncherian <johnsonc.dev@gmail.com>
24 lines
No EOL
558 B
JSON
24 lines
No EOL
558 B
JSON
{
|
|
"name": "@tooljet-plugins/smtp",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"nodemailer": "^8.0.2",
|
|
"react": "^17.0.2"
|
|
}
|
|
} |