Show manifest of workspace
$ yarn plugin import https://github.com/indooorsman/yarn-plugins/releases/download/yarn-plugin-manifest%401.0.0/plugin-manifest.js
$ yarn manifest --help
# or
$ yarn m --help
-f,--fields #0 only show specific fields, separate by comma
--json show as json
--oneline show in oneline
show all fields in package.json
$ yarn manifest
# name: yarn-plugins
# version: 1.0.0
# ...other fields
show specific fields
$ yarn manifest --fields=name,version
# name: yarn-plugins
# version: 1.0.0
show as json
$ yarn manifest --fields=name --json
# {
# "name": "yarn-plugins"
# }
show in oneline
$ yarn manifest --fields=name,version --oneline
# name: yarn-plugins, version: 1.0.0