UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.21 kB
/** * **strace** - strace is a diagnostic, debugging and instructional userspace utility for Linux * * @domain `strace.io` * @programs `strace` * @version `6.2.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install strace` * @name `strace` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.strace * // Or access via domain * const samePkg = pantry.straceio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "strace" * console.log(pkg.description) // "strace is a diagnostic, debugging and instructi..." * console.log(pkg.programs) // ["strace"] * console.log(pkg.versions[0]) // "6.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/strace-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const stracePackage: { /** * The display name of this package. */ name: 'strace'; /** * The canonical domain name for this package. */ domain: 'strace.io'; /** * Brief description of what this package does. */ description: 'strace is a diagnostic, debugging and instructional userspace utility for Linux'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/strace.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install strace'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['strace']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) strace -- $SHELL -i'; launchpadInstallCommand: 'launchpad install strace' }; export type StracePackage = typeof stracePackage