UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 1.95 kB
/** * **phpMyAdmin** - pkgx package * * @domain `phpmyadmin.net` * @version `5.2.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +phpmyadmin.net -- $SHELL -i` * @aliases `phpMyAdmin` * @dependencies `php.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.phpMyAdmin * // Or access via domain * const samePkg = pantry.phpmyadminnet * console.log(pkg === samePkg) // true * console.log(pkg.name) // "phpmyadmin.net" * console.log(pkg.versions[0]) // "5.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/phpmyadmin-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const phpMyAdminPackage: { /** * The display name of this package. */ name: 'phpmyadmin.net'; /** * The canonical domain name for this package. */ domain: 'phpmyadmin.net'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/phpmyadmin.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +phpmyadmin.net -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['php.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.2.2', '5.2.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['phpMyAdmin'] }; export type PhpMyAdminPackage = typeof phpMyAdminPackage