/** * **cue** - The home of the CUE language! Validate and define text-based and dynamic configuration * * @domain `cuelang.org` * @programs `cue` * @version `0.15.1` (26 versions available) * @versions From newest version to oldest. * * @install `launchpad install cuelang.org` * @homepage https://cuelang.org/ * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cuelangorg * console.log(pkg.name) // "cue" * console.log(pkg.description) // "The home of the CUE language! Validate and defi..." * console.log(pkg.programs) // ["cue"] * console.log(pkg.versions[0]) // "0.15.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cuelang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cuelangorgPackage: { /** * The display name of this package. */ name: 'cue'; /** * The canonical domain name for this package. */ domain: 'cuelang.org'; /** * Brief description of what this package does. */ description: 'The home of the CUE language! Validate and define text-based and dynamic configuration'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cuelang.org/package.yml'; homepageUrl: 'https://cuelang.org/'; githubUrl: 'https://github.com/cue-lang/cue'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cuelang.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cuelang.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cuelang.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cue']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.1', '0.15.0', '0.14.2', '0.14.1', '0.14.0', '0.13.2', '0.13.1', '0.13.0', '0.12.1', '0.12.0', '0.11.2', '0.11.1', '0.11.0', '0.10.1', '0.10.0', '0.9.2', '0.9.1', '0.9.0', '0.8.2', '0.8.1', '0.8.0', '0.7.1', '0.7.0', '0.6.0', '0.5.0', '0.4.3']; aliases: readonly [] }; export type CuelangorgPackage = typeof cuelangorgPackage