pkgscan
pkgscan
is a simple and efficient tool to get detailed information about the packages installed in your project. With support from popular package managers such as npm
, pnpm
, and yarn
, you can easily retrieve information about package versions, dependencies, and other relevant information related to installed packages.
If you find this package useful for your projects, please consider supporting me by Buy Me a Coffee. It's a great way to help me maintain and improve this package in the future. Your support is truly appreciated!
Installation
npm
npx pkgscan [options]
npm install pkgscan
npm install -g pkgscan
CLI
Usage
pkgscan [options]
Options:
-p, --pkg The name of the package to retrieve information for.
-c, --cwd The current working directory of the project.
-h, --help Show help
Examples
pkgscan --pkg typescript
pkgscan --pkg typescript --cwd ./project-directory-path
API
import { getInstalledPackageDetails } from 'pkgscan';
const installedPackage = await getInstalledPackageDetails('typescript');
console.log(installedPackage);
const cwd = __dirname;
const installedPackage = await getInstalledPackageDetails('typescript', cwd);
console.log(installedPackage);
isDirectProjectDependency
used to determine whether a package is a direct dependency of a project or not. By using this variable, you can check whether a package is directly listed in the dependencies section of the project's package.json file or not.
Supported package managers:
Feedback
If you discover a bug, or have a suggestion for a feature request, please
submit an issue.
LICENSE
This extension is licensed under the MIT License