UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.58 kB
/** * **github.com/brona/iproute2mac** - CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command. * * @domain `github.com/brona/iproute2mac` * @programs `bridge`, `ip`, `iproute2mac.py` * @version `1.6.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/brona/iproute2mac` * @dependencies `python.org~3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcombronaiproute2mac * console.log(pkg.name) // "github.com/brona/iproute2mac" * console.log(pkg.description) // "CLI wrapper for basic network utilites on Mac O..." * console.log(pkg.programs) // ["bridge", "ip", ...] * console.log(pkg.versions[0]) // "1.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/brona/iproute2mac.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcombronaiproute2macPackage: { /** * The display name of this package. */ name: 'github.com/brona/iproute2mac'; /** * The canonical domain name for this package. */ domain: 'github.com/brona/iproute2mac'; /** * Brief description of what this package does. */ description: 'CLI wrapper for basic network utilites on Mac OS X inspired with iproute2 on Linux systems - ip command.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/brona/iproute2mac/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/brona/iproute2mac'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bridge', 'ip', 'iproute2mac.py']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.0', '1.5.4', '1.5.3', '1.5.2', '1.5.1', '1.5.0', '1.4.1']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/brona/iproute2mac -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/brona/iproute2mac' }; export type Githubcombronaiproute2macPackage = typeof githubcombronaiproute2macPackage