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

@devmadev/adventure-ds

v0.1.0

Published

Adventure DS — Rivian-inspired React components and CSS tokens

Readme

Adventure DS

Published npm name: @devmadev/adventure-dspublic scoped package on npm (publishConfig.access: "public"). React components and CSS tokens, built with Vite and TypeScript. Your GitHub repo can stay private; only the published dist/ appears on npm.

Scripts

  • npm run dev — local dev server (showcase app)
  • npm run build — production build of the showcase app → dist-app/
  • npm run build:lib — library bundle + types for npm → dist/
  • npm run lint — ESLint
  • npm run preview — preview the showcase build (dist-app/)

Use as a dependency

npm install @devmadev/adventure-ds

In your app (React 18+):

import { Button, Heading } from '@devmadev/adventure-ds'
import '@devmadev/adventure-ds/adventure-ds.css'

react and react-dom must be installed by the host app (peer dependencies).

Figma Make

Add @devmadev/adventure-ds to your Make kit like any other dependency from the public npm registry.

Publish to npm

  1. Ensure your npm account is a member of the devmadev org with permission to publish @devmadev packages (npm teams).
  2. npm login
  3. npm publishprepublishOnly runs build:lib first.

Dry-run the tarball:

npm pack --dry-run

Layout

  • src/tokens/ — global CSS variables (semantic + primitives)
  • src/components/ — UI components (barrel export in src/components/index.ts)

Git

This folder is a Git repository on main. For commits, set your name and email if you have not already:

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

GitHub

This project’s remote (example — yours may already match):

[email protected]:robaimes-figma/devmaDS.git

Push updates:

git push -u origin main

If origin points at the wrong URL:

git remote set-url origin [email protected]:robaimes-figma/devmaDS.git