UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.25 kB
/** * **lunarvim.org** - 🌙 LunarVim is an IDE layer for Neovim. Completely free and community driven. * * @domain `lunarvim.org` * @programs `lvim`, `nvim` * @version `1.4.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +lunarvim.org -- $SHELL -i` * @dependencies `gnu.org/bash`, `crates.io/fd-find`, `pip.pypa.io`, ... (+4 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.lunarvimorg * console.log(pkg.name) // "lunarvim.org" * console.log(pkg.description) // "🌙 LunarVim is an IDE layer for Neovim. Complet..." * console.log(pkg.programs) // ["lvim", "nvim"] * console.log(pkg.versions[0]) // "1.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/lunarvim-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lunarvimorgPackage: { /** * The display name of this package. */ name: 'lunarvim.org'; /** * The canonical domain name for this package. */ domain: 'lunarvim.org'; /** * Brief description of what this package does. */ description: '🌙 LunarVim is an IDE layer for Neovim. Completely free and community driven.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lunarvim.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +lunarvim.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lvim', 'nvim']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/bash', 'crates.io/fd-find', 'pip.pypa.io', 'python.org^3', 'nodejs.org', 'rust-lang.org/cargo', 'neovim.io']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.0', '1.3.0']; aliases: readonly [] }; export type LunarvimorgPackage = typeof lunarvimorgPackage