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

@tres-marias/design-system

v0.4.0

Published

Tres Marías — the design system distilled from Manteca, shared by AgentOS (indigo-human-surface) and Capibara (manteca).

Readme

Tres Marías — design system

Tres Marías is the design system distilled from Manteca (Capibara's product UI) and shared by every human surface of the company: AgentOS (indigo-human-surface) today, Capibara/Manteca as the next consumer. It is a transcription, not a redesign: every token, control geometry, material and motion rule names the Manteca source it comes from.

What is in the package

| Path | Contents | | --- | --- | | src/lib/styles/tres-marias.css | The one stylesheet: tokens (light/dark, accents, materials), controls, stacks and rows, toolbar, sheets and dialogs, journeys, viewer, motion. Consumers import it and add no CSS of their own. | | src/lib/components/* | Tres Marías compositions (Stack, Row, ActionRow, Disclosure, IconBox, FaceDot, Avatar, ToolbarButton, Segmented, Widget, Chart, Empty, Notice, Icon…). Consumers compose Places from these; they never emit ad-hoc markup with private classes. | | src/lib/components/icons.ts + Icon.svelte | The exact glyph table of the surfaces (24-viewBox strokes). | | docs/tres-marias-design-system.md | The written system: principles, tokens, families, chassis rulings (§7 records every owner decision with its date). docs/build_ds.py renders it. | | docs/interaction-modes-and-place-footer.md | Owner decision (2026-09-17): footer ownership; interaction modes versus presentation surfaces. Explicitly separates decided behavior from proposed detection/fallback policy. |

Consuming it

Inside the Tres Marías Framework workspace: "@tres-marias/design-system": "workspace:*".

/* app.css */
@import "tailwindcss";
@import "shadcn-svelte/tailwind.css";
@source "../../node_modules/@tres-marias/design-system/src";
@import "@tres-marias/design-system/styles/tres-marias.css";
<script>
  import { Stack, Row } from '@tres-marias/design-system';
  import Icon from '@tres-marias/design-system/components/Icon.svelte';
</script>

Peer dependencies: svelte@5, bits-ui@2, @lucide/svelte, tailwind-variants, clsx, tailwind-merge (and layerchart for charts).

Rules of the house

  • Manteca must not degrade: a value that differs from Manteca is a bug unless the owner decided it (then §7 records it).
  • One writer per rule. A consumer that needs a rule Manteca does not have composes existing values and says which ones, inside this stylesheet.
  • Behaviour from bits-ui/shadcn (focus, escape, portal, a11y); looks from the stylesheet. Never both from ad-hoc code.

License

Apache-2.0 — see LICENSE at the repository root. "Tres Marías" and its logos are trademarks, not covered by this code license — see TRADEMARKS.md.