ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.89 kB
TypeScript
/**
* **huggingface-cli** - The official Python client for the Huggingface Hub.
*
* @domain `huggingface.co`
* @programs `huggingface-cli`
* @version `0.33.0` (56 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install huggingface-cli`
* @aliases `huggingface-cli`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.huggingfacecli
* // Or access via domain
* const samePkg = pantry.huggingfaceco
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "huggingface.co"
* console.log(pkg.description) // "The official Python client for the Huggingface ..."
* console.log(pkg.programs) // ["huggingface-cli"]
* console.log(pkg.versions[0]) // "0.33.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/huggingface-co.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const huggingfacecliPackage: {
/**
* The display name of this package.
*/
name: 'huggingface.co';
/**
* The canonical domain name for this package.
*/
domain: 'huggingface.co';
/**
* Brief description of what this package does.
*/
description: 'The official Python client for the Huggingface Hub.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/huggingface.co/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install huggingface-cli';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['huggingface-cli'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.33.0', '0.32.6', '0.32.5', '0.32.4', '0.32.3', '0.32.2', '0.32.1', '0.32.0', '0.31.4', '0.31.2', '0.31.0', '0.30.2', '0.30.1', '0.30.0', '0.29.3', '0.29.2', '0.29.1', '0.29.0', '0.28.1', '0.28.0', '0.27.1', '0.27.0', '0.26.5', '0.26.3', '0.26.2', '0.26.1', '0.26.0', '0.25.2', '0.25.1', '0.25.0', '0.24.7', '0.24.6', '0.24.5', '0.24.4', '0.24.3', '0.24.2', '0.24.1', '0.24.0', '0.23.5', '0.23.4', '0.23.3', '0.23.2', '0.23.1', '0.23.0', '0.22.2', '0.22.1', '0.22.0', '0.21.4', '0.21.3', '0.21.2', '0.21.0', '0.20.3', '0.20.2', '0.20.1', '0.20.0', '0.19.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['huggingface-cli']
};
export type HuggingfacecliPackage = typeof huggingfacecliPackage