ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.33 kB
TypeScript
/**
* **cointop** - A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀
*
* @domain `cointop.sh`
* @programs `cointop`
* @version `1.6.10` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cointop`
* @aliases `cointop`
* @dependencies `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.cointop
* // Or access via domain
* const samePkg = pantry.cointopsh
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cointop.sh"
* console.log(pkg.description) // "A fast and lightweight interactive terminal bas..."
* console.log(pkg.programs) // ["cointop"]
* console.log(pkg.versions[0]) // "1.6.10" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/cointop-sh.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cointopPackage: {
/**
* The display name of this package.
*/
name: 'cointop.sh';
/**
* The canonical domain name for this package.
*/
domain: 'cointop.sh';
/**
* Brief description of what this package does.
*/
description: 'A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies 🚀';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cointop.sh/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cointop';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cointop'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.6.10'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['cointop']
};
export type CointopPackage = typeof cointopPackage