UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.94 kB
/** * **sentry-cli** - Command-line utility to interact with Sentry * * @domain `sentry.io` * @programs `sentry-cli` * @version `2.52.0` (55 versions available) * @versions From newest version to oldest. * * @install `launchpad install sentry-cli` * @name `sentry-cli` * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.sentrycli * // Or access via domain * const samePkg = pantry.sentryio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "sentry-cli" * console.log(pkg.description) // "Command-line utility to interact with Sentry" * console.log(pkg.programs) // ["sentry-cli"] * console.log(pkg.versions[0]) // "2.52.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sentry-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sentrycliPackage: { /** * The display name of this package. */ name: 'sentry-cli'; /** * The canonical domain name for this package. */ domain: 'sentry.io'; /** * Brief description of what this package does. */ description: 'Command-line utility to interact with Sentry'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sentry.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 sentry-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sentry-cli']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.52.0', '2.51.1', '2.51.0', '2.50.2', '2.50.1', '2.50.0', '2.49.0', '2.48.0', '2.47.1', '2.47.0', '2.46.0', '2.45.0', '2.44.0', '2.43.1', '2.43.0', '2.42.5', '2.42.4', '2.42.3', '2.42.2', '2.42.1', '2.42.0', '2.41.1', '2.41.0', '2.40.0', '2.39.1', '2.39.0', '2.38.2', '2.38.1', '2.38.0', '2.37.0', '2.36.6', '2.36.5', '2.36.4', '2.36.3', '2.36.2', '2.36.1', '2.36.0', '2.35.0', '2.34.1', '2.34.0', '2.33.1', '2.33.0', '2.32.2', '2.32.1', '2.32.0', '2.31.2', '2.31.1', '2.31.0', '2.30.5', '2.30.4', '2.30.3', '2.30.2', '2.30.1', '2.30.0', '2.29.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sentry-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sentry-cli' }; export type SentrycliPackage = typeof sentrycliPackage