ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.44 kB
TypeScript
/**
* **cbindgen** - A project for generating C bindings from Rust code
*
* @domain `mozilla.org/cbindgen`
* @programs `cbindgen`
* @version `0.29.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cbindgen`
* @name `cbindgen`
* @dependencies `linux:llvm.org` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.cbindgen
* // Or access via domain
* const samePkg = pantry.mozillaorgcbindgen
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cbindgen"
* console.log(pkg.description) // "A project for generating C bindings from Rust code"
* console.log(pkg.programs) // ["cbindgen"]
* console.log(pkg.versions[0]) // "0.29.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mozilla-org/cbindgen.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cbindgenPackage: {
/**
* The display name of this package.
*/
name: 'cbindgen';
/**
* The canonical domain name for this package.
*/
domain: 'mozilla.org/cbindgen';
/**
* Brief description of what this package does.
*/
description: 'A project for generating C bindings from Rust code';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mozilla.org/cbindgen/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cbindgen';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cbindgen'];
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 ['linux:llvm.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.29.0', '0.28.0', '0.27.0', '0.26.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type CbindgenPackage = typeof cbindgenPackage