UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.1 kB
/** * **pushenv** - A CLI utility that reads a .env file before starting a process * * @domain `crates.io/pushenv` * @programs `pushenv` * @version `1.1.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install pushenv` * @name `pushenv` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pushenv * // Or access via domain * const samePkg = pantry.cratesiopushenv * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pushenv" * console.log(pkg.description) // "A CLI utility that reads a .env file before sta..." * console.log(pkg.programs) // ["pushenv"] * console.log(pkg.versions[0]) // "1.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/pushenv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pushenvPackage: { /** * The display name of this package. */ name: 'pushenv'; /** * The canonical domain name for this package. */ domain: 'crates.io/pushenv'; /** * Brief description of what this package does. */ description: 'A CLI utility that reads a .env file before starting a process'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/pushenv/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pushenv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pushenv']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PushenvPackage = typeof pushenvPackage