/** * Mojo package detector and reader for package-compatibility discovery. * * Parses `pixi.toml` for dependencies and reads * axm metadata from pixi environment cache at `.pixi/envs/`. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Mojo package detector. * * Scans `pixi.toml` in the project directory. Mojo-specific packages produce `pkg:mojo` * purls, while conda packages produce `pkg:conda` purls. * * @experimental This API is unstable and may change without notice. */ export declare const mojoDetector: PackageDetector; /** * Mojo package reader. * * Reads `axm.json` sidecar files from `.pixi/envs//conda-meta/` * in the project directory for each detected Mojo/conda package. * * @experimental This API is unstable and may change without notice. */ export declare const mojoReader: PackageReader; //# sourceMappingURL=mojo.d.ts.map