UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.26 kB
/** * **socat** - SOcket CAT: netcat on steroids * * @domain `dest-unreach.org/socat` * @programs `socat` * @version `1.8.0.3` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install socat` * @name `socat` * @dependencies `openssl.org^1.1`, `gnu.org/readline^8.2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.socat * // Or access via domain * const samePkg = pantry.destunreachorgsocat * console.log(pkg === samePkg) // true * console.log(pkg.name) // "socat" * console.log(pkg.description) // "SOcket CAT: netcat on steroids" * console.log(pkg.programs) // ["socat"] * console.log(pkg.versions[0]) // "1.8.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dest-unreach-org/socat.md * @see https://ts-pkgx.netlify.app/usage */ export declare const socatPackage: { /** * The display name of this package. */ name: 'socat'; /** * The canonical domain name for this package. */ domain: 'dest-unreach.org/socat'; /** * Brief description of what this package does. */ description: 'SOcket CAT: netcat on steroids'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dest-unreach.org/socat/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install socat'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['socat']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'gnu.org/readline^8.2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.0.3', '1.8.0.2', '1.8.0.1', '1.8.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type SocatPackage = typeof socatPackage