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

lovable-stack

v1.1.2

Published

Build Lovable AI projects locally without configuration stress.

Readme

Lovable Stack

Build Lovable AI projects locally without configuration stress.

Lovable Stack is a Bun-powered project generator that recreates the working stack behind projects generated by Lovable AI, so you can run, edit, and fully own your code locally. It does the heavy setup for you — you focus on building.


Quick Start

  1. Create a new project:
bunx lovable-stack my-app

Enter the project folder:

cd my-app

Install dependencies:

bun install

Start the development server:

bun run dev

Your app is now running locally.

Why Lovable Stack?

AI builders are amazing for speed. You can:

Generate a full demo site in minutes

Connect GitHub

Ship ideas fast

But when you clone that project locally, you may face:

Dependency issues

Runtime conflicts

TypeScript strict errors

Missing configuration alignment

Bun lock visible packages

Lovable Stack fixes that. It scaffolds a clean, aligned local environment so your project runs properly on your machine.

What You Get

Lovable Stack creates a fully configured project using:

Bun

React + Vite

TypeScript

Tailwind CSS

shadcn/ui

Radix UI

Everything is preconfigured and version-aligned. No manual wiring. No rebuilding the stack from scratch.

Requirements

Before using Lovable Stack, install:

Bun (latest version)

Basic knowledge of React & TypeScript

Install Bun (MacOS/Linux):

curl -fsSL https://bun.sh/install | bash

Install Bun (Windows):

powershell -c "irm bun.sh/install.ps1|iex"

Visit Bun website: https://bun.com/docs/installation

How To Use With Lovable AI

Generate your project using Lovable AI.

Copy your generated components (e.g., header.tsx, hero.tsx).

Paste them into /src/components inside your Lovable Stack project.

Continue building locally.

Now you own your code and environment.

Project Structure my-app/ ├── src/ │ ├── components/ │ ├── pages/ │ └── main.tsx ├── public/ ├── tsconfig.json ├── vite.config.ts └── bun.lock

Everything is already wired together.

Common Errors & Fixes

TypeScript “must be imported as type” error

If you see an error about importing types incorrectly, use:

import { NavLink as RouterNavLink } from "react-router-dom"; import type { NavLinkProps } from "react-router-dom";

Instead of:

import { NavLinkProps } from "react-router-dom";

This project uses strict TypeScript settings.

Reporting Issues

If you encounter an error not listed here:

Open a GitHub Issue

Include:

Your OS

Bun version

Full error message

Screenshot (if possible)

This helps improve Lovable Stack for everyone.

Philosophy

AI helps you move fast. Lovable Stack helps you move correctly.

It’s built for developers who want:

Speed without losing control

AI assistance without dependency confusion

A stable local development environment

This project is designed to work alongside Lovable AI projects. It is not affiliated with or endorsed by Lovable.

Contributing

Contributions are welcome:

Fork the repository

Create a new branch

Submit a pull request

If you’ve solved an issue or improved the developer experience, feel free to contribute.