Hey, I try to push a node into the Creator Portal!
I get an issue:
Issue when submitting package
Error getting author email from npm
https://www.npmjs.com/package/n8n-nodes-plentyone
Can you please check it why,… THX
DNAngelX
Hey, I try to push a node into the Creator Portal!
I get an issue:
Issue when submitting package
Error getting author email from npm
https://www.npmjs.com/package/n8n-nodes-plentyone
Can you please check it why,… THX
DNAngelX
so the issue here is that when you submit to the Creator Portal, n8n tries to pull your author email from your npm package metadata, but it’s either missing or not set up right in your `package.json`.
quick fix: make sure your `package.json` has an `author` field with an email - should look like this:
```json
“author”: “Your Name [email protected]”
```
or if you’re using the object format:
```json
“author”: {
“name”: “Your Name”,
“email”: “[email protected]”
}
```
after you update it, republish to npm and try submitting to the Creator Portal again. lmk if that works!
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.