UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.34 kB
/** * **amp** - A complete text editor for your terminal. * * @domain `amp.rs` * @programs `amp` * @version `0.7.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install amp` * @aliases `amp` * @dependencies `zlib.net@1`, `libgit2.org@1`, `linux:openssl.org@1.1` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.amp * // Or access via domain * const samePkg = pantry.amprs * console.log(pkg === samePkg) // true * console.log(pkg.name) // "amp.rs" * console.log(pkg.description) // "A complete text editor for your terminal." * console.log(pkg.programs) // ["amp"] * console.log(pkg.versions[0]) // "0.7.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/amp-rs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ampPackage: { /** * The display name of this package. */ name: 'amp.rs'; /** * The canonical domain name for this package. */ domain: 'amp.rs'; /** * Brief description of what this package does. */ description: 'A complete text editor for your terminal.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/amp.rs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install amp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['amp']; 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 ['zlib.net@1', 'libgit2.org@1', 'linux:openssl.org@1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['amp'] }; export type AmpPackage = typeof ampPackage