UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **restic** - Fast, efficient and secure backup program * * @domain `restic.net/restic` * @programs `restic` * @version `0.18.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install restic` * @name `restic` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.restic * // Or access via domain * const samePkg = pantry.resticnetrestic * console.log(pkg === samePkg) // true * console.log(pkg.name) // "restic" * console.log(pkg.description) // "Fast, efficient and secure backup program" * console.log(pkg.programs) // ["restic"] * console.log(pkg.versions[0]) // "0.18.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/restic-net/restic.md * @see https://ts-pkgx.netlify.app/usage */ export declare const resticPackage: { /** * The display name of this package. */ name: 'restic'; /** * The canonical domain name for this package. */ domain: 'restic.net/restic'; /** * Brief description of what this package does. */ description: 'Fast, efficient and secure backup program'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/restic.net/restic/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install restic'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['restic']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.18.0', '0.17.3', '0.17.2', '0.17.1', '0.17.0', '0.16.5', '0.16.4', '0.16.3', '0.16.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ResticPackage = typeof resticPackage