/** * npm 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"; /** * npm package detector. * * Scans `package.json` in the project directory and extracts dependencies * from `dependencies`, `devDependencies`, and `peerDependencies`. * * @experimental This API is unstable and may change without notice. */ export declare const npmDetector: PackageDetector; /** * npm package reader. * * Reads `node_modules//package.json` for each detected npm package * and extracts the `"axm"` field containing recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const npmReader: PackageReader; //# sourceMappingURL=npm.d.ts.map