/** * **acorn** - A simple application deployment framework built on Kubernetes * * @domain `acorn.io/acorn-cli` * @programs `acorn` * @version `0.10.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install acorn.io/acorn-cli` * @homepage https://docs.acorn.io/ * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.acornioacorncli * console.log(pkg.name) // "acorn" * console.log(pkg.description) // "A simple application deployment framework built..." * console.log(pkg.programs) // ["acorn"] * console.log(pkg.versions[0]) // "0.10.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/acorn-io/acorn-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const acornioacorncliPackage: { /** * The display name of this package. */ name: 'acorn'; /** * The canonical domain name for this package. */ domain: 'acorn.io/acorn-cli'; /** * Brief description of what this package does. */ description: 'A simple application deployment framework built on Kubernetes'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/acorn.io/acorn-cli/package.yml'; homepageUrl: 'https://docs.acorn.io/'; githubUrl: 'https://github.com/acorn-io/runtime'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install acorn.io/acorn-cli'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +acorn.io/acorn-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install acorn.io/acorn-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['acorn']; 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.10.1', '0.10.0', '0.9.2']; aliases: readonly [] }; export type AcornioacorncliPackage = typeof acornioacorncliPackage