UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.16 kB
/** * **nmap.org** - Port scanning utility for large networks * * @domain `nmap.org` * @programs `nmap`, `ncat`, `nping` * @version `7.98.0` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install nmap.org` * @dependencies `openssl.org^1.1`, `pcre.org/v2^10` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.nmaporg * console.log(pkg.name) // "nmap.org" * console.log(pkg.description) // "Port scanning utility for large networks" * console.log(pkg.programs) // ["nmap", "ncat", ...] * console.log(pkg.versions[0]) // "7.98.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/nmap-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nmaporgPackage: { /** * The display name of this package. */ name: 'nmap.org'; /** * The canonical domain name for this package. */ domain: 'nmap.org'; /** * Brief description of what this package does. */ description: 'Port scanning utility for large networks'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nmap.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nmap.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nmap', 'ncat', 'nping']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'pcre.org/v2^10']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.98.0', '7.97.0', '7.96.0', '7.95.0', '7.94.0', '7.93.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +nmap.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nmap.org' }; export type NmaporgPackage = typeof nmaporgPackage