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

@iconicompany/ui

v0.5.0

Published

Бренд платформы iconicompany: токены, оболочка кабинета, оболочка сайта, реестр модулей

Readme

@iconicompany/ui

Бренд платформы iconicompany: оболочка кабинета, реестр модулей, токены бренда. Публикуется в npm и подключается КАЖДЫМ модулем платформы — лендингом (/), админкой (/iadmin), подбором (/imatching). Ради этого он и существует: скопированная оболочка у каждого своя и расходится молча, а обновление пакета видно в bun.lock.

Каталог называется packages/ui, как последний сегмент имени пакета — конвенция организации (@icomponents/react лежит в packages/react).

Что отдаёт

| подпуть | что | |---|---| | @iconicompany/ui/nav | реестр PLATFORM_MODULES, отбор по ролям проектов, подсветка активного модуля и раздела | | @iconicompany/ui/dashboard-shell | DashboardShell — сайдбар, шапка, слоты модуля | | @iconicompany/ui/brand.css | токены бренда + блок [data-brand="iconicompany"] |

Подключение в модуле — см. комментарий в начале src/brand.css. Кратко: @source на node_modules обязателен, автодетект Tailwind туда не заходит.

Как выпускается

Только через GitHub Actions. Локальный npm publish не сработает: право публиковать выдано паре «репозиторий + имя файла воркфлоу» (npm trusted publisher, OIDC), а не человеку с токеном. Секрета NPM_TOKEN в репозитории нет и заводить его не нужно.

bun run release:ui -- minor     # ui-v0.1.0 → ui-v0.2.0
bun run release:ui              # patch
bun run release:ui -- --dry-run # какая версия получится, ничего не создаётся

Скрипт ставит тег ui-v* и создаёт GitHub Release; публикацию делает .github/workflows/publish-ui.yml, срабатывающий на пуш этого тега. Версию в package.json проставляет ВОРКФЛОУ из тега — руками её не правят, иначе она живёт в двух местах и однажды разойдётся.

Префикс тега свой, не общий v*: тем же репозиторием деплоится лендинг, и публикация пакета не должна ехать с каждой выкаткой сайта — иначе версия пакета отвечает на вопрос «когда выкатили сайт», а не «что изменилось в оболочке».

Что сломается, если переименовать файл воркфлоу

Доверие npm привязано к .github/workflows/publish-ui.yml по имени. Переименуете файл — публикация начнёт получать отказ в авторизации, и по сообщению причина не читается. Меняете имя — меняйте и в настройках пакета на npmjs.com.