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

@profpowell/vb-project-planning

v0.1.0

Published

Project- and UX-planning Web Components for Vanilla Breeze: personas, stories, journeys, empathy maps, impact/effort and quadrant grids, risk and traceability matrices, burndown, roadmap, kanban, story map, gantt, review surface, work items, ADRs, iron tr

Readme

@profpowell/vb-project-planning

Project- and UX-planning Web Components for the research, planning, and delivery phases of software projects. These are specialized components you might use in a home spun SWE dashboard or planning system. They can be used individually or together and are related with Vanilla Breeze and work well with that package's design tokens (CSS custom properties), but carry their own logic.

Docs & live demos: https://profpowell.github.io/vb-project-planning/

Component Inventory

| Tag | Purpose | |-----|---------| | <adr-wc> | Architecture Decision Record | | <burndown-chart> | Sprint/release burndown | | <capacity-plan> | Capacity ledger: capacity − quality − features = slack | | <empathy-map> | Says / thinks / does / feels quadrants | | <gantt-chart> | Gantt schedule | | <impact-effort> | Impact vs. effort prioritization matrix | | <iron-triangle> | Scope / time / cost project-shape constraint surface | | <kanban-board> | Kanban board with drag-to-reorder | | <product-roadmap> | Time-phased roadmap | | <quadrant-grid> | Generic 2×2 quadrant plotting surface | | <quality-target> | Quality-attribute prioritization radar | | <requirement-card> | Single NFR ("ility") card | | <review-surface> | Annotated review/feedback surface | | <risk-register> | Risk log with likelihood/impact | | <story-map> | User-story map | | <traceability-matrix> | Requirement ↔ artifact traceability grid | | <user-journey> | Journey map with stages and emotion curve | | <user-persona> | Persona card | | <user-story> | User story card | | <work-item> | Work-item card |

Install

npm install @profpowell/vb-project-planning

Or load from a CDN (after publish):

<script type="module" src="https://unpkg.com/@profpowell/vb-project-planning/dist/vb-project-planning.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@profpowell/vb-project-planning/dist/vb-project-planning.min.css">

Usage

Register everything via the barrel, and load the component styles:

import '@profpowell/vb-project-planning';        // registers all elements
import '@profpowell/vb-project-planning/css';     // light-DOM component styles

Or pull a single component (tree-shake friendly):

import '@profpowell/vb-project-planning/kanban-board';
<kanban-board>…</kanban-board>
<user-persona name="Fred" role="Engineer">…</user-persona>

Peer: <drag-surface>

The drag-to-reorder components (kanban-board, quadrant-grid, impact-effort, story-map) use Vanilla Breeze's <drag-surface> element as a runtime peer. It ships with Vanilla Breeze core — load VB on the page and dragging works. Without it, these components still render and function; only drag-reordering is unavailable.

Design-token contract

These components are token-driven: they read Vanilla Breeze CSS custom properties (--color-*, --font-*, --size-*, …) from the host page and inherit the active theme automatically. No build-time coupling — load VB's token/theme CSS (or compatible tokens) and the components adopt it.

<link rel="stylesheet" href="https://unpkg.com/vanilla-breeze/dist/cdn/vanilla-breeze.css">

vanilla-breeze is declared as an optional peer dependency: required if you want VB to supply tokens/themes and the <drag-surface> peer (most consumers do).

Relationship to Vanilla Breeze

This package was decomposed out of vanilla-breeze core so that framework stays focused on general site-building primitives while planning tooling versions independently. General components that were grouped with the planning pack but belong on any site (diagram-wc, flow-diagram, glossary-wc, the <site-map> IA tree) remain in VB core. When building a planning system you may want to explore the main library for more general UI controls.

Development

npm run build   # bundle dist/ (esm + minified, js + css) via esbuild

Note the demo site depends on vanilla-breeze for tokens/themes and the <drag-surface> peer, and import this package directly.

License

MIT © Thomas A. Powell