/** * Julia package detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Julia package detector. * * Scans `Project.toml` in the project directory and extracts dependencies * from the `[deps]` section. All purls are versionless since Julia * identifies packages by UUID. * * @experimental This API is unstable and may change without notice. */ export declare const juliaDetector: PackageDetector; /** * Julia package reader. * * Reads `[axm]` section from `~/.julia/packages///Project.toml` * for each detected Julia package. * * @experimental This API is unstable and may change without notice. */ export declare const juliaReader: PackageReader; //# sourceMappingURL=julia.d.ts.map