ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.37 kB
TypeScript
/**
* **hatch** - Modern, extensible Python project management
*
* @domain `hatch.pypa.io`
* @programs `hatch`
* @version `1.14.1` (18 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install hatch`
* @aliases `hatch`
* @dependencies `python.org>=3<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.hatch
* // Or access via domain
* const samePkg = pantry.hatchpypaio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "hatch.pypa.io"
* console.log(pkg.description) // "Modern, extensible Python project management"
* console.log(pkg.programs) // ["hatch"]
* console.log(pkg.versions[0]) // "1.14.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/hatch-pypa-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const hatchPackage: {
/**
* The display name of this package.
*/
name: 'hatch.pypa.io';
/**
* The canonical domain name for this package.
*/
domain: 'hatch.pypa.io';
/**
* Brief description of what this package does.
*/
description: 'Modern, extensible Python project management';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hatch.pypa.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install hatch';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['hatch'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3<3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.14.1', '1.14.0', '1.13.0', '1.12.0', '1.11.1', '1.11.0', '1.10.0', '1.9.7', '1.9.6', '1.9.5', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.1', '1.8.0', '1.7.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['hatch']
};
export type HatchPackage = typeof hatchPackage