import { MrCliCommandDefinition } from '@cirrusct/mr-core'; export const list: MrCliCommandDefinition = { description: 'List Package(s)', name: 'list', options: [ { name: 'showConfig', flag: 'c', description: 'Show Configuration', }, { name: 'showDeps', description: 'Show Dependencies', }, { name: 'showDepsDeep', description: 'Show Dependencies including recursive', }, { name: 'showDepsIndirect', description: 'Include Indirect Dependencies', }, ], };