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

@unoff/cli

v0.1.4

Published

A CLI tool to create plugins for Figma, Penpot, Sketch, and Framer

Downloads

443

Readme

Unoff CLI

A CLI tool to quickly scaffold plugins for Figma, Penpot, Sketch, and Framer with built-in development tools and best practices.

Prerequisites

  • Node.js ≥ 18
  • npm ≥ 9
  • git — required for unoff create (initializes a git repository) and for all unoff add commands (workers, skills, specs use git submodules)

Installation

Install globally:

npm install -g @unoff/cli

Or use with npx (no installation required):

npx @unoff/cli create figma-plugin

Quick Example

# Install globally
npm install -g @unoff/cli

# Create a new Figma plugin (will prompt for name)
unoff create figma-plugin

# Navigate to the plugin directory
cd color-palette-generator

# Install dependencies
npm install

# Start development
unoff dev

# Open Figma and load the plugin:
# Plugins > Development > Import plugin from manifest...
# Select manifest.json from the plugin folder

CLI Commands

unoff help

Show all commands, available platforms, and workers.

unoff create <platform>

Scaffold a new plugin project.

| Platform | Status | | -------- | ------ | | figma-plugin | ✅ Available | | penpot-plugin | 🚧 Coming soon | | sketch-plugin | 🚧 Coming soon | | framer-plugin | 🚧 Coming soon |

The interactive prompt will ask for plugin name, output directory, GitHub username, author, license, and which external services to enable:

| Service | Default | | ------- | ------- | | Supabase (Database & Authentication) | ✅ | | Mixpanel (Analytics) | ✅ | | Sentry (Error Monitoring) | ✅ | | Notion (Announcements & Onboarding) | ✅ |

Selected services update the is*Enabled flags in global.config.ts. All environment variable placeholders are always generated in .env.local.

unoff create figma-plugin

unoff dev

Start development mode (npm run start:dev).

unoff build

Build for production (npm run build:prod).

unoff check

Run lint and type checking sequentially.

unoff format

Format source code with Prettier.

unoff add worker <name>

Add a Cloudflare Worker as a git submodule. Automatically updates package.json workspaces and injects the corresponding start script. You will be prompted for the destination path.

| Worker | Script | Port | | --------------- | --------------------- | ---- | | announcement | start:announcements | 8888 | | auth | start:token | 8787 | | cors | start:cors | 8989 |

unoff add worker announcement
npm install
npm run start:announcements

unoff add skills

Add the unoff-skills repository as a git submodule. You will be prompted for the destination path (default: skills/).

unoff add skills
git submodule update --init --recursive

unoff add specs

Create a local specs/ folder (or any path you choose) with an empty skill template in Markdown. Useful for documenting project-specific conventions in the same format as unoff-skills.

unoff add specs
# prompts for folder path and spec name
# creates specs/my-spec.md with frontmatter skeleton

unoff remove worker <name>

Remove a worker submodule and clean up package.json (workspaces + scripts).

unoff remove worker announcement

unoff remove skills

Remove the skills submodule from the project.

unoff remove skills

unoff remove specs

Remove the local specs folder and all its contents.

unoff remove specs

Features

  • 🚀 Quick setup with interactive CLI
  • 📦 Multiple platform support (Figma ✅, Penpot 🚧, Sketch 🚧, Framer 🚧)
  • 🔧 Built-in development server with hot reload
  • 🏗️ Production-ready build system
  • 🎛️ Toggleable external services (Supabase, Mixpanel, Sentry, Notion)
  • 🔐 Authentication scaffolding (Supabase)
  • 💳 License management (LemonSqueezy)
  • 📊 Analytics and monitoring (Mixpanel, Sentry)
  • 🌍 Internationalization (Tolgee)
  • 📢 Announcement & onboarding system (Notion + Cloudflare Workers)
  • ⚙️ Worker management via git submodules (add worker / remove worker)
  • 📚 Skills library integration via git submodule (add skills / remove skills)
  • 📝 Project specs scaffolding (add specs / remove specs)
  • 📚 Comprehensive AI-assistant documentation

What's included in the template?

UI & Components

  • @unoff/ui — Pre-built UI components for design tool plugins

Authentication & Database

  • Supabase — Backend as a Service for authentication and database

Licensing & Payments

Monitoring & Analytics

  • Sentry — Error tracking and performance monitoring
  • Mixpanel — Product analytics

Content & Communication

  • Notion — CMS for announcements and onboarding
  • Cloudflare Workers — Proxy layer for Notion API (auth + CORS)

Localization

  • Tolgee — Translation management and i18n

Documentation

For detailed usage instructions, see USAGE.md.

Contributing

Contributions are welcome! Please open an issue or pull request on GitHub.

License

MPL-2.0