ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.46 kB
TypeScript
/**
* **typst** - A new markup-based typesetting system that is powerful and easy to learn.
*
* @domain `typst.app`
* @programs `typst`
* @version `0.13.1` (14 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install typst`
* @name `typst`
* @dependencies `openssl.org^1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.typst
* // Or access via domain
* const samePkg = pantry.typstapp
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "typst"
* console.log(pkg.description) // "A new markup-based typesetting system that is p..."
* console.log(pkg.programs) // ["typst"]
* console.log(pkg.versions[0]) // "0.13.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/typst-app.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const typstPackage: {
/**
* The display name of this package.
*/
name: 'typst';
/**
* The canonical domain name for this package.
*/
domain: 'typst.app';
/**
* Brief description of what this package does.
*/
description: 'A new markup-based typesetting system that is powerful and easy to learn.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/typst.app/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install typst';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['typst'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.13.1', '0.13.0', '0.12.0', '0.11.1', '0.11.0', '0.10.0', '0.9.0', '0.8.0', '0.7.0', '0.6.0', '0.5.0', '0.4.0', '0.2.0', '0.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) typst -- $SHELL -i';
launchpadInstallCommand: 'launchpad install typst'
};
export type TypstPackage = typeof typstPackage