UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 2.38 kB
/** * **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 eget` * @name `Eget` * @aliases `eget` * @dependencies `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.eget * // Or access via domain * const samePkg = pantry.githubcomzyedidiaeget * console.log(pkg === samePkg) // true * 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 eget'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eget']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['curl.se/ca-certs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.4', '1.3.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['eget']; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) eget -- $SHELL -i'; launchpadInstallCommand: 'launchpad install eget' }; export type EgetPackage = typeof egetPackage