ts-pkgx
Version:
A library & CLI for managing packages
72 lines • 2.48 kB
TypeScript
/**
* **scriptisto** - A language-agnostic "shebang interpreter" that enables you to write scripts in compiled languages.
*
* @domain `github.com/igor-petruk/scriptisto`
* @programs `scriptisto`
* @version `2.2.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install scriptisto`
* @name `Scriptisto`
* @aliases `scriptisto`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.scriptisto
* // Or access via domain
* const samePkg = pantry.githubcomigorpetrukscriptisto
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "Scriptisto"
* console.log(pkg.description) // "A language-agnostic "shebang interpreter" that ..."
* console.log(pkg.programs) // ["scriptisto"]
* console.log(pkg.versions[0]) // "2.2.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/igor-petruk/scriptisto.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const scriptistoPackage: {
/**
* The display name of this package.
*/
name: 'Scriptisto';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/igor-petruk/scriptisto';
/**
* Brief description of what this package does.
*/
description: 'A language-agnostic "shebang interpreter" that enables you to write scripts in compiled languages.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/igor-petruk/scriptisto/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install scriptisto';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['scriptisto'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.2.0', '2.1.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['scriptisto'];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) scriptisto -- $SHELL -i';
launchpadInstallCommand: 'launchpad install scriptisto'
};
export type ScriptistoPackage = typeof scriptistoPackage