setup-npm-trusted-publish
v1.0.3
Published
Setup npm package for trusted publishing with OIDC
Downloads
3,039
Readme
setup-npm-trusted-publish
A tool to create and publish placeholder npm packages for setting up OIDC (OpenID Connect) trusted publishing.
Background
Unlike PyPI which allows configuring OIDC for not-yet-existing packages, npm requires a package to exist before you can configure trusted publishing. This tool helps work around that limitation by automatically creating and publishing minimal placeholder packages that clearly indicate they exist solely for OIDC setup purposes.
See: GitHub Community Discussion #127011
Installation
npm install -g setup-npm-trusted-publishOr run directly with npx:
npx setup-npm-trusted-publish <package-name>Usage
setup-npm-trusted-publish <package-name>Options:
--dry-run- Create the package but don't publish--access <public|restricted>- Access level for scoped packages (default: public)
Examples:
# Create and publish a regular package
setup-npm-trusted-publish my-package
# Create and publish a scoped package
setup-npm-trusted-publish @myorg/my-package
# Dry run (create but don't publish)
setup-npm-trusted-publish my-package --dry-runWhat it does
This tool:
- Creates a minimal npm package in a temporary directory
- Generates a
package.jsonwith basic metadata for OIDC setup - Creates a
README.mdthat clearly states the package is for OIDC setup only - Automatically publishes the package to npm
- Cleans up the temporary directory
- Provides a direct link to configure OIDC at
https://www.npmjs.com/package/<package-name>/access
The generated README explicitly indicates:
- The package is NOT functional
- It contains NO code
- It exists ONLY for OIDC configuration
- It should NOT be used as a dependency
Workflow
- Run this tool to create and publish a placeholder package
- Visit the provided URL (
https://www.npmjs.com/package/<package-name>/access) to configure OIDC trusted publishing - Set up your CI/CD workflow to publish the real package version with OIDC
Example Output
$ setup-npm-trusted-publish @myorg/my-package
📦 Creating placeholder package: @myorg/my-package
📁 Temp directory: /tmp/npm-oidc-setup-abc123def456
✅ Created placeholder package files
📤 Publishing package to npm...
✅ Successfully published: @myorg/my-package
🔗 View your package at: https://www.npmjs.com/package/@myorg/my-package
Next steps:
1. Go to https://www.npmjs.com/package/@myorg/my-package/access
2. Configure OIDC trusted publishing
3. Set up your CI/CD workflow to publish with OIDC
🧹 Cleaned up temp directoryWhy is this needed?
npm's current implementation requires a package to exist before you can:
- Configure OIDC trusted publishing
- Generate granular access tokens
This tool provides a responsible way to "reserve" a package name for OIDC setup by creating a package that:
- Clearly communicates its purpose
- Cannot be mistaken for a functional package
- Enables the OIDC configuration workflow
Important Notes
- This tool is specifically for OIDC setup, not for name squatting
- The generated packages clearly indicate they are placeholders
- Always follow npm's policies and best practices
- Replace the placeholder with your actual package as soon as possible
License
MIT
