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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@tripie-pyotato/design-system

v0.3.8

Published

트리피에 사용되는 디자인 시스템

Readme

Tripie Design system

!! THIS LIBRARY IS CURRENTLY UNDERGOING MAJOR CHANGES !!

Heads up

  • @components : for client components (marked with 'use client;')`
  • @components@core : base components available as server components
  • @shared : shared variables

Under the hood, tripie's design system have peer dependencies as stated below.

{
  "next": "*",
  "react": "*",
  "react-dom": "^18.3.1",
  "framer": "^2.4.1",
  "framer-motion": "^11.11.17",
  "maplibre-gl": "^4.7.1", // for aws map
  "react-map-gl": "^7.1.7", // for aws map
  "react-globe.gl": "^2.27.2", // for globe mesh
  "react-calendar": "^5.0.0", // for calendar
  "react-intersection-observer": "9.13.1",
  "usehooks-ts": "^3.1.0",
  "@base-ui-components/react": "1.0.0-beta.0" // for tool-tip
}

To use those features, install peer dependencies.

Installation

 $pnpm i framer framer-motion maplibre-gl react-globe.gl react-calendar react-intersection-observer usehooks-ts @base-ui-components/react
 $pnpm i @tripie-pyotato/design-system

| Name | Category | Description | Usage | | :----------------: | :------------: | :-------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- | | COLORS | colors | Referable color constants to use in inline style or props | import { COLORS } from '@tripie-pyotato/design-system/shared'; <TextFillAnimation text={'Text fill animation'} baseColor={COLORS['40']} /> | | ACCORDION_VARIANTS | variants | – | – | | GLOW_VARIANT | variants | – | – | | SHINE_VARIANT | variants | – | – | | PLACEHOLDER | resource url | – | – | | LOADING_IMG | resource url | – | – | | CLOUDINARY_URL | resource url | – | – | | RESOURCE | resource url | – | – | | ICON_RESOURCE | resource url | – | – |

  • @hooks : custom hooks

| Name | Description | Usage | | ------------- | --------------------------------------------------------------------------- | ----- | | useAppTheme | Custom hook to set up color theme. Currently, only dark theme is available. | | | useCalendar | Custom hook to interact with the calendar component. | | | useCycle | Custom hook to toggle between available style states. | |

(DOCUMENTATION IS IN PROGRESS!)