/** * **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.io` * @homepage https://yadm.io/ * @dependencies `git-scm.org`, `gnu.org/bash` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.yadmio * console.log(pkg.name) // "yadm" * 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 yadmioPackage: { /** * The display name of this package. */ name: 'yadm'; /** * 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: 'https://yadm.io/'; githubUrl: 'https://github.com/yadm-dev/yadm'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install yadm.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +yadm.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install yadm.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yadm']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['git-scm.org', 'gnu.org/bash']; buildDependencies: readonly []; /** * 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']; aliases: readonly [] }; export type YadmioPackage = typeof yadmioPackage