/** * **gci** - GCI, a tool that control golang package import order and make it always deterministic. * * @domain `github.com/daixiang0/gci` * @programs `gci` * @version `0.13.7` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/daixiang0/gci` * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomdaixiang0gci * console.log(pkg.name) // "gci" * console.log(pkg.description) // "GCI, a tool that control golang package import ..." * console.log(pkg.programs) // ["gci"] * console.log(pkg.versions[0]) // "0.13.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/daixiang0/gci.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gciPackage: { /** * The display name of this package. */ name: 'gci'; /** * The canonical domain name for this package. */ domain: 'github.com/daixiang0/gci'; /** * Brief description of what this package does. */ description: 'GCI, a tool that control golang package import order and make it always deterministic.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/daixiang0/gci/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/daixiang0/gci'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/daixiang0/gci'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/daixiang0/gci -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/daixiang0/gci'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gci']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.7', '0.13.6', '0.13.5', '0.13.4', '0.13.3', '0.13.2', '0.13.1', '0.13.0', '0.12.3', '0.12.2', '0.12.1', '0.12.0', '0.11.2', '0.11.1']; aliases: readonly [] }; export type GciPackage = typeof gciPackage