UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.36 kB
/** * **alembic** - A database migrations tool for SQLAlchemy. * * @domain `alembic.sqlalchemy.org` * @programs `alembic` * @version `1.16.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install alembic` * @aliases `alembic` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.alembic * // Or access via domain * const samePkg = pantry.alembicsqlalchemyorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "alembic.sqlalchemy.org" * console.log(pkg.description) // "A database migrations tool for SQLAlchemy." * console.log(pkg.programs) // ["alembic"] * console.log(pkg.versions[0]) // "1.16.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/alembic-sqlalchemy-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const alembicPackage: { /** * The display name of this package. */ name: 'alembic.sqlalchemy.org'; /** * The canonical domain name for this package. */ domain: 'alembic.sqlalchemy.org'; /** * Brief description of what this package does. */ description: 'A database migrations tool for SQLAlchemy.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/alembic.sqlalchemy.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 alembic'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['alembic']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.16.2', '1.16.1', '1.16.0', '1.15.2', '1.15.1', '1.14.1', '1.14.0', '1.13.3', '1.13.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['alembic'] }; export type AlembicPackage = typeof alembicPackage