ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.49 kB
TypeScript
/**
* **tox** - Command line driven CI frontend and development task automation tool.
*
* @domain `tox.wiki`
* @programs `tox`
* @version `4.28.4` (21 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tox`
* @name `tox`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.tox
* // Or access via domain
* const samePkg = pantry.toxwiki
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "tox"
* console.log(pkg.description) // "Command line driven CI frontend and development..."
* console.log(pkg.programs) // ["tox"]
* console.log(pkg.versions[0]) // "4.28.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/tox-wiki.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const toxPackage: {
/**
* The display name of this package.
*/
name: 'tox';
/**
* The canonical domain name for this package.
*/
domain: 'tox.wiki';
/**
* Brief description of what this package does.
*/
description: 'Command line driven CI frontend and development task automation tool.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tox.wiki/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install tox';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['tox'];
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 ['4.28.4', '4.28.3', '4.28.2', '4.28.1', '4.28.0', '4.27.0', '4.26.0', '4.25.0', '4.24.2', '4.24.1', '4.24.0', '4.23.2', '4.23.1', '4.23.0', '4.22.0', '4.21.2', '4.21.1', '4.21.0', '4.20.0', '4.19.0', '4.18.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) tox -- $SHELL -i';
launchpadInstallCommand: 'launchpad install tox'
};
export type ToxPackage = typeof toxPackage