/** * **encore-go** - Encore's rolling fork of Go with added automatic tracing & instrumentation * * @domain `encore.dev/go` * @programs `encore-go` * @version `1.25.4` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install encore.dev/go` * @homepage https://encore.dev * @dependencies `curl.se/ca-certs` * @buildDependencies `curl.se`, `gnu.org/tar` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.encoredevgo * console.log(pkg.name) // "encore-go" * console.log(pkg.description) // "Encore's rolling fork of Go with added automati..." * console.log(pkg.programs) // ["encore-go"] * console.log(pkg.versions[0]) // "1.25.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/encore-dev/go.md * @see https://ts-pkgx.netlify.app/usage */ export declare const encoredevgoPackage: { /** * The display name of this package. */ name: 'encore-go'; /** * The canonical domain name for this package. */ domain: 'encore.dev/go'; /** * Brief description of what this package does. */ description: 'Encore\'s rolling fork of Go with added automatic tracing & instrumentation'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/encore.dev/go/package.yml'; homepageUrl: 'https://encore.dev'; githubUrl: 'https://github.com/encoredev/go'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install encore.dev/go'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +encore.dev/go -- $SHELL -i'; launchpadInstallCommand: 'launchpad install encore.dev/go'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['encore-go']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se', 'gnu.org/tar']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.25.4', '1.23.0', '1.22.5', '1.22.0', '1.21.6', '1.21.5', '1.21.4', '1.21.3', '1.21.1']; aliases: readonly [] }; export type EncoredevgoPackage = typeof encoredevgoPackage