/** * **s-lang** - Library for creating multi-platform software * * @domain `jedsoft.org/slang` * @programs `slsh` * @version `2.3.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install jedsoft.org/slang` * @homepage https://www.jedsoft.org/slang/ * @dependencies `libpng.org`, `linux:pcre.org` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.jedsoftorgslang * console.log(pkg.name) // "s-lang" * console.log(pkg.description) // "Library for creating multi-platform software" * console.log(pkg.programs) // ["slsh"] * console.log(pkg.versions[0]) // "2.3.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jedsoft-org/slang.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jedsoftorgslangPackage: { /** * The display name of this package. */ name: 's-lang'; /** * The canonical domain name for this package. */ domain: 'jedsoft.org/slang'; /** * Brief description of what this package does. */ description: 'Library for creating multi-platform software'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jedsoft.org/slang/package.yml'; homepageUrl: 'https://www.jedsoft.org/slang/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jedsoft.org/slang'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +jedsoft.org/slang -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jedsoft.org/slang'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['slsh']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['libpng.org', 'linux:pcre.org']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.3']; aliases: readonly [] }; export type JedsoftorgslangPackage = typeof jedsoftorgslangPackage