UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.31 kB
/** * **zig** - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. * * @domain `ziglang.org` * @programs `zig` * @version `0.15.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install zig` * @name `zig` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zig * // Or access via domain * const samePkg = pantry.ziglangorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "zig" * console.log(pkg.description) // "General-purpose programming language and toolch..." * console.log(pkg.programs) // ["zig"] * console.log(pkg.versions[0]) // "0.15.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ziglang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zigPackage: { /** * The display name of this package. */ name: 'zig'; /** * The canonical domain name for this package. */ domain: 'ziglang.org'; /** * Brief description of what this package does. */ description: 'General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ziglang.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 zig'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zig']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.1', '0.15.0', '0.14.1', '0.14.0', '0.13.0', '0.12.1', '0.12.0', '0.11.0', '0.10.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) zig -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zig' }; export type ZigPackage = typeof zigPackage