JSPM

package-name-conflict

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17302
  • Score
    100M100P100Q136601F
  • License MIT

Check if NPM package names conflict

Package Exports

  • package-name-conflict

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (package-name-conflict) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

package-name-conflict

npm typescript Coverage Status GitHub stars Twitter Follow

Check if NPM package names conflict.

To prevent typosquatting, NPM no longer allows names that differ from existing packages in punctuation only.

This package checks if package names conflict.

Note:
Package names are not validated. To validate package names, use validate-package-name.

Installation

yarn add package-name-conflict
npm install package-name-conflict

API

import { conflicts, conflictsAny, transform } from "package-name-conflict";

// Check if two package names conflict:

conflicts("abc.123", "Abc-123"); // true

// Return first conflicting package name in an array:

conflictsAny("abc123", ["test", "test2", "Abc-123"]); // "Abc-123"

conflictsAny("abc123", ["test", "test2"]); // false

// Transform a package name to its simplified form:

transform("Abc-123"); // "abc123"

Types:

function transform(name: string): string;

function conflicts(nameA: string, nameB: string): boolean;

function conflictsAny(name: string, names: string[]): string | false;


Dev DependenciesDavid


License license

MIT