UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.11 kB
/** * **direnv** - Load/unload environment variables based on $PWD * * @domain `direnv.net` * @programs `direnv` * @version `2.36.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install direnv` * @aliases `direnv` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.direnv * // Or access via domain * const samePkg = pantry.direnvnet * console.log(pkg === samePkg) // true * console.log(pkg.name) // "direnv.net" * console.log(pkg.description) // "Load/unload environment variables based on $PWD" * console.log(pkg.programs) // ["direnv"] * console.log(pkg.versions[0]) // "2.36.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/direnv-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const direnvPackage: { /** * The display name of this package. */ name: 'direnv.net'; /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install direnv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['direnv']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.36.0', '2.35.0', '2.34.0', '2.33.0', '2.32.3', '2.32.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['direnv'] }; export type DirenvPackage = typeof direnvPackage