UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.74 kB
/** * **cb** - 😎🏖️🐬 Your new, 𝙧𝙞𝙙𝙤𝙣𝙠𝙪𝙡𝙞𝙘𝙞𝙤𝙪𝙨𝙡𝙮 smart clipboard manager * * @domain `getclipboard.app` * @programs `cb` * @version `0.9.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install cb` * @aliases `cb` * @dependencies `openssl.org^1.1`, `linux:alsa-project.org/alsa-lib@1`, `linux:x.org/x11@1`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.cb * // Or access via domain * const samePkg = pantry.getclipboardapp * console.log(pkg === samePkg) // true * console.log(pkg.name) // "getclipboard.app" * console.log(pkg.description) // "😎🏖️🐬 Your new, 𝙧𝙞𝙙𝙤𝙣𝙠𝙪𝙡𝙞𝙘𝙞𝙤𝙪𝙨�..." * console.log(pkg.programs) // ["cb"] * console.log(pkg.versions[0]) // "0.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/getclipboard-app.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cbPackage: { /** * The display name of this package. */ name: 'getclipboard.app'; /** * The canonical domain name for this package. */ domain: 'getclipboard.app'; /** * Brief description of what this package does. */ description: '😎🏖️🐬 Your new, 𝙧𝙞𝙙𝙤𝙣𝙠𝙪𝙡𝙞𝙘𝙞𝙤𝙪𝙨𝙡𝙮 smart clipboard manager'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/getclipboard.app/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cb']; 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 ['openssl.org^1.1', 'linux:alsa-project.org/alsa-lib@1', 'linux:x.org/x11@1', 'linux:wayland.freedesktop.org@1', 'linux:gnu.org/gcc/libstdcxx@14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.1', '0.9.0.1', '0.10.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['cb'] }; export type CbPackage = typeof cbPackage