UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.4 kB
/** * **clisp** - GNU CLISP, a Common Lisp implementation * * @domain `clisp.org` * @programs `clisp` * @version `2.49.92` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install clisp` * @name `clisp` * @dependencies `gnu.org/libsigsegv^2.14`, `gnu.org/readline^8.2`, `github.com/besser82/libxcrypt^4.4` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.clisp * // Or access via domain * const samePkg = pantry.clisporg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "clisp" * console.log(pkg.description) // "GNU CLISP, a Common Lisp implementation" * console.log(pkg.programs) // ["clisp"] * console.log(pkg.versions[0]) // "2.49.92" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/clisp-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const clispPackage: { /** * The display name of this package. */ name: 'clisp'; /** * The canonical domain name for this package. */ domain: 'clisp.org'; /** * Brief description of what this package does. */ description: 'GNU CLISP, a Common Lisp implementation'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/clisp.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install clisp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['clisp']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/libsigsegv^2.14', 'gnu.org/readline^8.2', 'github.com/besser82/libxcrypt^4.4']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.49.92']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) clisp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install clisp' }; export type ClispPackage = typeof clispPackage