UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.62 kB
/** * **gitopolis** - Manage multiple git repositories * * @domain `crates.io/gitopolis` * @programs `gitopolis` * @version `1.5.14` (17 versions available) * @versions From newest version to oldest. * * @install `launchpad install gitopolis` * @name `gitopolis` * @dependencies `openssl.org^1.1`, `zlib.net^1`, `git-scm.org^2`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitopolis * // Or access via domain * const samePkg = pantry.cratesiogitopolis * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gitopolis" * console.log(pkg.description) // "Manage multiple git repositories" * console.log(pkg.programs) // ["gitopolis"] * console.log(pkg.versions[0]) // "1.5.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/gitopolis.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitopolisPackage: { /** * The display name of this package. */ name: 'gitopolis'; /** * The canonical domain name for this package. */ domain: 'crates.io/gitopolis'; /** * Brief description of what this package does. */ description: 'Manage multiple git repositories'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/gitopolis/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gitopolis'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gitopolis']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1', 'git-scm.org^2', '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 ['1.5.14', '1.5.13', '1.5.11', '1.5.8', '1.5.7', '1.5.4', '1.5.3', '1.5.2', '1.5.1', '1.5.0', '1.4.2', '1.4.1', '1.4.0', '1.3.3', '1.3.2', '1.3.1', '1.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gitopolis -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gitopolis' }; export type GitopolisPackage = typeof gitopolisPackage