mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 06:22:24 -05:00
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.
This commit is contained in:
parent
30fca2b5d5
commit
93fee8e18f
1 changed files with 13 additions and 9 deletions
22
package.json
22
package.json
|
|
@ -1,19 +1,20 @@
|
||||||
{
|
{
|
||||||
"name": "n8n-nodes-<...>",
|
"name": "n8n-nodes-resend",
|
||||||
"version": "0.1.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "Resend n8n node",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"n8n-community-node-package"
|
"n8n-community-node-package",
|
||||||
|
"resend"
|
||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"homepage": "",
|
"homepage": "https://github.com/SilkePilon/n8n-nodes-resend/",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "",
|
"name": "SilkePilon",
|
||||||
"email": ""
|
"email": ""
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/<...>/n8n-nodes-<...>.git"
|
"url": "https://github.com/SilkePilon/n8n-nodes-resend/"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20.15"
|
"node": ">=20.15"
|
||||||
|
|
@ -34,11 +35,14 @@
|
||||||
"n8nNodesApiVersion": 1,
|
"n8nNodesApiVersion": 1,
|
||||||
"credentials": [
|
"credentials": [
|
||||||
"dist/credentials/ExampleCredentialsApi.credentials.js",
|
"dist/credentials/ExampleCredentialsApi.credentials.js",
|
||||||
"dist/credentials/HttpBinApi.credentials.js"
|
"dist/credentials/HttpBinApi.credentials.js",
|
||||||
|
"dist/credentials/ResendApi.credentials.js"
|
||||||
],
|
],
|
||||||
"nodes": [
|
"nodes": [
|
||||||
"dist/nodes/ExampleNode/ExampleNode.node.js",
|
"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": {
|
"devDependencies": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue