UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.19 kB
/** * **pkl-lang.org** - A configuration as code language with rich validation and tooling. * * @domain `pkl-lang.org` * @programs `jpkl`, `pkl` * @version `0.28.2` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install +pkl-lang.org -- $SHELL -i` * @companions `openjdk.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pkllangorg * console.log(pkg.name) // "pkl-lang.org" * console.log(pkg.description) // "A configuration as code language with rich vali..." * console.log(pkg.programs) // ["jpkl", "pkl"] * console.log(pkg.versions[0]) // "0.28.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pkl-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pkllangorgPackage: { /** * The display name of this package. */ name: 'pkl-lang.org'; /** * The canonical domain name for this package. */ domain: 'pkl-lang.org'; /** * Brief description of what this package does. */ description: 'A configuration as code language with rich validation and tooling.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkl-lang.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +pkl-lang.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jpkl', 'pkl']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['openjdk.org']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.28.2', '0.28.1', '0.28.0', '0.27.2', '0.27.1', '0.27.0', '0.26.3', '0.26.2', '0.26.1', '0.26.0', '0.25.3', '0.25.2']; aliases: readonly [] }; export type PkllangorgPackage = typeof pkllangorgPackage