UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.29 kB
/** * **mypy-lang.org** - Experimental optional static type checker for Python * * @domain `mypy-lang.org` * @programs `mypy`, `mypyc`, `dmypy` * @version `1.16.1` (25 versions available) * @versions From newest version to oldest. * * @install `launchpad install +mypy-lang.org -- $SHELL -i` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mypylangorg * console.log(pkg.name) // "mypy-lang.org" * console.log(pkg.description) // "Experimental optional static type checker for P..." * console.log(pkg.programs) // ["mypy", "mypyc", ...] * console.log(pkg.versions[0]) // "1.16.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mypy-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mypylangorgPackage: { /** * The display name of this package. */ name: 'mypy-lang.org'; /** * The canonical domain name for this package. */ domain: 'mypy-lang.org'; /** * Brief description of what this package does. */ description: 'Experimental optional static type checker for Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mypy-lang.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 +mypy-lang.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mypy', 'mypyc', 'dmypy']; 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.1', '1.16.0', '1.15.0', '1.14.1', '1.14.0', '1.13.0', '1.12.1', '1.12.0', '1.11.2', '1.11.1', '1.11.0', '1.10.1', '1.10.0', '1.9.0', '1.8.0', '1.7.1', '1.7.0', '1.6.1', '1.6.0', '1.5.1', '1.5.0', '1.4.1', '1.4.0', '1.3.0', '1.2.0']; aliases: readonly [] }; export type MypylangorgPackage = typeof mypylangorgPackage