ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.97 kB
TypeScript
/**
* **vlang.io** - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io
*
* @domain `vlang.io`
* @programs `v`
* @version `0.4.11` (15 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install v`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.vlangio
* console.log(pkg.name) // "vlang.io"
* console.log(pkg.description) // "Simple, fast, safe, compiled language for devel..."
* console.log(pkg.programs) // ["v"]
* console.log(pkg.versions[0]) // "0.4.11" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/vlang-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const vlangioPackage: {
/**
* The display name of this package.
*/
name: 'vlang.io';
/**
* The canonical domain name for this package.
*/
domain: 'vlang.io';
/**
* Brief description of what this package does.
*/
description: unknown;
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vlang.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install v';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['v'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.4.11', '0.4.10', '0.4.9', '0.4.8', '0.4.7', '0.4.6', '0.4.5', '0.4.4', '0.4.3', '0.4.2', '0.4.1', '0.4.0', '0.3.5', '0.3.4', '0.3.3'];
aliases: readonly []
};
export type VlangioPackage = typeof vlangioPackage