UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.1 kB
/** * **samply** - Command-line sampling profiler for macOS, Linux, and Windows * * @domain `crates.io/samply` * @programs `samply` * @version `0.13.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install samply` * @name `samply` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.samply * // Or access via domain * const samePkg = pantry.cratesiosamply * console.log(pkg === samePkg) // true * console.log(pkg.name) // "samply" * console.log(pkg.description) // "Command-line sampling profiler for macOS, Linux..." * console.log(pkg.programs) // ["samply"] * console.log(pkg.versions[0]) // "0.13.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/samply.md * @see https://ts-pkgx.netlify.app/usage */ export declare const samplyPackage: { /** * The display name of this package. */ name: 'samply'; /** * The canonical domain name for this package. */ domain: 'crates.io/samply'; /** * Brief description of what this package does. */ description: 'Command-line sampling profiler for macOS, Linux, and Windows'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/samply/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install samply'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['samply']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.1', '0.13.0', '0.12.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type SamplyPackage = typeof samplyPackage