public-unscoped-test-package

raw JSON →
0.0.3-1777078738 verified Sat Apr 25 auth: no javascript

A test package used exclusively for smoke testing npm publishing pipelines. Version 0.0.3-1777078738 is a pre-release build with no stable release cadence. This package performs no useful functionality and exists solely to validate tooling behavior such as install, audit, and registry interactions. It has no differentiators from other test packages, as its purpose is purely internal to npm infrastructure.

error Cannot find module 'public-unscoped-test-package'
cause Package not installed correctly or not available.
fix
Run 'npm install public-unscoped-test-package' and ensure package.json includes it.
deprecated This package is for internal testing only, not intended for production use.
fix Do not depend on this package. Use a real library instead.
npm install public-unscoped-test-package
yarn add public-unscoped-test-package
pnpm add public-unscoped-test-package

Demonstrates importing the test package and logging its version.

import pkg from 'public-unscoped-test-package';
console.log('Installed version:', pkg?.version ?? 'unknown');