UNPKG

@dhanush40/npm-guard

Version:

Unified dependency health and supply-chain risk scanner for npm projects

7 lines (6 loc) 243 B
export type TyposquatResult = { risk: "none" | "low" | "medium" | "high"; reason?: string; }; export declare function checkTyposquat(name: string, popularList: string[]): TyposquatResult; export declare const defaultPopular: string[];