UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.51 kB
/** * **alacritty** - A cross-platform, OpenGL terminal emulator. * * @domain `alacritty.org` * @programs `alacritty` * @version `0.15.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install alacritty` * @aliases `alacritty` * @dependencies `linux:freetype.org`, `linux:freedesktop.org/fontconfig` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.alacritty * // Or access via domain * const samePkg = pantry.alacrittyorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "alacritty.org" * console.log(pkg.description) // "A cross-platform, OpenGL terminal emulator." * console.log(pkg.programs) // ["alacritty"] * console.log(pkg.versions[0]) // "0.15.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/alacritty-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const alacrittyPackage: { /** * The display name of this package. */ name: 'alacritty.org'; /** * The canonical domain name for this package. */ domain: 'alacritty.org'; /** * Brief description of what this package does. */ description: 'A cross-platform, OpenGL terminal emulator.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/alacritty.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install alacritty'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['alacritty']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:freetype.org', 'linux:freedesktop.org/fontconfig']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.1', '0.15.0', '0.14.0', '0.13.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['alacritty'] }; export type AlacrittyPackage = typeof alacrittyPackage