UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.45 kB
/** * **microsoft.com/dxc** - This repo hosts the source for the DirectX Shader Compiler which is based on LLVM/Clang. * * @domain `microsoft.com/dxc` * @programs `dxc`, `dxv`, `dxa`, `dxr`, `dxl` * @version `1.8.2505.1` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install microsoft.com/dxc` * @dependencies `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.microsoftcomdxc * console.log(pkg.name) // "microsoft.com/dxc" * console.log(pkg.description) // "This repo hosts the source for the DirectX Shad..." * console.log(pkg.programs) // ["dxc", "dxv", ...] * console.log(pkg.versions[0]) // "1.8.2505.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/microsoft-com/dxc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const microsoftcomdxcPackage: { /** * The display name of this package. */ name: 'microsoft.com/dxc'; /** * The canonical domain name for this package. */ domain: 'microsoft.com/dxc'; /** * Brief description of what this package does. */ description: 'This repo hosts the source for the DirectX Shader Compiler which is based on LLVM/Clang.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/microsoft.com/dxc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/microsoft/DirectXShaderCompiler'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install microsoft.com/dxc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dxc', 'dxv', 'dxa', 'dxr', 'dxl']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.2505.1', '1.8.2505', '1.8.2502', '1.8.2407', '1.8.2405', '1.8.2403.2', '1.8.2403.1', '1.8.2403', '1.7.2308']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +microsoft.com/dxc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install microsoft.com/dxc' }; export type MicrosoftcomdxcPackage = typeof microsoftcomdxcPackage