ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.46 kB
TypeScript
/**
* **task** - A task runner / simpler Make alternative written in Go
*
* @domain `taskfile.dev`
* @programs `task`
* @version `3.44.1` (32 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install task`
* @name `task`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.task
* // Or access via domain
* const samePkg = pantry.taskfiledev
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "task"
* console.log(pkg.description) // "A task runner / simpler Make alternative writte..."
* console.log(pkg.programs) // ["task"]
* console.log(pkg.versions[0]) // "3.44.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/taskfile-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const taskPackage: {
/**
* The display name of this package.
*/
name: 'task';
/**
* The canonical domain name for this package.
*/
domain: 'taskfile.dev';
/**
* Brief description of what this package does.
*/
description: 'A task runner / simpler Make alternative written in Go';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/taskfile.dev/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install task';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['task'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.44.1', '3.44.0', '3.43.3', '3.43.2', '3.43.1', '3.42.1', '3.42.0', '3.41.0', '3.40.1', '3.40.0', '3.39.2', '3.39.1', '3.39.0', '3.38.0', '3.37.2', '3.37.1', '3.37.0', '3.36.0', '3.35.1', '3.35.0', '3.34.1', '3.34.0', '3.33.1', '3.33.0', '3.32.0', '3.31.0', '3.30.1', '3.30.0', '3.29.1', '3.28.0', '3.27.1', '3.27.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) task -- $SHELL -i';
launchpadInstallCommand: 'launchpad install task'
};
export type TaskPackage = typeof taskPackage