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

@gremorie/ng-ai

v0.4.0

Published

AI primitives for Angular - chat surfaces (Message, Conversation, Suggestion, Reasoning, ChainOfThought, Shimmer, Sources, Task, Tool, Toolbar, CodeBlock) + PromptInput + Attachments. Part of Gremorie.

Readme

@gremorie/ng-ai

AI primitives for Angular: chat surfaces (Message, Conversation, Suggestion, Reasoning, ChainOfThought, Shimmer, Sources, Task, Tool, Toolbar, CodeBlock) plus PromptInput and Attachments. Part of Gremorie, an AI native design system.

Full documentation lives at gremorie.com.

Install

npm i @gremorie/ng-ai @gremorie/ng-core @gremorie/ng-display @spartan-ng/brain class-variance-authority marked

Requires Angular 21 (@angular/core, @angular/common, @angular/compiler, @angular/platform-browser ^21.2.0). @spartan-ng/brain powers the headless behavior, marked renders Markdown responses, and shiki is an optional peer used by the CodeBlock for syntax highlighting.

Styles

These primitives are styled with the Gremorie design tokens, so import the core theme once in your global styles.css:

@import 'tailwindcss';
@import '@gremorie/ng-core/theme.css';

Usage

import { Component } from '@angular/core';
import {
  PromptInput,
  PromptInputTextarea,
  PromptInputToolbar,
  PromptInputSubmit,
} from '@gremorie/ng-ai';

@Component({
  selector: 'app-chat',
  standalone: true,
  imports: [
    PromptInput,
    PromptInputTextarea,
    PromptInputToolbar,
    PromptInputSubmit,
  ],
  template: `
    <prompt-input [(value)]="message" (keydown.enter)="send()">
      <prompt-input-textarea placeholder="Ask anything..." />
      <prompt-input-toolbar>
        <prompt-input-submit />
      </prompt-input-toolbar>
    </prompt-input>
  `,
})
export class ChatComponent {
  message = '';

  send(): void {
    // handle submit
  }
}

Components

Every component is a standalone Angular primitive. Selectors are listed below.

  • PromptInput: prompt-input, prompt-input-textarea, prompt-input-toolbar, prompt-input-tools, prompt-input-submit, prompt-input-action-menu, prompt-input-model-select.
  • Attachments: attachment-list, attachment-item, attachment-preview, attachment-info, attachment-name, attachment-size, attachment-remove, attachment-empty.
  • Message: message, message-content, message-response, message-avatar, message-actions, message-action, message-toolbar, message-attachments, message-attachment, message-branch, message-branch-selector, message-branch-content, message-branch-previous, message-branch-next, message-branch-page.
  • Conversation: conversation, conversation-content, conversation-empty-state, conversation-scroll-button.
  • Suggestion: suggestions, suggestion.
  • Reasoning: reasoning, reasoning-trigger, reasoning-content.
  • ChainOfThought: chain-of-thought, chain-of-thought-header, chain-of-thought-content, chain-of-thought-step, chain-of-thought-image, chain-of-thought-search-results, chain-of-thought-search-result.
  • Sources: sources, sources-trigger, sources-content, source.
  • InlineCitation: inline-citation, inline-citation-text, inline-citation-card, inline-citation-card-trigger, inline-citation-card-body, inline-citation-source, inline-citation-quote.
  • Task: task, task-trigger, task-content, task-item, task-item-file.
  • Tool: tool, tool-header, tool-content, tool-input, tool-output.
  • Toolbar: toolbar, toolbar-group, toolbar-button.
  • CodeBlock: code-block, code-block-copy-button.
  • Shimmer (directive): [ngShimmer].

License

MIT. See LICENSE.