UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.37 kB
/** * **glslc** - A collection of tools, libraries, and tests for Vulkan shader compilation. * * @domain `github.com/google/shaderc` * @programs `glslc` * @version `2025.3.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install glslc` * @name `glslc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.glslc * // Or access via domain * const samePkg = pantry.githubcomgoogleshaderc * console.log(pkg === samePkg) // true * console.log(pkg.name) // "glslc" * console.log(pkg.description) // "A collection of tools, libraries, and tests for..." * console.log(pkg.programs) // ["glslc"] * console.log(pkg.versions[0]) // "2025.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/google/shaderc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const glslcPackage: { /** * The display name of this package. */ name: 'glslc'; /** * The canonical domain name for this package. */ domain: 'github.com/google/shaderc'; /** * Brief description of what this package does. */ description: 'A collection of tools, libraries, and tests for Vulkan shader compilation.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/google/shaderc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install glslc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['glslc']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2025.3.0', '2025.2.0', '2025.1.0', '2024.4.0', '2024.3.0', '2024.2.0', '2024.1.0', '2024.0.0', '2023.8.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) glslc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install glslc' }; export type GlslcPackage = typeof glslcPackage