ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.43 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`
* @name `mp`
* @dependencies `git-scm.org^2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.mp
* // Or access via domain
* const samePkg = pantry.githubcomclevermicroplane
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mp"
* 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: 'mp';
/**
* 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 [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) mp -- $SHELL -i';
launchpadInstallCommand: 'launchpad install mp'
};
export type MpPackage = typeof mpPackage