/** * **go** - The Go programming language * * @domain `go.dev` * @programs `go`, `gofmt` * @version `1.25.5` (83 versions available) * @versions From newest version to oldest. * * @install `launchpad install go.dev` * @name `go` * @homepage https://go.dev * @dependencies `openssl.org^1 # for ca-certificates` * @buildDependencies `gnu.org/m4@1`, `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.go * // Or access via domain * const samePkg = pantry.godev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "go" * console.log(pkg.description) // "The Go programming language" * console.log(pkg.programs) // ["go", "gofmt"] * console.log(pkg.versions[0]) // "1.25.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/go-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const goPackage: { /** * The display name of this package. */ name: 'go'; /** * The canonical domain name for this package. */ domain: 'go.dev'; /** * Brief description of what this package does. */ description: 'The Go programming language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/go.dev/package.yml'; homepageUrl: 'https://go.dev'; githubUrl: 'https://github.com/golang/go'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install go.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +go.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install go.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['go', 'gofmt']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1 # for ca-certificates']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/m4@1', 'go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.25.5', '1.25.4', '1.25.3', '1.25.2', '1.25.1', '1.25.0', '1.24.11', '1.24.10', '1.24.9', '1.24.8', '1.24.7', '1.24.6', '1.24.5', '1.24.4', '1.24.3', '1.24.2', '1.24.1', '1.24.0', '1.23.12', '1.23.11', '1.23.10', '1.23.9', '1.23.8', '1.23.7', '1.23.6', '1.23.5', '1.23.4', '1.23.3', '1.23.2', '1.23.1', '1.23.0', '1.22.12', '1.22.11', '1.22.10', '1.22.9', '1.22.8', '1.22.7', '1.22.6', '1.22.5', '1.22.4', '1.22.3', '1.22.2', '1.22.1', '1.22.0', '1.21.13', '1.21.12', '1.21.11', '1.21.10', '1.21.8', '1.21.7', '1.21.6', '1.21.5', '1.21.4', '1.21.3', '1.21.2', '1.21.1', '1.21.0', '1.20.14', '1.20.13', '1.20.12', '1.20.11', '1.20.10', '1.20.9', '1.20.8', '1.20.7', '1.20.6', '1.20.5', '1.20.4', '1.20.3', '1.20.2', '1.20.1', '1.19.12', '1.19.11', '1.19.10', '1.19.9', '1.19.8', '1.19.5', '1.19.4', '1.19.3', '1.19.2', '1.18.10', '1.17.13', '1.16.15']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GoPackage = typeof goPackage