ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 3.08 kB
TypeScript
/**
* **dagger** - An engine to run your pipelines in containers
*
* @domain `dagger.io`
* @programs `dagger`
* @version `0.18.16` (97 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install dagger`
* @name `dagger`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.dagger
* // Or access via domain
* const samePkg = pantry.daggerio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "dagger"
* console.log(pkg.description) // "An engine to run your pipelines in containers"
* console.log(pkg.programs) // ["dagger"]
* console.log(pkg.versions[0]) // "0.18.16" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/dagger-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const daggerPackage: {
/**
* The display name of this package.
*/
name: 'dagger';
/**
* The canonical domain name for this package.
*/
domain: 'dagger.io';
/**
* Brief description of what this package does.
*/
description: 'An engine to run your pipelines in containers';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dagger.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 dagger';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dagger'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.18.16', '0.18.15', '0.18.14', '0.18.13', '0.18.12', '0.18.11', '0.18.10', '0.18.9', '0.18.8', '0.18.7', '0.18.6', '0.18.5', '0.18.4', '0.18.3', '0.18.2', '0.18.1', '0.18.0', '0.17.2', '0.17.1', '0.17.0', '0.16.3', '0.16.2', '0.16.1', '0.16.0', '0.15.4', '0.15.3', '0.15.2', '0.15.1', '0.15.0', '0.14.0', '0.13.7', '0.13.6', '0.13.5', '0.13.4', '0.13.3', '0.13.2', '0.13.1', '0.13.0', '0.12.7', '0.12.6', '0.12.5', '0.12.4', '0.12.3', '0.12.2', '0.12.1', '0.12.0', '0.11.9', '0.11.8', '0.11.7', '0.11.6', '0.11.5', '0.11.4', '0.11.3', '0.11.2', '0.11.1', '0.11.0', '0.10.3', '0.10.2', '0.10.1', '0.10.0', '0.9.11', '0.9.10', '0.9.9', '0.9.8', '0.9.7', '0.9.6', '0.9.5', '0.9.4', '0.9.3', '0.9.2', '0.9.1', '0.9.0', '0.8.8', '0.8.7', '0.8.6', '0.8.5', '0.8.4', '0.8.3', '0.8.2', '0.8.1', '0.8.0', '0.6.4', '0.6.3', '0.6.2', '0.6.1', '0.6.0', '0.5.3', '0.5.2', '0.5.1', '0.5.0', '0.4.2', '0.4.1', '0.4.0', '0.3.13', '0.3.12', '0.3.10', '0.3.9'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) dagger -- $SHELL -i';
launchpadInstallCommand: 'launchpad install dagger'
};
export type DaggerPackage = typeof daggerPackage