From 93fee8e18f57710dd62e885094bc8d6ed5624919 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 19:31:54 +0000 Subject: [PATCH] chore: Update package.json for npm publishing Updates package.json to version 1.0.0. Sets author to SilkePilon. Updates description, homepage, and repository URL. Adds 'resend' to keywords. Updates package name to 'n8n-nodes-resend'. Ensures ResendApi.credentials.js, Resend.node.js, and ResendTrigger.node.js are correctly listed in the n8n.credentials and n8n.nodes sections for proper packaging and use. --- package.json | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index c41f2b4..4a10fce 100644 --- a/package.json +++ b/package.json @@ -1,19 +1,20 @@ { - "name": "n8n-nodes-<...>", - "version": "0.1.0", - "description": "", + "name": "n8n-nodes-resend", + "version": "1.0.0", + "description": "Resend n8n node", "keywords": [ - "n8n-community-node-package" + "n8n-community-node-package", + "resend" ], "license": "MIT", - "homepage": "", + "homepage": "https://github.com/SilkePilon/n8n-nodes-resend/", "author": { - "name": "", + "name": "SilkePilon", "email": "" }, "repository": { "type": "git", - "url": "https://github.com/<...>/n8n-nodes-<...>.git" + "url": "https://github.com/SilkePilon/n8n-nodes-resend/" }, "engines": { "node": ">=20.15" @@ -34,11 +35,14 @@ "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/ExampleCredentialsApi.credentials.js", - "dist/credentials/HttpBinApi.credentials.js" + "dist/credentials/HttpBinApi.credentials.js", + "dist/credentials/ResendApi.credentials.js" ], "nodes": [ "dist/nodes/ExampleNode/ExampleNode.node.js", - "dist/nodes/HttpBin/HttpBin.node.js" + "dist/nodes/HttpBin/HttpBin.node.js", + "dist/nodes/Resend/Resend.node.js", + "dist/nodes/Resend/ResendTrigger.node.js" ] }, "devDependencies": {