ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.66 kB
TypeScript
/**
* **pylsp** - Fork of the python-language-server project, maintained by the Spyder IDE team and the community
*
* @domain `github.com/python-lsp/python-lsp-server`
* @programs `pylsp`
* @version `1.13.0` (14 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pylsp`
* @name `pylsp`
* @dependencies `python.org>=3<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.pylsp
* // Or access via domain
* const samePkg = pantry.githubcompythonlsppythonlspserver
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pylsp"
* console.log(pkg.description) // "Fork of the python-language-server project, mai..."
* console.log(pkg.programs) // ["pylsp"]
* console.log(pkg.versions[0]) // "1.13.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/python-lsp/python-lsp-server.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pylspPackage: {
/**
* The display name of this package.
*/
name: 'pylsp';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/python-lsp/python-lsp-server';
/**
* Brief description of what this package does.
*/
description: 'Fork of the python-language-server project, maintained by the Spyder IDE team and the community';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/python-lsp/python-lsp-server/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pylsp';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pylsp'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3<3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.13.0', '1.12.2', '1.12.1', '1.12.0', '1.11.0', '1.10.1', '1.10.0', '1.9.0', '1.8.2', '1.8.1', '1.8.0', '1.7.4', '1.7.3', '1.7.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) pylsp -- $SHELL -i';
launchpadInstallCommand: 'launchpad install pylsp'
};
export type PylspPackage = typeof pylspPackage