/** * **direnv** - Load/unload environment variables based on $PWD * * @domain `direnv.net` * @programs `direnv` * @version `2.37.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install direnv.net` * @homepage https://direnv.net/ * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.direnvnet * console.log(pkg.name) // "direnv" * console.log(pkg.description) // "Load/unload environment variables based on $PWD" * console.log(pkg.programs) // ["direnv"] * console.log(pkg.versions[0]) // "2.37.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/direnv-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const direnvnetPackage: { /** * The display name of this package. */ name: 'direnv'; /** * The canonical domain name for this package. */ domain: 'direnv.net'; /** * Brief description of what this package does. */ description: 'Load/unload environment variables based on $PWD'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/direnv.net/package.yml'; homepageUrl: 'https://direnv.net/'; githubUrl: 'https://github.com/direnv/direnv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install direnv.net'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +direnv.net -- $SHELL -i'; launchpadInstallCommand: 'launchpad install direnv.net'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['direnv']; 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 ['2.37.1', '2.37.0', '2.36.0', '2.35.0', '2.34.0', '2.33.0', '2.32.3', '2.32.2']; aliases: readonly [] }; export type DirenvnetPackage = typeof direnvnetPackage