/** * **earthly** - Super simple build framework with fast, repeatable builds and an instantly familiar syntax – like Dockerfile and Makefile had a baby. * * @domain `earthly.dev/earthly` * @programs `earthly` * @version `0.8.16` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install earthly.dev/earthly` * @homepage https://earthly.dev/ * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.earthlydevearthly * console.log(pkg.name) // "earthly" * console.log(pkg.description) // "Super simple build framework with fast, repeata..." * console.log(pkg.programs) // ["earthly"] * console.log(pkg.versions[0]) // "0.8.16" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/earthly-dev/earthly.md * @see https://ts-pkgx.netlify.app/usage */ export declare const earthlydevearthlyPackage: { /** * The display name of this package. */ name: 'earthly'; /** * The canonical domain name for this package. */ domain: 'earthly.dev/earthly'; /** * Brief description of what this package does. */ description: 'Super simple build framework with fast, repeatable builds and an instantly familiar syntax – like Dockerfile and Makefile had a baby.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/earthly.dev/earthly/package.yml'; homepageUrl: 'https://earthly.dev/'; githubUrl: 'https://github.com/earthly/earthly'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install earthly.dev/earthly'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +earthly.dev/earthly -- $SHELL -i'; launchpadInstallCommand: 'launchpad install earthly.dev/earthly'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['earthly']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.16', '0.8.15']; aliases: readonly [] }; export type EarthlydevearthlyPackage = typeof earthlydevearthlyPackage