/** * **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.co` * @homepage https://fury.co/guide/cli * @buildDependencies `go.dev@^1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.furyco * console.log(pkg.name) // "fury" * 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 furycoPackage: { /** * The display name of this package. */ name: 'fury'; /** * 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: 'https://fury.co/guide/cli'; githubUrl: 'https://github.com/gemfury/cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fury.co'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fury.co -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fury.co'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fury']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.21']; /** * 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']; aliases: readonly [] }; export type FurycoPackage = typeof furycoPackage