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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@omar45siemens/saia

v0.0.1

Published

You can pass the following props to the component: | Prop | Type | Default | Description | |-----------------|------------------|------------------|-----------------------------------------------------------------------------| | `embedded` | boolean | `tr

Readme

Props

You can pass the following props to the component: | Prop | Type | Default | Description | |-----------------|------------------|------------------|-----------------------------------------------------------------------------| | embedded | boolean | true | If true, the component will be rendered as an embedded chatbot. | | darkMode | boolean | false | If true, the component will be rendered in dark mode. | | products | string[] | ["VIQ", "HDS"] | An array of products to select from (in non-embedded mode only). | | defaultProduct| string | "VIQ" | The default product selected. |

Building

  • To build for VIQ-plugin, we need to have everything in a single file (JS + CSS). To do so, please run npm run build:single. The output shall be found in the folder webc-single-file/.
  • To build for VS Code, please run npm run build:vscode. The output shall be found in the folder webc-vscode/. ⚠️ Make sure to import the custom css snippet @layer ready-for-vscode found in custom-theme.css for the styling to work.

Colors and Theming

Just override these css variables to change the theme:

  • --llamda-aside-bg
  • --llamda-header-txt
  • --llamda-header-bg
  • --llamda-bot-msg-bg
  • --llamda-bot-msg-txt
  • --llamda-user-msg-bg
  • --llamda-user-msg-txt
  • --llamda-chat-bg
  • --llamda-avatar-bg
  • --llamda-avatar-txt

> Example (Monokai Theme):

:root {
  --llamda-aside-bg: #363636;
  --llamda-header-txt: #dddddd;
  --llamda-header-bg: #1f1f1f;
  --llamda-bot-msg-bg: #1f1f1f;
  --llamda-bot-msg-txt: #dddddd;
  --llamda-user-msg-bg: #1f1f1f;
  --llamda-user-msg-txt: #dddddd;
  --llamda-chat-bg: #161616;
  --llamda-avatar-bg: #dddddd;
  --llamda-avatar-txt: #1f1f1f;
}

> Example (VS Code compatible):

:root {
  --llamda-aside-bg: var(--vscode-badge-background);
  --llamda-header-txt: var(--vscode-editor-foreground);
  --llamda-header-bg: var(--vscode-editor-background);
  --llamda-bot-msg-bg: var(--vscode-editor-background);
  --llamda-bot-msg-txt: var(--vscode-editor-foreground);
  --llamda-user-msg-bg: var(--vscode-editor-background);
  --llamda-user-msg-txt: var(--vscode-editor-foreground);
  --llamda-chat-bg: var(--vscode-editorPane-background);
  --llamda-avatar-bg: var(--vscode-editor-foreground);
  --llamda-avatar-txt: var(--vscode-editor-background);
}

To build as a single file (js + css), use npm run build --mode staging