/** * CRAN (R) package detector and reader for package-compatibility discovery. * * Parses `DESCRIPTION` files for `Depends`, `Imports`, and `Suggests` fields. * Reads `Config/axm` prefixed fields from installed package DESCRIPTION files. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * CRAN package detector. * * Scans `DESCRIPTION` file in the project directory and extracts dependencies * from `Depends`, `Imports`, and `Suggests` fields. * * @experimental This API is unstable and may change without notice. */ export declare const cranDetector: PackageDetector; /** * CRAN package reader. * * Reads `Config/axm` prefixed fields from `//DESCRIPTION` * for each detected CRAN package and extracts recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const cranReader: PackageReader; //# sourceMappingURL=cran.d.ts.map