npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

vscode-lucli

v0.0.1

Published

Syntax highlighting and completion for LuCLI .lucli scripts

Downloads

110

Readme

vscode-lucli

Basic VS Code support for LuCLI .lucli scripts.

Features

  • Treats .lucli files as a dedicated language
  • Syntax highlighting for:
    • Shebang line (#!/usr/bin/env lucli)
    • # comments
    • First word commands (e.g. server, modules, cfml, lint, ls, cd)
    • Known server / modules subcommands
    • Flags / options like --version, --name, --port
    • Strings and numbers
  • Simple completion:
    • First token: LuCLI/internal commands
    • Second token for server / modules: known subcommands
    • Later tokens starting with -: options for that subcommand
  • JSON schema–aware support for LuCLI configuration files:
    • Validation and IntelliSense for lucee.json project server configuration files.
    • Validation and IntelliSense for module.json LuCLI module metadata files.

LuCLI configuration files

This extension understands the standard JSON files that LuCLI itself reads and writes, and gives you editor feedback while you edit them.

lucee.json (project server configuration)

When you have a lucee.json in your workspace, the extension:

  • Applies the published lucee.json JSON Schema from https://lucli.dev/schemas/v1/lucee.schema.json.
  • Offers key and value completion for the known LuCLI server settings (for example name, version, port, webroot, monitoring, jvm, urlRewrite, admin, and agents).
  • Highlights type errors (for example a string where a number is expected) and unknown properties.

This is the same shape that LuCLI uses when it generates or updates lucee.json, so what you see in VS Code matches what the CLI expects.

module.json (LuCLI module metadata)

For module.json files created by lucli modules init (usually inside your LuCLI modules directory), the extension:

  • Applies the published module.json JSON Schema from https://lucli.dev/schemas/v1/module.schema.json.
  • Provides completion for common metadata fields such as name, version, description, author, license, keywords, main, and created.
  • Validates values against the schema so you can spot mistakes before running the module.

These schemas are versioned (currently v1) and served from lucli.dev, so other tools and editors can reuse the same definitions.

Getting started

  1. Run npm install in this folder to install dev dependencies.
  2. Run npm run watch to build in watch mode.
  3. Press F5 in VS Code to launch an Extension Development Host.
  4. Open or create a .lucli file and start typing commands.

Notes

  • Completion is currently static (no calls to the LuCLI binary).
  • The command tree is defined in src/commandsData.ts.
  • Future work: optional dynamic completion by shelling out to lucli --complete when available.