UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.15 kB
/** * **yadm** - Yet Another Dotfiles Manager * * @domain `yadm.io` * @programs `yadm` * @version `3.5.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install yadm` * @aliases `yadm` * @dependencies `git-scm.org`, `gnu.org/bash` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.yadm * // Or access via domain * const samePkg = pantry.yadmio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "yadm.io" * console.log(pkg.description) // "Yet Another Dotfiles Manager" * console.log(pkg.programs) // ["yadm"] * console.log(pkg.versions[0]) // "3.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/yadm-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const yadmPackage: { /** * The display name of this package. */ name: 'yadm.io'; /** * The canonical domain name for this package. */ domain: 'yadm.io'; /** * Brief description of what this package does. */ description: 'Yet Another Dotfiles Manager'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/yadm.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install yadm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yadm']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['git-scm.org', 'gnu.org/bash']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.0', '3.4.0', '3.3.0', '3.2.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['yadm'] }; export type YadmPackage = typeof yadmPackage