UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.25 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 the package * 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'] }; export type EgetPackage = typeof egetPackage