ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.31 kB
TypeScript
/**
* **versio** - A version number manager
*
* @domain `crates.io/versio`
* @programs `versio`
* @version `0.8.5` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install versio`
* @name `versio`
* @dependencies `openssl.org^1.1`, `gnupg.org/libgpg-error@1`, `gnupg.org/gpgme^1.13`, ... (+2 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.versio
* // Or access via domain
* const samePkg = pantry.cratesioversio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "versio"
* console.log(pkg.description) // "A version number manager"
* console.log(pkg.programs) // ["versio"]
* console.log(pkg.versions[0]) // "0.8.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/versio.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const versioPackage: {
/**
* The display name of this package.
*/
name: 'versio';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/versio';
/**
* Brief description of what this package does.
*/
description: 'A version number manager';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/versio/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install versio';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['versio'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1', 'gnupg.org/libgpg-error@1', 'gnupg.org/gpgme^1.13', 'gnupg.org/libassuan', 'zlib.net^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.8.5', '0.8.3', '0.7.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type VersioPackage = typeof versioPackage