ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.3 kB
TypeScript
/**
* **gdown** - Google Drive Public File Downloader when Curl/Wget Fails
*
* @domain `wkentaro.github.io/gdown`
* @programs `gdown`
* @version `5.2.0` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gdown`
* @name `gdown`
* @dependencies `python.org~3.11`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gdown
* // Or access via domain
* const samePkg = pantry.wkentarogithubiogdown
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gdown"
* console.log(pkg.description) // "Google Drive Public File Downloader when Curl/W..."
* console.log(pkg.programs) // ["gdown"]
* console.log(pkg.versions[0]) // "5.2.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/wkentaro-github-io/gdown.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gdownPackage: {
/**
* The display name of this package.
*/
name: 'gdown';
/**
* The canonical domain name for this package.
*/
domain: 'wkentaro.github.io/gdown';
/**
* Brief description of what this package does.
*/
description: 'Google Drive Public File Downloader when Curl/Wget Fails';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wkentaro.github.io/gdown/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/wkentaro/gdown';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gdown';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gdown'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.11'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.2.0', '5.1.0', '5.0.1', '5.0.0', '4.7.3', '4.7.2', '4.7.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GdownPackage = typeof gdownPackage