UNPKG

npx-scope-finder

Version:

A tool to find executable (npx-compatible) packages within a specific npm scope

4 lines (3 loc) 252 B
import type { NPMPackage, NpxFinderOptions } from "./types"; export declare function npxFinder(scope: string, options?: NpxFinderOptions): Promise<NPMPackage[]>; export type { NPMPackage, NpxFinderOptions, SearchResponse, PackageInfo } from "./types";