UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.44 kB
/** * **sketchybar** - A highly customizable macOS status bar replacement * * @domain `felixkratz.github.io/SketchyBar` * @programs `sketchybar` * @version `2.22.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install sketchybar` * @aliases `sketchybar` * @dependencies `github.com/koekeishiya/yabai` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.sketchybar * // Or access via domain * const samePkg = pantry.felixkratzgithubiosketchybar * console.log(pkg === samePkg) // true * console.log(pkg.name) // "SketchyBar" * console.log(pkg.description) // "A highly customizable macOS status bar replacement" * console.log(pkg.programs) // ["sketchybar"] * console.log(pkg.versions[0]) // "2.22.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/felixkratz-github-io/SketchyBar.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sketchybarPackage: { /** * The display name of this package. */ name: 'SketchyBar'; /** * The canonical domain name for this package. */ domain: 'felixkratz.github.io/SketchyBar'; /** * Brief description of what this package does. */ description: 'A highly customizable macOS status bar replacement'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/felixkratz.github.io/SketchyBar/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sketchybar'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sketchybar']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/koekeishiya/yabai']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.22.1', '2.22.0', '2.21.0', '2.20.1', '2.20.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['sketchybar'] }; export type SketchybarPackage = typeof sketchybarPackage