ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.08 kB
TypeScript
/**
* **topgrade** - Upgrade all the things
*
* @domain `crates.io/topgrade`
* @programs `topgrade`
* @version `16.0.4` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install topgrade`
* @name `topgrade`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.topgrade
* // Or access via domain
* const samePkg = pantry.cratesiotopgrade
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "topgrade"
* console.log(pkg.description) // "Upgrade all the things"
* console.log(pkg.programs) // ["topgrade"]
* console.log(pkg.versions[0]) // "16.0.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/topgrade.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const topgradePackage: {
/**
* The display name of this package.
*/
name: 'topgrade';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/topgrade';
/**
* Brief description of what this package does.
*/
description: 'Upgrade all the things';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/topgrade/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install topgrade';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['topgrade'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['16.0.4', '16.0.3', '16.0.2', '16.0.1', '16.0.0', '15.0.0', '14.0.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TopgradePackage = typeof topgradePackage