Skip to content
Discussion options

You must be logged in to vote

Hi @alfonsomartinde,

📌 Root Cause

From the error message:

403 Forbidden - PUT https://npm.pkg.github.com/@emanager.com%2ffrontend - Permission not_found: owner not found

It seems the issue lies in the scoped package name:

"name": "@emanager.com/frontend"

GitHub does not support dots in organization/package scope names for GitHub Packages. In your case, the scope @emanager.com is being interpreted incorrectly by the npm registry (the %2f encoding suggests confusion between the org and package name).

✅ Solution

You need to rename the package scope to match the GitHub org exactly — without dots (.).

So, you have two options:


Option 1: Rename your GitHub organization

Rename the organization…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by alfonsomartinde
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Packages Host your dependencies, libraries, and production-ready code, right from your repository Question Ask and answer questions about GitHub features and usage
2 participants