/** * Supply Chain Scanner * Scans project dependencies against OSV.dev API for CVEs and malicious packages * Supports npm (package.json), PyPI (requirements.txt), and Go (go.mod) */ import type { SupplyChainResult, SupplyChainOptions } from './types.js'; /** * Main supply chain scan function */ export declare function runSupplyChainScan(dir: string, options?: SupplyChainOptions): Promise; //# sourceMappingURL=supply-chain.d.ts.map