/** * **termshark** - pkgx package * * @domain `termshark.io` * @version `2.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install termshark.io` * @dependencies `wireshark.org` * @buildDependencies `go.dev@^1.20` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.termsharkio * console.log(pkg.name) // "termshark" * console.log(pkg.versions[0]) // "2.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/termshark-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const termsharkioPackage: { /** * The display name of this package. */ name: 'termshark'; /** * The canonical domain name for this package. */ domain: 'termshark.io'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/termshark.io/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install termshark.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +termshark.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install termshark.io'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['wireshark.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.20']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0']; aliases: readonly [] }; export type TermsharkioPackage = typeof termsharkioPackage