ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.37 kB
TypeScript
/**
* **twine** - Utilities for interacting with PyPI
*
* @domain `github.com/pypa/twine`
* @programs `twine`
* @version `6.1.0` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install twine`
* @name `twine`
* @dependencies `python.org>=3.7<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.twine
* // Or access via domain
* const samePkg = pantry.githubcompypatwine
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "twine"
* console.log(pkg.description) // "Utilities for interacting with PyPI"
* console.log(pkg.programs) // ["twine"]
* console.log(pkg.versions[0]) // "6.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/pypa/twine.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const twinePackage: {
/**
* The display name of this package.
*/
name: 'twine';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/pypa/twine';
/**
* Brief description of what this package does.
*/
description: 'Utilities for interacting with PyPI';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pypa/twine/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install twine';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['twine'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3.7<3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['6.1.0', '6.0.1', '6.0.0', '5.1.1', '5.1.0', '5.0.0', '4.0.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) twine -- $SHELL -i';
launchpadInstallCommand: 'launchpad install twine'
};
export type TwinePackage = typeof twinePackage