UNPKG

list-installed

Version:

Checks that all dependencies in your package.json have supported versions installed

16 lines (11 loc) 808 B
/** @typedef {import('./lib/list.js').FilterCallback} FilterCallback */ /** @typedef {import('./lib/list.js').ListInstalledOptions} ListInstalledOptions */ /** @typedef {import('./lib/list.js').NormalizedPackageJson} NormalizedPackageJson */ /** @typedef {import('./lib/lookup.js').LookupData} LookupData */ /** @typedef {import('./lib/lookup.js').WorkspaceLookupOptions} WorkspaceLookupOptions */ // Modern alternative to https://www.npmjs.com/package/readdir-scoped-modules export { readdirModuleTree, readdirScoped } from './lib/fs.js'; // Modern alternative to https://www.npmjs.com/package/read-installed export { listInstalled, listInstalledGenerator } from './lib/list.js'; // Helper for working with listInstalled in a mono-repo with workspaces export { workspaceLookup } from './lib/lookup.js';