/** * Dart/Flutter pub 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"; /** * Pub package detector. * * Scans `pubspec.yaml` in the project directory and extracts dependencies * from `dependencies` and `dev_dependencies`. * * @experimental This API is unstable and may change without notice. */ export declare const pubDetector: PackageDetector; /** * Pub package reader. * * Reads `.dart_tool/package_config.json` to locate the package root, * then reads `pubspec.yaml` from that root and extracts the `axm` field. * * @experimental This API is unstable and may change without notice. */ export declare const pubReader: PackageReader; //# sourceMappingURL=pub.d.ts.map