ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.18 kB
TypeScript
/**
* **julia** - The Julia Programming Language
*
* @domain `julialang.org`
* @programs `julia`
* @version `1.11.5` (18 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install julia`
* @aliases `julia`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.julia
* // Or access via domain
* const samePkg = pantry.julialangorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "julialang.org"
* console.log(pkg.description) // "The Julia Programming Language"
* console.log(pkg.programs) // ["julia"]
* console.log(pkg.versions[0]) // "1.11.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/julialang-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const juliaPackage: {
/**
* The display name of this package.
*/
name: 'julialang.org';
/**
* The canonical domain name for this package.
*/
domain: 'julialang.org';
/**
* Brief description of what this package does.
*/
description: 'The Julia Programming Language';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/julialang.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install julia';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['julia'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.11.5', '1.11.4', '1.11.3', '1.11.2', '1.11.1', '1.11.0', '1.10.9', '1.10.8', '1.10.7', '1.10.6', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.4', '1.9.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['julia']
};
export type JuliaPackage = typeof juliaPackage