ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.45 kB
TypeScript
/**
* **spirv** - API and commands for processing SPIR-V modules
*
* @domain `khronos.org/SPIRV-Tools`
* @programs `spirv-as`, `spirv-cfg`, `spirv-dis`, `spirv-lesspipe.sh`, `spirv-link`, ... (+5 more)
* @version `2025.1.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +khronos.org/SPIRV-Tools -- $SHELL -i`
* @aliases `spirv`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.spirv
* // Or access via domain
* const samePkg = pantry.khronosorgspirvtools
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "SPIRV-Tools"
* console.log(pkg.description) // "API and commands for processing SPIR-V modules"
* console.log(pkg.programs) // ["spirv-as", "spirv-cfg", ...]
* console.log(pkg.versions[0]) // "2025.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/khronos-org/SPIRV-Tools.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const spirvPackage: {
/**
* The display name of this package.
*/
name: 'SPIRV-Tools';
/**
* The canonical domain name for this package.
*/
domain: 'khronos.org/SPIRV-Tools';
/**
* Brief description of what this package does.
*/
description: 'API and commands for processing SPIR-V modules';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/khronos.org/SPIRV-Tools/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +khronos.org/SPIRV-Tools -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['spirv-as', 'spirv-cfg', 'spirv-dis', 'spirv-lesspipe.sh', 'spirv-link', 'spirv-lint', 'spirv-objdump', 'spirv-opt', 'spirv-reduce', 'spirv-val'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2025.1.0', '2024.3.0', '2024.2.0', '2024.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['spirv']
};
export type SpirvPackage = typeof spirvPackage