How to remove not listed packages and versions #167798
Replies: 5 comments 2 replies
-
| Hello, You can delete packages using terminal. If you aren't already logged in, run: Unpublish the package: To remove only a specific version, use: | 
Beta Was this translation helpful? Give feedback.
-
| This usually occurs because:
 Steps to Delete the Package
 
 
 
 
 
 
 
 
 
 
 They can transfer, deprecate, or delete the package manually. ✅ Bonus Tips
 
 | 
Beta Was this translation helpful? Give feedback.
-
| 🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as  2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the  Thank you for helping bring this Discussion to a resolution! 💬 | 
Beta Was this translation helpful? Give feedback.
-
| Hi @phongkhuu115, I think that previous response by @Satyam6024 covers the key fixes, but some details missing regarding the GitHub web deletion method. It may be possible to delete via GitHub Web Interface, which often works when CLI deletion is disabled and packages aren't visible in standard listings. • Go to organization page →  If the package is still missing, then: For GitHub Packages Registry, contact [GitHub Support](https://support.github.com/contact), not  Resoruces:• [Managing GitHub Packages - Official Deletion Guide](https://docs.github.com/en/packages/learn-github-packages/deleting-and-restoring-a-package) | 
Beta Was this translation helpful? Give feedback.
-
| This is a common issue when publishing scoped packages to npm. The package isn't showing up in the organization's package list because of how npm handles scoped package visibility. Here are several ways to delete the package: Method 1: Using npm CLI (Recommended) Delete the packagenpm unpublish @your-org/package-name --force Or if you want to specify a specific versionnpm unpublish @your-org/[email protected] Go to npm support Explain that you need to delete a scoped package that's not visible in your organization Provide the package name: @your-org/package-name Method 3: Check package visibility settings bash Method 4: Using npm website Log in to your account Check both: Your personal packages page The organization's page (even if it's not showing) Sometimes packages appear under "Packages" tab in organization settings Prevention for future packages json 🔒 Scoped packages: Default to private for paid organizations, which might explain why it's not publicly visible Try Method 1 first, and if that doesn't work, proceed with contacting npm support via Method 2. | 
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
I published a package, but it doesn't link to a repository; instead, it is linked to an organization. Although I don't see that package listed on the organization packages page
I can see the package information using
npm view <@org>/<package-name>. But I can't see that package listed anywhere.I wonder how to delete that package?
Beta Was this translation helpful? Give feedback.
All reactions