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

@abeedoo/bigdesign-svelte

v0.3.1

Published

Svelte 5 port of BigCommerce's BigDesign component library

Downloads

443

Readme

BigDesign Svelte

Unofficial Svelte 5 port of BigCommerce's BigDesign React component library.

Disclaimer: This project is not affiliated with, endorsed by, or maintained by BigCommerce. BigDesign is a trademark of BigCommerce. This is an independent, community-driven port created to bring BigDesign's design language to the Svelte ecosystem.

Live Playground | npm | GitHub

What is this?

BigDesign is BigCommerce's open-source design system for building apps that integrate with the BigCommerce admin panel. The original library is built in React. This project ports those components to Svelte 5, matching the same visual appearance, props API, and accessibility behavior using modern Svelte patterns (runes, snippets, scoped CSS).

Original BigDesign Resources

Getting Started

Install

npm install @abeedoo/bigdesign-svelte

Add the theme

Import the theme CSS once in your root +layout.svelte to load the design tokens (colors, spacing, typography, etc.) as CSS custom properties:

<script>
  import '@abeedoo/bigdesign-svelte/theme';
</script>

Use components

<script>
  import { Button, Input, Panel, Alert } from '@abeedoo/bigdesign-svelte';

  let name = $state('');
</script>

<Panel header="Create Product">
  <Input label="Product Name" placeholder="Enter a name" bind:value={name} />
  <Button variant="primary">Save</Button>
</Panel>

<Alert variant="success" header="Saved!">Your product has been created.</Alert>

Browse all components with live, interactive demos at bigdesign-svelte.abeedoo.com.

Components

Layout

Box, Flex, FlexItem, Grid, GridItem, Panel

Actions

Button, Link, Dropdown

Forms

Form, FormGroup, Input, Textarea, Select, Checkbox, Radio, Switch, Fieldset

Data Display

Typography (H0-H4, Text, Small), HR, Badge, Table, StatefulTable

Feedback

Alert, InlineMessage

Navigation

Tabs, OffsetPagination

Overlays

Modal, Tooltip

Utilities

GlobalStyles

Key Differences from React BigDesign

| | React BigDesign | BigDesign Svelte | |---|---|---| | Framework | React 18+ | Svelte 5 | | Styling | styled-components (CSS-in-JS) | Scoped CSS with --bd-* custom properties | | Slots | children / render props | Svelte snippets | | State | useState / useRef | $state / $bindable runes | | Types | TypeScript interfaces | TypeScript interfaces |

Development

npm install
npm run dev          # Dev server with interactive playground
npm run build        # Build the playground site
npm run package      # Build library to dist/
npm run check        # TypeScript check

The dev server runs an interactive playground site where you can browse and test all components with live demos.

Playground Site

The project includes a standalone playground site for browsing components. It builds as a static SPA and can be deployed via Docker:

docker build -t bigdesign-svelte .
docker run -p 8080:80 bigdesign-svelte

Publishing

npm run package
npm publish

AI Context

This project includes an llms.txt file following the llms.txt standard — a structured manifest that helps AI agents understand the library's components, props, and usage patterns. If you're building with an AI coding assistant, point it at this file for accurate component generation:

https://bigdesign-svelte.abeedoo.com/llms.txt

The file documents all 46 components with their props, types, defaults, and code examples in a format optimized for LLM consumption.

License

MIT


Built and maintained by Abeedoo Labs. Not affiliated with BigCommerce.