UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.21 kB
/** * **zig** - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. * * @domain `ziglang.org` * @programs `zig` * @version `0.14.1` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install zig` * @aliases `zig` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.zig * // Or access via domain * const samePkg = pantry.ziglangorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ziglang.org" * console.log(pkg.description) // "General-purpose programming language and toolch..." * console.log(pkg.programs) // ["zig"] * console.log(pkg.versions[0]) // "0.14.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: 'ziglang.org'; /** * 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.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 ['zig'] }; export type ZigPackage = typeof zigPackage