/** * **tilt** - Define your dev environment as code. For microservice apps on Kubernetes. * * @domain `tilt.dev` * @programs `tilt` * @version `0.36.0` (27 versions available) * @versions From newest version to oldest. * * @install `launchpad install tilt.dev` * @homepage https://tilt.dev/ * @buildDependencies `go.dev@~1.21`, `nodejs.org@^20`, `classic.yarnpkg.com` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tiltdev * console.log(pkg.name) // "tilt" * console.log(pkg.description) // "Define your dev environment as code. For micros..." * console.log(pkg.programs) // ["tilt"] * console.log(pkg.versions[0]) // "0.36.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tilt-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tiltdevPackage: { /** * The display name of this package. */ name: 'tilt'; /** * The canonical domain name for this package. */ domain: 'tilt.dev'; /** * Brief description of what this package does. */ description: 'Define your dev environment as code. For microservice apps on Kubernetes.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tilt.dev/package.yml'; homepageUrl: 'https://tilt.dev/'; githubUrl: 'https://github.com/tilt-dev/tilt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tilt.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tilt.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tilt.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tilt']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.21', 'nodejs.org@^20', 'classic.yarnpkg.com']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.36.0', '0.35.2', '0.35.1', '0.35.0', '0.34.5', '0.34.4', '0.34.3', '0.34.2', '0.34.1', '0.34.0', '0.33.22', '0.33.21', '0.33.20', '0.33.19', '0.33.18', '0.33.17', '0.33.16', '0.33.15', '0.33.14', '0.33.13', '0.33.12', '0.33.11', '0.33.10', '0.33.9', '0.33.8', '0.33.7', '0.33.6']; aliases: readonly [] }; export type TiltdevPackage = typeof tiltdevPackage