/** * **adr** - Command-line tools for working with Architecture Decision Records * * @domain `github.com/npryce/adr-tools` * @programs `adr` * @version `3.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/npryce/adr-tools` * @dependencies `gnu.org/bash` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomnpryceadrtools * console.log(pkg.name) // "adr" * console.log(pkg.description) // "Command-line tools for working with Architectur..." * console.log(pkg.programs) // ["adr"] * console.log(pkg.versions[0]) // "3.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/npryce/adr-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const adrtoolsPackage: { /** * The display name of this package. */ name: 'adr'; /** * The canonical domain name for this package. */ domain: 'github.com/npryce/adr-tools'; /** * Brief description of what this package does. */ description: 'Command-line tools for working with Architecture Decision Records'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/npryce/adr-tools/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/npryce/adr-tools'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/npryce/adr-tools'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/npryce/adr-tools -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/npryce/adr-tools'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['adr']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/bash']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.0.0']; aliases: readonly [] }; export type AdrtoolsPackage = typeof adrtoolsPackage