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

@gui-chat-plugin/spreadsheet

v0.2.1

Published

Spreadsheet plugin for GUIChat

Readme

@gui-chat-plugin/spreadsheet

npm version

A spreadsheet plugin for MulmoChat - a multi-modal voice chat application with OpenAI's GPT-4 Realtime API.

What this plugin does

This plugin provides a full-featured spreadsheet component with:

  • Excel-like cell editing with formula support
  • Mathematical functions (SUM, AVERAGE, MIN, MAX, etc.)
  • Text functions (CONCATENATE, LEFT, RIGHT, MID, etc.)
  • Date functions (TODAY, NOW, DATE, YEAR, MONTH, DAY, etc.)
  • Logical functions (IF, AND, OR, NOT, etc.)
  • Lookup functions (VLOOKUP, HLOOKUP, INDEX, MATCH)
  • Financial functions (PMT, PV, FV, NPV, IRR)
  • Multi-sheet support
  • Excel file import/export (.xlsx)
  • Cell formatting and styling

Important: SheetJS Dependency

Note: This package uses SheetJS for Excel file import/export. SheetJS is not installed from npm, but directly from the official SheetJS CDN:

https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz

See SheetJS Installation Guide for details.

Installation

yarn add @gui-chat-plugin/spreadsheet

Usage

Vue Implementation (for MulmoChat)

// In src/tools/index.ts
import SpreadsheetPlugin from "@gui-chat-plugin/spreadsheet/vue";

const pluginList = [
  // ... other plugins
  SpreadsheetPlugin,
];

// In src/main.ts
import "@gui-chat-plugin/spreadsheet/style.css";

Core Only (Framework-agnostic)

import { pluginCore, TOOL_NAME } from "@gui-chat-plugin/spreadsheet";
// or
import pluginCore from "@gui-chat-plugin/spreadsheet";

Package Exports

| Export | Description | |--------|-------------| | @gui-chat-plugin/spreadsheet | Core (framework-agnostic) | | @gui-chat-plugin/spreadsheet/vue | Vue implementation with UI components | | @gui-chat-plugin/spreadsheet/style.css | Tailwind CSS styles |

Supported Functions

Mathematical

SUM, AVERAGE, MIN, MAX, COUNT, COUNTA, ABS, ROUND, FLOOR, CEILING, POWER, SQRT, MOD, RAND, RANDBETWEEN, PI

Text

CONCATENATE, LEFT, RIGHT, MID, LEN, UPPER, LOWER, PROPER, TRIM, SUBSTITUTE, REPLACE, TEXT, VALUE, FIND, SEARCH, REPT

Date & Time

TODAY, NOW, DATE, YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, WEEKDAY, DAYS, EDATE, EOMONTH, WORKDAY, NETWORKDAYS, DATEDIF

Logical

IF, AND, OR, NOT, TRUE, FALSE, IFERROR, IFNA, IFS, SWITCH, XOR

Lookup

VLOOKUP, HLOOKUP, INDEX, MATCH, OFFSET, INDIRECT, ROW, COLUMN, ROWS, COLUMNS, TRANSPOSE

Statistical

MEDIAN, MODE, STDEV, STDEVP, VAR, VARP, LARGE, SMALL, RANK, PERCENTILE, QUARTILE, CORREL, COUNTIF, COUNTIFS, SUMIF, SUMIFS, AVERAGEIF, AVERAGEIFS

Financial

PMT, PV, FV, NPV, IRR, RATE, NPER, IPMT, PPMT, SLN, DB, DDB

Development

# Install dependencies
yarn install

# Start dev server (http://localhost:5173/)
yarn dev

# Build
yarn build

# Type check
yarn typecheck

# Lint
yarn lint

Test Prompts

Try these prompts to test the plugin:

  1. "Create a budget spreadsheet with income and expenses columns"
  2. "Make a multiplication table from 1 to 10"
  3. "Create a spreadsheet to track monthly sales with SUM totals"

License

MIT