ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.35 kB
TypeScript
/**
* **mp** - A CLI tool to make git changes across many repos, especially useful with Microservices.
*
* @domain `github.com/clever/microplane`
* @programs `mp`
* @version `0.0.36` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mp`
* @aliases `mp`
* @dependencies `git-scm.org^2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.mp
* // Or access via domain
* const samePkg = pantry.githubcomclevermicroplane
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "microplane"
* console.log(pkg.description) // "A CLI tool to make git changes across many repo..."
* console.log(pkg.programs) // ["mp"]
* console.log(pkg.versions[0]) // "0.0.36" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/clever/microplane.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mpPackage: {
/**
* The display name of this package.
*/
name: 'microplane';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/clever/microplane';
/**
* Brief description of what this package does.
*/
description: 'A CLI tool to make git changes across many repos, especially useful with Microservices.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/clever/microplane/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install mp';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mp'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['git-scm.org^2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.0.36', '0.0.35', '0.0.34'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['mp']
};
export type MpPackage = typeof mpPackage