ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.57 kB
TypeScript
/**
* **rclone** - "rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files
*
* @domain `rclone.org`
* @programs `rclone`
* @version `1.70.3` (20 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install rclone`
* @name `rclone`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.rclone
* // Or access via domain
* const samePkg = pantry.rcloneorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "rclone"
* console.log(pkg.description) // ""rsync for cloud storage" - Google Drive, S3, D..."
* console.log(pkg.programs) // ["rclone"]
* console.log(pkg.versions[0]) // "1.70.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/rclone-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const rclonePackage: {
/**
* The display name of this package.
*/
name: 'rclone';
/**
* The canonical domain name for this package.
*/
domain: 'rclone.org';
/**
* Brief description of what this package does.
*/
description: '"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rclone.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 rclone';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rclone'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.70.3', '1.70.2', '1.70.1', '1.70.0', '1.69.3', '1.69.2', '1.69.1', '1.69.0', '1.68.2', '1.68.1', '1.68.0', '1.67.0', '1.66.0', '1.65.2', '1.65.1', '1.65.0', '1.64.2', '1.64.1', '1.64.0', '1.63.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) rclone -- $SHELL -i';
launchpadInstallCommand: 'launchpad install rclone'
};
export type RclonePackage = typeof rclonePackage