ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 2.07 kB
TypeScript
/**
* **flamegraph** - Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3
*
* @domain `crates.io/flamegraph`
* @programs `flamegraph`, `cargo-flamegraph`
* @version `0.6.8` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +crates.io/flamegraph -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.cratesioflamegraph
* console.log(pkg.name) // "flamegraph"
* console.log(pkg.description) // "Easy flamegraphs for Rust projects and everythi..."
* console.log(pkg.programs) // ["flamegraph", "cargo-flamegraph"]
* console.log(pkg.versions[0]) // "0.6.8" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/flamegraph.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cratesioflamegraphPackage: {
/**
* The display name of this package.
*/
name: 'flamegraph';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/flamegraph';
/**
* Brief description of what this package does.
*/
description: 'Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/flamegraph/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +crates.io/flamegraph -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['flamegraph', 'cargo-flamegraph'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.6.8', '0.6.7'];
aliases: readonly []
};
export type CratesioflamegraphPackage = typeof cratesioflamegraphPackage