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.
Common errors
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.
Warnings
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.
Install
npm install public-unscoped-test-package yarn add public-unscoped-test-package pnpm add public-unscoped-test-package Imports
- default wrong
const pkg = require('public-unscoped-test-package')correctimport pkg from 'public-unscoped-test-package' - namedExport wrong
import namedExport from 'public-unscoped-test-package'correctimport { namedExport } from 'public-unscoped-test-package' - type
import type { SomeType } from 'public-unscoped-test-package'
Quickstart
import pkg from 'public-unscoped-test-package';
console.log('Installed version:', pkg?.version ?? 'unknown');