UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 3.04 kB
/** * **dotnet** - Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK from source * * @domain `dotnet.microsoft.com` * @programs `dotnet` * @version `9.0.303` (33 versions available) * @versions From newest version to oldest. * * @install `launchpad install dotnet` * @name `dotnet` * @dependencies `linux:unicode.org^71`, `linux:openssl.org` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dotnet * // Or access via domain * const samePkg = pantry.dotnetmicrosoftcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dotnet" * console.log(pkg.description) // "Home of .NET's Virtual Monolithic Repository wh..." * console.log(pkg.programs) // ["dotnet"] * console.log(pkg.versions[0]) // "9.0.303" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dotnet-microsoft-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dotnetPackage: { /** * The display name of this package. */ name: 'dotnet'; /** * The canonical domain name for this package. */ domain: 'dotnet.microsoft.com'; /** * Brief description of what this package does. */ description: 'Home of .NET\'s Virtual Monolithic Repository which includes all the code needed to build the .NET SDK from source'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dotnet.microsoft.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dotnet'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dotnet']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:unicode.org^71', 'linux:openssl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.0.303', '9.0.202', '9.0.102', '9.0.100', '8.0.410', '8.0.405', '8.0.403', '8.0.402', '8.0.401', '8.0.313', '8.0.308', '8.0.303', '8.0.302', '8.0.301', '8.0.206', '8.0.204', '8.0.203', '8.0.112', '8.0.107', '8.0.106', '8.0.104', '8.0.101', '8.0.100', '7.0.404', '7.0.306', '7.0.120', '6.0.424', '6.0.423', '6.0.422', '6.0.417', '6.0.132', '6.0.131', '6.0.130']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) dotnet -- $SHELL -i'; launchpadInstallCommand: 'launchpad install dotnet' }; export type DotnetPackage = typeof dotnetPackage