/** * **nmap** - 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` * @homepage https://nmap.org/ * @dependencies `openssl.org^1.1`, `pcre.org/v2^10` * @buildDependencies `gnu.org/patch`, `python.org@3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.nmaporg * console.log(pkg.name) // "nmap" * 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'; /** * 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: 'https://nmap.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nmap.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +nmap.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nmap.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nmap', 'ncat', 'nping']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1', 'pcre.org/v2^10']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/patch', 'python.org@3']; /** * 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 [] }; export type NmaporgPackage = typeof nmaporgPackage