UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.24 kB
/** * **cscope.sourceforge.io** - Tool for browsing source code * * @domain `cscope.sourceforge.io` * @programs `cscope`, `ocs` * @version `15.9.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install cscope.sourceforge.io` * @dependencies `invisible-island.net/ncurses` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cscopesourceforgeio * console.log(pkg.name) // "cscope.sourceforge.io" * console.log(pkg.description) // "Tool for browsing source code" * console.log(pkg.programs) // ["cscope", "ocs"] * console.log(pkg.versions[0]) // "15.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cscope-sourceforge-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cscopesourceforgeioPackage: { /** * The display name of this package. */ name: 'cscope.sourceforge.io'; /** * The canonical domain name for this package. */ domain: 'cscope.sourceforge.io'; /** * Brief description of what this package does. */ description: 'Tool for browsing source code'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cscope.sourceforge.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 cscope.sourceforge.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cscope', 'ocs']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['invisible-island.net/ncurses']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['15.9.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cscope.sourceforge.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cscope.sourceforge.io' }; export type CscopesourceforgeioPackage = typeof cscopesourceforgeioPackage