/** * **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.readthedocs.io` * @homepage https://cask.readthedocs.io/ * @dependencies `gnu.org/coreutils`, `gnu.org/emacs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.caskreadthedocsio * console.log(pkg.name) // "cask" * 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 caskreadthedocsioPackage: { /** * The display name of this package. */ name: 'cask'; /** * 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: 'https://cask.readthedocs.io/'; githubUrl: 'https://github.com/cask/cask'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cask.readthedocs.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +cask.readthedocs.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install cask.readthedocs.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cask']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/coreutils', 'gnu.org/emacs']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.1', '0.9.0']; aliases: readonly [] }; export type CaskreadthedocsioPackage = typeof caskreadthedocsioPackage