mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-01 20:48:41 -04:00
a391db94aac82a1781998cd047b7ec6e430e5935
pnpm-list
List installed packages in a symlinked `node_modules`
Install
Install it via npm.
npm install pnpm-list
Usage
'use strict'
const pnpmList = require('pnpm-list').default
pnpmList(__dirname, {depth: 2})
.then(output => {
console.log(output)
//> pnpm-list@0.0.1 /home/zkochan/src/pnpm/pnpm-list/example
// └─┬ write-pkg@3.1.0
// ├─┬ sort-keys@2.0.0
// │ └── is-plain-obj@1.1.0
// └─┬ write-json-file@2.2.0
// ├── detect-indent@5.0.0
// ├── graceful-fs@4.1.11
// ├── make-dir@1.0.0
// ├── pify@2.3.0
// ├── sort-keys@1.1.2
// └── write-file-atomic@2.1.0
})
License
Languages
TypeScript
98.8%
JavaScript
0.8%
Shell
0.4%