@nodesecure/scanner
Version:
A package API to run a static analysis of your module's dependencies.
12 lines • 576 B
TypeScript
import type { ManifestVersion, PackageJSON, WorkspacesPackageJSON } from "@nodesecure/npm-types";
import type Config from "@npmcli/config";
import { Logger } from "./class/logger.class.ts";
import type { Options, Payload } from "./types.ts";
type WalkerOptions = Omit<Options, "registry"> & {
registry: string;
location?: string;
npmRcConfig?: Config;
};
export declare function depWalker(manifest: PackageJSON | WorkspacesPackageJSON | ManifestVersion, options: WalkerOptions, logger?: Logger): Promise<Payload>;
export {};
//# sourceMappingURL=depWalker.d.ts.map