UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.92 kB
/** * **fury** - Gemfury CLI * * @domain `fury.co` * @programs `fury` * @version `0.23.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install fury` * @aliases `fury` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.fury * // Or access via domain * const samePkg = pantry.furyco * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fury.co" * console.log(pkg.description) // "Gemfury CLI" * console.log(pkg.programs) // ["fury"] * console.log(pkg.versions[0]) // "0.23.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fury-co.md * @see https://ts-pkgx.netlify.app/usage */ export declare const furyPackage: { /** * The display name of this package. */ name: 'fury.co'; /** * The canonical domain name for this package. */ domain: 'fury.co'; /** * Brief description of what this package does. */ description: 'Gemfury CLI'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fury.co/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/gemfury/cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fury'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fury']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.23.0', '0.22.0', '0.21.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['fury'] }; export type FuryPackage = typeof furyPackage