PJ is a small utility for exploring package.json's from the command line.
If you've ever found yourself bouncing between projects a having to open package.json over and over to check script names or other details, you might find PJ helpful.
npm i -g @emlindgren/pj
PJ is very simple:
pj
prints all fields available inside the package.json in the current directorypj -a
prints the entire contents of package.jsonpj [term]
prints the contents of a specific field.term
does not have to be complete, pj looks for word-start matches, sopj sc
will likely print your package.json scripts, whilepj des
will print your package.json description