/** * **task** - A task runner / simpler Make alternative written in Go * * @domain `taskfile.dev` * @programs `task` * @version `3.45.5` (35 versions available) * @versions From newest version to oldest. * * @install `launchpad install taskfile.dev` * @homepage https://taskfile.dev * @buildDependencies `go.dev@~1.23` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.taskfiledev * 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.45.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/taskfile-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const taskfiledevPackage: { /** * 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: 'https://taskfile.dev'; githubUrl: 'https://github.com/go-task/task'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install taskfile.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +taskfile.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install taskfile.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['task']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.23']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.45.5', '3.45.4', '3.45.3', '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']; aliases: readonly [] }; export type TaskfiledevPackage = typeof taskfiledevPackage