Bug
@bankr/sdk has an invalid dependency tag: x402-fetch@^latest
The ^ prefix requires a valid semver version, not a dist-tag. This causes npm install to fail:
npm error code EINVALIDTAGNAME
npm error Invalid tag name "^latest" of package "x402-fetch@^latest"
Fix
Change x402-fetch@^latest to x402-fetch@^1.2.0 in package.json
Current version of x402-fetch is 1.2.0, so ^1.2.0 will get all compatible updates.
Impact
This blocks all developers from installing the SDK via npm. We are trying to integrate Bankr x402 Cloud with our 13 live APIs and cannot proceed until this is fixed.
Environment
- Node.js 20+
- npm 10+
- Platform: Linux (Ubuntu)
Bug
@bankr/sdkhas an invalid dependency tag:x402-fetch@^latestThe
^prefix requires a valid semver version, not a dist-tag. This causesnpm installto fail:Fix
Change
x402-fetch@^latesttox402-fetch@^1.2.0in package.jsonCurrent version of x402-fetch is 1.2.0, so
^1.2.0will get all compatible updates.Impact
This blocks all developers from installing the SDK via npm. We are trying to integrate Bankr x402 Cloud with our 13 live APIs and cannot proceed until this is fixed.
Environment