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.
Summary
bunx lazycodex installandnpx lazycodex installboth 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
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:
versionsfield and nodist-tags— onlytimestubs remain.0.0.0is explicitly inunpublished.versions.0.1.0is not listed as unpublished, but its tarball is gone:0.0.0tarball also returns 404.Timeline suggests an unpublish-during-release glitch:
0.1.0was published at12:40, then0.0.0was unpublished at12: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
0.1.0(or bump to0.1.1)npm dist-tag add lazycodex@<ver> latestis setnpm view lazycodex dist-tagsEnvironment
bun 1.3.10node 24.14.0,npmbundledHappy to test as soon as a republish lands.