UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.25 kB
/** * **cask** - Project management tool for Emacs * * @domain `cask.readthedocs.io` * @programs `cask` * @version `0.9.1` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install cask` * @aliases `cask` * @dependencies `gnu.org/coreutils`, `gnu.org/emacs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.cask * // Or access via domain * const samePkg = pantry.caskreadthedocsio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cask.readthedocs.io" * console.log(pkg.description) // "Project management tool for Emacs" * console.log(pkg.programs) // ["cask"] * console.log(pkg.versions[0]) // "0.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cask-readthedocs-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const caskPackage: { /** * The display name of this package. */ name: 'cask.readthedocs.io'; /** * The canonical domain name for this package. */ domain: 'cask.readthedocs.io'; /** * Brief description of what this package does. */ description: 'Project management tool for Emacs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cask.readthedocs.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 cask'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cask']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/coreutils', 'gnu.org/emacs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.1', '0.9.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['cask'] }; export type CaskPackage = typeof caskPackage