/** * **Eget** - Easily install prebuilt binaries from GitHub. * * @domain `github.com/zyedidia/eget` * @programs `eget` * @version `1.3.4` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/zyedidia/eget` * @dependencies `curl.se/ca-certs` * @buildDependencies `go.dev`, `pandoc.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomzyedidiaeget * console.log(pkg.name) // "Eget" * console.log(pkg.description) // "Easily install prebuilt binaries from GitHub." * console.log(pkg.programs) // ["eget"] * console.log(pkg.versions[0]) // "1.3.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/zyedidia/eget.md * @see https://ts-pkgx.netlify.app/usage */ export declare const egetPackage: { /** * The display name of this package. */ name: 'Eget'; /** * The canonical domain name for this package. */ domain: 'github.com/zyedidia/eget'; /** * Brief description of what this package does. */ description: 'Easily install prebuilt binaries from GitHub.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/zyedidia/eget/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/zyedidia/eget'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/zyedidia/eget'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/zyedidia/eget -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/zyedidia/eget'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eget']; 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 ['go.dev', 'pandoc.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.4', '1.3.3']; aliases: readonly [] }; export type EgetPackage = typeof egetPackage