Files
emailmd/package.json

60 lines
1.4 KiB
JSON

{
"name": "n8n-nodes-emailmd",
"version": "0.1.0",
"description": "n8n node for sending emails rendered from Markdown using emailmd",
"keywords": [
"n8n-community-node-package",
"n8n",
"email",
"markdown",
"emailmd"
],
"license": "MIT",
"homepage": "https://github.com/unmta/emailmd",
"author": {
"name": "n8n-nodes-emailmd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unmta/emailmd.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes --ext .ts",
"lintfix": "eslint nodes --ext .ts --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/SmtpCredential.credentials.js"
],
"nodes": [
"dist/nodes/EmailMd/EmailMd.node.js"
]
},
"devDependencies": {
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/parser": "^5.62.0",
"eslint-plugin-n8n-nodes-base": "^1.16.2",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"dependencies": {
"emailmd": "^0.1.0",
"nodemailer": "^6.9.16"
},
"engines": {
"node": ">=18.0",
"npm": ">=8.0"
}
}