UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.38 kB
/** * **gitweb** - 🌲 Open the current remote repository in your browser * * @domain `crates.io/gitweb` * @programs `gitweb` * @version `0.3.5` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gitweb` * @name `gitweb` * @dependencies `openssl.org^1.1`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitweb * // Or access via domain * const samePkg = pantry.cratesiogitweb * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gitweb" * console.log(pkg.description) // "🌲 Open the current remote repository in your b..." * console.log(pkg.programs) // ["gitweb"] * console.log(pkg.versions[0]) // "0.3.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/gitweb.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitwebPackage: { /** * The display name of this package. */ name: 'gitweb'; /** * The canonical domain name for this package. */ domain: 'crates.io/gitweb'; /** * Brief description of what this package does. */ description: '🌲 Open the current remote repository in your browser'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/gitweb/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gitweb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gitweb']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gitweb -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gitweb' }; export type GitwebPackage = typeof gitwebPackage