UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

82 lines 2.98 kB
/** * **licensed** - A Ruby gem to cache and verify the licenses of dependencies * * @domain `github.com/licensee/licensed` * @programs `licensed` * @version `5.0.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install licensed` * @name `licensed` * @dependencies `ruby-lang.org^3.1`, `rubygems.org`, `linux:gnome.org/libxml2~2.13.8 # for nokogiri`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * @companions `linux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.licensed * // Or access via domain * const samePkg = pantry.githubcomlicenseelicensed * console.log(pkg === samePkg) // true * console.log(pkg.name) // "licensed" * console.log(pkg.description) // "A Ruby gem to cache and verify the licenses of ..." * console.log(pkg.programs) // ["licensed"] * console.log(pkg.versions[0]) // "5.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/licensee/licensed.md * @see https://ts-pkgx.netlify.app/usage */ export declare const licensedPackage: { /** * The display name of this package. */ name: 'licensed'; /** * The canonical domain name for this package. */ domain: 'github.com/licensee/licensed'; /** * Brief description of what this package does. */ description: 'A Ruby gem to cache and verify the licenses of dependencies'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/licensee/licensed/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/licensee/licensed'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install licensed'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['licensed']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['linux']; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org', 'linux:gnome.org/libxml2~2.13.8 # for nokogiri', 'linux:gnome.org/libxslt~1.1.43 # for nokogiri', 'linux:pcre.org^8 # for nokogiri']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.0.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) licensed -- $SHELL -i'; launchpadInstallCommand: 'launchpad install licensed' }; export type LicensedPackage = typeof licensedPackage