UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.63 kB
/** * **rsync** - An open source utility that provides fast incremental file transfer. It also has useful features for backup and restore operations among many other use cases. * * @domain `rsync.samba.org` * @programs `rsync`, `rsync-ssl` * @version `3.4.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +rsync.samba.org -- $SHELL -i` * @aliases `rsync` * @dependencies `zlib.net^1`, `facebook.com/zstd^1`, `lz4.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rsync * // Or access via domain * const samePkg = pantry.rsyncsambaorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rsync.samba.org" * console.log(pkg.description) // "An open source utility that provides fast incre..." * console.log(pkg.programs) // ["rsync", "rsync-ssl"] * console.log(pkg.versions[0]) // "3.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rsync-samba-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rsyncPackage: { /** * The display name of this package. */ name: 'rsync.samba.org'; /** * The canonical domain name for this package. */ domain: 'rsync.samba.org'; /** * Brief description of what this package does. */ description: 'An open source utility that provides fast incremental file transfer. It also has useful features for backup and restore operations among many other use cases.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rsync.samba.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 +rsync.samba.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rsync', 'rsync-ssl']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1', 'facebook.com/zstd^1', 'lz4.org^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.1', '3.4.0', '3.3.0', '3.2.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rsync'] }; export type RsyncPackage = typeof rsyncPackage