/** * **tools** - pkgx package * * @domain `golang.org/tools` * @version `0.39.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install golang.org/tools` * @buildDependencies `go.dev@~1.25` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.golangorgtools * console.log(pkg.name) // "tools" * console.log(pkg.versions[0]) // "0.39.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/golang-org/tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const golangorgtoolsPackage: { /** * The display name of this package. */ name: 'tools'; /** * The canonical domain name for this package. */ domain: 'golang.org/tools'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/golang.org/tools/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install golang.org/tools'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +golang.org/tools -- $SHELL -i'; launchpadInstallCommand: 'launchpad install golang.org/tools'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.25']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.39.0']; aliases: readonly [] }; export type GolangorgtoolsPackage = typeof golangorgtoolsPackage