ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.4 kB
TypeScript
/**
* **hatch** - Modern, extensible Python project management
*
* @domain `pypa.io/hatch`
* @programs `hatch`, `hatchling`
* @version `1.27.0` (17 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +pypa.io/hatch -- $SHELL -i`
* @name `hatch`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.hatch
* // Or access via domain
* const samePkg = pantry.pypaiohatch
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "hatch"
* console.log(pkg.description) // "Modern, extensible Python project management"
* console.log(pkg.programs) // ["hatch", "hatchling"]
* console.log(pkg.versions[0]) // "1.27.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pypa-io/hatch.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const hatchPackage: {
/**
* The display name of this package.
*/
name: 'hatch';
/**
* The canonical domain name for this package.
*/
domain: 'pypa.io/hatch';
/**
* Brief description of what this package does.
*/
description: 'Modern, extensible Python project management';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pypa.io/hatch/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +pypa.io/hatch -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['hatch', 'hatchling'];
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 ['1.27.0', '1.26.3', '1.26.2', '1.26.1', '1.26.0', '1.25.0', '1.24.2', '1.24.1', '1.24.0', '1.23.0', '1.22.5', '1.22.4', '1.22.3', '1.22.2', '1.22.1', '1.22.0', '1.21.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type HatchPackage = typeof hatchPackage