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

skillswap-frontend

v1.0.0

Published

> NFT Marketplace on the Stacks blockchain, secured by Bitcoin.

Readme

PixelStacks 🎨

NFT Marketplace on the Stacks blockchain, secured by Bitcoin.

Deploy with Vercel

Overview

PixelStacks is a fully on-chain NFT marketplace built on Stacks. Users can mint, list, and buy pixel art NFTs using STX. The smart contract enforces a 5% royalty to original creators on every secondary sale.

Project Structure

pixelstacks/
├── contracts/                  # Clarity smart contracts
│   └── pixelstacks-nft.clar   # SIP-009 NFT + Marketplace
├── tests/                      # Clarinet tests (Deno)
│   └── pixelstacks-nft_test.ts
├── Clarinet.toml               # Clarinet project config
├── frontend/                   # Next.js frontend
│   ├── src/
│   │   ├── pages/             # Next.js pages
│   │   ├── components/        # React components
│   │   ├── hooks/             # Wallet & contract hooks
│   │   └── styles/            # Global CSS
│   ├── .env.local.example     # Environment variables template
│   └── package.json
└── vercel.json                 # Vercel deployment config

Smart Contract Features

  • SIP-009 compliant NFT standard
  • Mint NFTs for 1 STX
  • List NFTs for sale at custom price
  • Buy listed NFTs
  • Unlist your NFTs
  • 5% Royalties auto-paid to original creator on secondary sales
  • 10,000 max supply
  • Admin functions for owner

Frontend Features

  • ✅ Stacks wallet connect (Hiro Wallet / Xverse)
  • ✅ Mint page with live preview
  • ✅ Explore marketplace with search & filters
  • ✅ My NFTs dashboard with list/unlist actions
  • ✅ Dark pixel art aesthetic UI

Setup & Deployment

1. Deploy Smart Contract

Install Clarinet:

# Install Clarinet
brew install clarinet   # macOS
# or: https://docs.hiro.so/clarinet/getting-started

# Test contract
clarinet test

# Deploy to testnet
clarinet deployments apply --testnet

After deployment, copy your contract address and update .env.local.

2. Frontend Setup

cd frontend
cp .env.local.example .env.local
# Edit .env.local with your contract address

npm install
npm run dev

Open http://localhost:3000.

3. Deploy to Vercel

  1. Push repo to GitHub
  2. Import in Vercel
  3. Set root directory to frontend
  4. Add environment variables from .env.local
  5. Deploy!

Or use the button at the top of this README.


Environment Variables

| Variable | Description | |---|---| | NEXT_PUBLIC_STACKS_NETWORK | testnet or mainnet | | NEXT_PUBLIC_CONTRACT_ADDRESS | Your deployed contract address | | NEXT_PUBLIC_STACKS_API | Hiro API URL | | NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID | WalletConnect Project ID |


Tech Stack

  • Smart Contract: Clarity (Stacks)
  • Frontend: Next.js 14, TypeScript, Tailwind CSS
  • Wallet: @stacks/connect (Hiro Wallet, Xverse)
  • Deployment: Vercel

License

MIT