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

@matteoaliano/forest-web

v1.0.3

Published

Forest Design System — marketing & landing page components (Radix + shadcn + Tailwind v4)

Readme

@matteoaliano/forest-web

Status: 1.0.0 — public API frozen. See API freeze. Additions land in 1.x patches; removals or renames require a 2.0 major bump.

Forest Design System — marketing & landing-page components. Radix + shadcn primitives and ready-made conversion-focused blocks, styled with Tailwind v4 and the Alkemy+ token set (charcoal + red accent, Aeonik / Aeonik Mono / Alkemy BETA).

Sibling of @matteoaliano/forest-ui (MUI-based product UI). Use forest-web for marketing pages, forest-ui for authenticated app UI — don't mix.

Install

npm install @matteoaliano/forest-web

Quick start

// app entry (e.g. app/layout.tsx, main.tsx, _app.tsx)
import "@matteoaliano/forest-web/styles.css";
import "@matteoaliano/forest-web/fonts/aeonik/aeonik.css";
import "@matteoaliano/forest-web/fonts/aeonik-mono/aeonik-mono.css";
import "@matteoaliano/forest-web/fonts/alkemy-beta/alkemy-beta.css";
import { Navbar, Hero, LogoCloud, Features, CTA, Footer } from "@matteoaliano/forest-web";

export default function Home() {
  return (
    <>
      <Hero
        eyebrow="New — AI routing"
        title="Ship personalized pages in minutes."
        subtitle="Forest assembles on-brand landing pages from your tokens and copy."
        actions={[
          { label: "Start free",  href: "/signup" },
          { label: "Book a demo", href: "/demo", variant: "outline" },
        ]}
      />
      {/* ... */}
    </>
  );
}

No provider component needed — tokens live as CSS custom properties on :root.

See the installation guide for framework-specific recipes (Next.js App Router, Pages Router, Vite, Remix, Astro), Tailwind v4 interop, and troubleshooting.

What's in the box

PrimitivesButton, Badge, Card family, Sheet, Dialog, AlertDialog, Drawer, Popover, Tooltip, HoverCard, DropdownMenu, ContextMenu, Menubar, Toaster (sonner), Tabs, NavigationMenu, Breadcrumb, Pagination, Collapsible, Container, Section, Select, Checkbox, RadioGroup, Switch, Slider, Toggle, InputOTP, Field, Form, Command, Combobox, Calendar, DatePicker, DateRangePicker, Alert, AspectRatio, ScrollArea, Separator, Skeleton, Progress, Resizable, Table family, DataTable (TanStack), Carousel (embla), Chart family (recharts), Accordion, Avatar, Input, Textarea, Label, ShaderBackground + shader presets, cn, tv, tokens, useTheme, useToggleTheme, ForestWebProvider.

BlocksNavbar, Hero, LogoCloud, Features, BentoGrid, HowItWorks, Stats, Testimonials, Comparator, Integrations, FAQ, CTA, ContactForm, ContactInfo, ContactSplit, Footer, Pricing, CommandMenu, BookingForm, AnnouncementBar, TestimonialCarousel, CookieBanner, ThemeToggle.

Sub-paths/print (one-page document blocks), /linkedin (slide/post/carousel blocks), /backgrounds (decorative shader backgrounds), /logo (Forest Logo SVGs), /icons (full lucide-react re-export wall).

Full API reference: skills/forest-web/references/components.md. Locked surface: docs/superpowers/api-freeze.md. Consumer migration guide: docs/migration/v1.0-consumer-checklist.md.

Claude Code skill

This package ships a skill for Claude Code that enforces correct imports, block composition, and conversion-focused landing-page structure.

npx forest-web

Copies the skill into .claude/skills/forest-web/. Safe to commit — teammates get the same rules.

Optional auto-sync on install:

{
  "scripts": {
    "postinstall": "forest-web"
  }
}

Landing page playbook

The skill includes a conversion-focused playbook covering the 5-second test, canonical section order, hero/CTA/social-proof rules, and a pre-ship checklist.

Peer dependencies

  • react ^18 or ^19
  • react-dom ^18 or ^19
  • tailwindcss ^4 — optional, only if you extend with your own utilities
  • react-hook-form ^7.54 — optional, only needed if you use the <Form> surface

Scripts (this repo)

  • npm run build — bundle the package + compile styles.css
  • npm run test — run Vitest suite
  • npm run storybook — interactive component playground (port 6007)
  • npm run size — verify each sub-path is within its bundle-size budget

License

MIT