Skip to content

bunx/npx lazycodex install fails with 404 — 0.1.0 tarball missing from npm #1

@eddieparc

Description

@eddieparc

Summary

bunx lazycodex install and npx lazycodex install both fail right after the 0.1.0 release announcement. The package appears to be in a broken state on the npm registry — the manifest stub exists but no version is resolvable.

Repro

$ bunx lazycodex install
Resolving dependencies
Resolved, downloaded and extracted [2]
error: Package "lazycodex" with tag "latest" not found, but package exists
error: lazycodex@latest failed to resolve

$ npx -y lazycodex install
npm error code ENOVERSIONS
npm error No versions available for lazycodex

$ bunx lazycodex@0.1.0 install
error: No version matching "0.1.0" found for specifier "lazycodex" (but package exists)

Diagnosis

Hitting the registry directly:

$ curl -s https://registry.npmjs.org/lazycodex
{
  "_id":"lazycodex",
  "name":"lazycodex",
  "time":{
    "created":"2026-05-25T15:45:27.867Z",
    "modified":"2026-05-30T12:59:55.794Z",
    "0.0.0":"2026-05-25T15:45:28.147Z",
    "0.1.0":"2026-05-30T12:40:25.969Z",
    "unpublished":{
      "time":"2026-05-30T12:59:55.794Z",
      "versions":["0.0.0"]
    }
  },
  "_rev":"4-fd913ffe80c7214400b665761828dad6"
}

Notes:

  • Manifest has no versions field and no dist-tags — only time stubs remain.
  • 0.0.0 is explicitly in unpublished.versions.
  • 0.1.0 is not listed as unpublished, but its tarball is gone:
    $ curl -sI https://registry.npmjs.org/lazycodex/-/lazycodex-0.1.0.tgz
    HTTP/2 404
    x-amz-delete-marker: true
    
  • 0.0.0 tarball also returns 404.

Timeline suggests an unpublish-during-release glitch: 0.1.0 was published at 12:40, then 0.0.0 was unpublished at 12:59 (19 minutes later). npm's "unpublish the last/only resolvable version → drop the whole package" behavior may have wiped the new version too.

Suggested Fix

  • Re-publish 0.1.0 (or bump to 0.1.1)
  • Verify npm dist-tag add lazycodex@<ver> latest is set
  • Sanity-check with npm view lazycodex dist-tags

Environment

  • macOS (darwin)
  • bun 1.3.10
  • node 24.14.0, npm bundled
  • Tried from a clean cwd; no local registry overrides

Happy to test as soon as a republish lands.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions