/** * GitHub repository trust signal scanner. * * Analyzes GitHub repo metadata for indicators of fake/malicious repos: * star-farming, new accounts, suspicious releases, lure READMEs, etc. * Uses `gh` CLI for API access (no token configuration needed). */ import type { Finding } from "./types.js"; /** * Parse a GitHub URL into owner/repo. */ export declare function parseGitHubUrl(url: string): { owner: string; repo: string; } | null; /** * Analyze a GitHub repo for trust signals. */ export declare function analyzeGitHubTrust(owner: string, repo: string): Finding[]; /** * Scan README content for lure patterns. */ export declare function scanReadmeLures(readmeContent: string, relativePath: string): Finding[]; //# sourceMappingURL=github-trust-scanner.d.ts.map