UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.44 kB
/** * **borg** - Deduplicating archiver with compression and authenticated encryption. * * @domain `borgbackup.org` * @programs `borg`, `borgfs` * @version `1.4.1` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install borg` * @name `borg` * @dependencies `pkgx.sh^1`, `github.com/Cyan4973/xxHash^0.8` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.borg * // Or access via domain * const samePkg = pantry.borgbackuporg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "borg" * console.log(pkg.description) // "Deduplicating archiver with compression and aut..." * console.log(pkg.programs) // ["borg", "borgfs"] * console.log(pkg.versions[0]) // "1.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/borgbackup-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const borgPackage: { /** * The display name of this package. */ name: 'borg'; /** * The canonical domain name for this package. */ domain: 'borgbackup.org'; /** * Brief description of what this package does. */ description: 'Deduplicating archiver with compression and authenticated encryption.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/borgbackup.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 borg'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['borg', 'borgfs']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1', 'github.com/Cyan4973/xxHash^0.8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.1', '1.2.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +borgbackup.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install borg' }; export type BorgPackage = typeof borgPackage