UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.52 kB
/** * **silicon** - Create beautiful image of your source code. * * @domain `crates.io/silicon` * @programs `silicon` * @version `0.5.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install silicon` * @name `silicon` * @dependencies `harfbuzz.org^5`, `linux:freedesktop.org/fontconfig`, `linux:freetype.org`, ... (+1 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.silicon * // Or access via domain * const samePkg = pantry.cratesiosilicon * console.log(pkg === samePkg) // true * console.log(pkg.name) // "silicon" * console.log(pkg.description) // "Create beautiful image of your source code." * console.log(pkg.programs) // ["silicon"] * console.log(pkg.versions[0]) // "0.5.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/silicon.md * @see https://ts-pkgx.netlify.app/usage */ export declare const siliconPackage: { /** * The display name of this package. */ name: 'silicon'; /** * The canonical domain name for this package. */ domain: 'crates.io/silicon'; /** * Brief description of what this package does. */ description: 'Create beautiful image of your source code.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/silicon/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install silicon'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['silicon']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['harfbuzz.org^5', 'linux:freedesktop.org/fontconfig', 'linux:freetype.org', 'linux:x.org/xcb']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.3', '0.5.2', '0.5.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type SiliconPackage = typeof siliconPackage