/** * scan_dependencies Tool * * Scans project dependency files for known CVEs and malicious packages via OSV.dev: * - npm (package.json) — queries npm ecosystem * - pip (requirements.txt) — queries PyPI ecosystem * - maven (pom.xml) — queries Maven ecosystem * - gradle (build.gradle) — queries Maven ecosystem * - go (go.mod) — queries Go ecosystem * * Architecture: direct OSV.dev API calls (https://api.osv.dev/v1/query). * No CLI shell-out — the CLI does not scan dependency files for CVEs. * Malicious packages (MAL-* IDs) are detected as a byproduct of OSV queries. */ export declare const scanDependenciesTool: { name: string; description: string; readOnlyHint: boolean; inputSchema: { type: string; properties: { content: { type: string; description: string; }; type: { type: string; enum: string[]; description: string; }; }; required: string[]; }; }; export declare function handleScanDependencies(args: any): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=dependencies.d.ts.map