UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.33 kB
/** * **dy** - DynamoDB CLI written in Rust. * * @domain `github.com/awslabs/dynein` * @programs `dy` * @version `0.3.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install dy` * @aliases `dy` * @dependencies `linux:openssl.org^1.1` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.dy * // Or access via domain * const samePkg = pantry.githubcomawslabsdynein * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dynein" * console.log(pkg.description) // "DynamoDB CLI written in Rust." * console.log(pkg.programs) // ["dy"] * console.log(pkg.versions[0]) // "0.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/awslabs/dynein.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dyPackage: { /** * The display name of this package. */ name: 'dynein'; /** * The canonical domain name for this package. */ domain: 'github.com/awslabs/dynein'; /** * Brief description of what this package does. */ description: 'DynamoDB CLI written in Rust.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/awslabs/dynein/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dy']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.0', '0.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['dy'] }; export type DyPackage = typeof dyPackage