UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.39 kB
/** * **borg** - Deduplicating archiver with compression and authenticated encryption. * * @domain `borgbackup.org` * @programs `borg`, `borgfs` * @version `1.4.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +borgbackup.org -- $SHELL -i` * @aliases `borg` * @dependencies `pkgx.sh^1`, `github.com/Cyan4973/xxHash^0.8` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.borg * // Or access via domain * const samePkg = pantry.borgbackuporg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "borgbackup.org" * 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: 'borgbackup.org'; /** * 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 +borgbackup.org -- $SHELL -i'; /** * 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['borg'] }; export type BorgPackage = typeof borgPackage