UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.41 kB
/** * **pcscd** - pkgx package * * @domain `pcsclite.apdu.fr` * @programs `pcscd` * @version `2.3.3` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install pcscd` * @aliases `pcscd`, `pcsc-lite` * @dependencies `libusb.info^1`, `linux:systemd.io^254 # libudev` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pcscd * // Or access via domain * const samePkg = pantry.pcscliteapdufr * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pcsclite.apdu.fr" * console.log(pkg.programs) // ["pcscd"] * console.log(pkg.versions[0]) // "2.3.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pcsclite-apdu-fr.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pcscdPackage: { /** * The display name of this package. */ name: 'pcsclite.apdu.fr'; /** * The canonical domain name for this package. */ domain: 'pcsclite.apdu.fr'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pcsclite.apdu.fr/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pcscd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pcscd']; 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 ['libusb.info^1', 'linux:systemd.io^254 # libudev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.3', '2.3.2', '2.3.1', '2.3.0', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.0', '2.0.3', '2.0.2', '2.0.1', '2.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['pcscd', 'pcsc-lite'] }; export type PcscdPackage = typeof pcscdPackage