/** * **coredns** - CoreDNS is a DNS server that chains plugins * * @domain `coredns.io` * @programs `coredns` * @version `1.13.1` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install coredns.io` * @homepage https://coredns.io/ * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.corednsio * console.log(pkg.name) // "coredns" * console.log(pkg.description) // "CoreDNS is a DNS server that chains plugins" * console.log(pkg.programs) // ["coredns"] * console.log(pkg.versions[0]) // "1.13.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/coredns-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const corednsioPackage: { /** * The display name of this package. */ name: 'coredns'; /** * The canonical domain name for this package. */ domain: 'coredns.io'; /** * Brief description of what this package does. */ description: 'CoreDNS is a DNS server that chains plugins'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/coredns.io/package.yml'; homepageUrl: 'https://coredns.io/'; githubUrl: 'https://github.com/coredns/coredns'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install coredns.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +coredns.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install coredns.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['coredns']; 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 ['1.13.1', '1.13.0', '1.12.4', '1.12.3', '1.12.2', '1.12.1', '1.12.0', '1.11.4', '1.11.3', '1.11.2', '1.11.1', '1.10.1']; aliases: readonly [] }; export type CorednsioPackage = typeof corednsioPackage