ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.36 kB
TypeScript
/**
* **spirv-cross** - SPIRV-Cross is a practical tool and library for performing reflection on SPIR-V and disassembling SPIR-V back to high level languages.
*
* @domain `khronos.org/SPIRV-Cross`
* @programs `spirv-cross`
* @version `2021.1.15` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install spirv-cross`
* @aliases `spirv-cross`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.spirvcross
* // Or access via domain
* const samePkg = pantry.khronosorgspirvcross
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "SPIRV-Cross"
* console.log(pkg.description) // "SPIRV-Cross is a practical tool and library for..."
* console.log(pkg.programs) // ["spirv-cross"]
* console.log(pkg.versions[0]) // "2021.1.15" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/khronos-org/SPIRV-Cross.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const spirvcrossPackage: {
/**
* The display name of this package.
*/
name: 'SPIRV-Cross';
/**
* The canonical domain name for this package.
*/
domain: 'khronos.org/SPIRV-Cross';
/**
* Brief description of what this package does.
*/
description: 'SPIRV-Cross is a practical tool and library for performing reflection on SPIR-V and disassembling SPIR-V back to high level languages.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/khronos.org/SPIRV-Cross/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install spirv-cross';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['spirv-cross'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2021.1.15'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['spirv-cross']
};
export type SpirvcrossPackage = typeof spirvcrossPackage