UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

70 lines 2.49 kB
/** * **apptainer.org** - Application container and unprivileged sandbox platform for Linux * * @domain `apptainer.org` * @programs `apptainer`, `run-singularity`, `singularity` * @version `1.4.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install +apptainer.org -- $SHELL -i` * @dependencies `github.com/seccomp/libseccomp@2`, `curl.se/ca-certs` * @companions `github.com/plougher/squashfs-tools` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apptainerorg * console.log(pkg.name) // "apptainer.org" * console.log(pkg.description) // "Application container and unprivileged sandbox ..." * console.log(pkg.programs) // ["apptainer", "run-singularity", ...] * console.log(pkg.versions[0]) // "1.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apptainer-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apptainerorgPackage: { /** * The display name of this package. */ name: 'apptainer.org'; /** * The canonical domain name for this package. */ domain: 'apptainer.org'; /** * Brief description of what this package does. */ description: 'Application container and unprivileged sandbox platform for Linux'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apptainer.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 +apptainer.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['apptainer', 'run-singularity', 'singularity']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['github.com/plougher/squashfs-tools']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/seccomp/libseccomp@2', 'curl.se/ca-certs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.1', '1.4.0', '1.3.6', '1.3.5', '1.3.4', '1.3.3']; aliases: readonly [] }; export type ApptainerorgPackage = typeof apptainerorgPackage