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

@thryvlabs/create-dex-prototype

v0.0.6

Published

Generate a local DEX Design System prototyping workspace (React or Vue) with AI-ready configuration — for exploratory UI work, not production app bootstrap

Downloads

235

Readme

@thryvlabs/create-dex-prototype

Generate a local DEX Design System prototyping workspace (React or Vue) with a single command. This CLI is for exploratory UI and design-system work, not for bootstrapping production applications.

Positioning (terminology)

  • Use this for: prototype workspaces, spikes, demos, and iterating on DEX-backed UI before any production rollout.
  • Do not use this for: “greenfield app” or production service bootstrap — treat outputs as disposable or merge-target prototypes, not canonical app starters.

Usage

No installation is required.

Interactive CLI

npx @thryvlabs/create-dex-prototype

You'll be prompted for:

  1. Prototype workspace name — directory to create; random name generated or use your own
  2. Framework — React or Vue
  3. AI coding tool — Select your AI coding tool (helps facilitate MCP setup)

If you already know the name of your prototype, you can pass it in the CLI command. This will be used for the directory of the prototype; it's advised you use kebab case, pascal case, or some other casing that doesn't use spaces.

npx @thryvlabs/create-dex-prototype my-dex-prototype

CLI flags

npx @thryvlabs/create-dex-prototype my-dex-prototype --dex-version 1.2.3

| Flag | Description | Default | | ----------------- | -------------------------------- | ---------- | | --dex-version | Override the DEX package version | (latest) | | -h, --help | Show help message | | | -v, --version | Show version number | |

What you get (planned)

my-dex-prototype/
  package.json
  vite.config.ts
  tsconfig.json
  postcss.config.js
  index.html
  src/
    main.tsx          # (or main.ts for Vue)
    App.tsx           # (or App.vue)
    styles.css
    Header.tsx        # Theme/color-scheme switcher
    home/
    contacts/
    automations/
  .gitignore
  .prettierrc
  eslint.config.mjs
  AGENTS.md           # AI agent instructions (if AI tool selected)
  CLAUDE.md           # Claude-specific config (if applicable)

Development

Local installation

If you want to test a pre-release or run a local build, you'll need to build + pack + install. It's recommended you uninstall when finished with testing to prevent issues later.

# Install dependencies
pnpm install

# Build the CLI
pnpm build

# Watch mode
pnpm dev

# Run tests
pnpm test

# Type check
pnpm typecheck

# Lint
pnpm lint

# Pack
pnpm pack
# This will tarball the currently set version in the project root.

# Install the version that you packed
npm install thryvlabs-create-dex-prototype-*.*.*.tgz

# Run local install
npx create-dex-prototype

Publishing

The CLI is published as @thryvlabs/create-dex-prototype.

pnpm build
npm publish

License

GPL-3.0