UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.3 kB
/** * **gox** - A dead simple, no frills Go cross compile tool * * @domain `github.com/mitchellh/gox` * @programs `gox` * @version `1.0.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gox` * @name `gox` * @dependencies `go.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gox * // Or access via domain * const samePkg = pantry.githubcommitchellhgox * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gox" * console.log(pkg.description) // "A dead simple, no frills Go cross compile tool" * console.log(pkg.programs) // ["gox"] * console.log(pkg.versions[0]) // "1.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/mitchellh/gox.md * @see https://ts-pkgx.netlify.app/usage */ export declare const goxPackage: { /** * The display name of this package. */ name: 'gox'; /** * The canonical domain name for this package. */ domain: 'github.com/mitchellh/gox'; /** * Brief description of what this package does. */ description: 'A dead simple, no frills Go cross compile tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mitchellh/gox/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gox'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gox']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gox -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gox' }; export type GoxPackage = typeof goxPackage