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

pacatui

v0.1.22

Published

A simple tui app for task, timer and invoicing for projects.

Readme

Paca

Paca

A simple TUI app for task, timer and invoicing for projects.

License npm

Features

  • Project Management - Organize tasks by projects with color coding
  • Task Tracking - Create, edit, and manage tasks with priorities and statuses
  • Time Tracking - Start/stop timers with descriptions and hourly rates
  • Timesheets - View uninvoiced time entries grouped by project
  • Stripe Invoicing - Create draft invoices directly from time entries
  • Invoice Management - View and manage all your Stripe invoices
  • Dashboard - Overview of projects, tasks, and time stats
  • Reports - Weekly/monthly hour & earnings analytics, trends, client and project breakdowns, work patterns
  • Menu Bar - Native macOS menu bar companion for quick timer control
  • Offline-first - All data stored locally in SQLite
  • Vim-style Navigation - Keyboard-driven interface

Installation

Via npm (recommended)

npm install -g pacatui
paca

Via bun

bun install -g pacatui
paca

From source

git clone https://github.com/wes/paca.git
cd paca
bun install
bun run start

Usage

Simply run:

paca

On first run, Paca will automatically create its database at ~/.paca/paca.db.

Keyboard Shortcuts

Global

| Key | Action | |-----|--------| | 1 | Dashboard | | 2 | Tasks | | 3 | Timesheets | | 4 | Invoices | | 5 | Reports | | 6 | Settings | | ? | Help | | t | Start timer | | s | Stop timer (when running) | | q | Quit |

Navigation

| Key | Action | |-----|--------| | j / | Move down | | k / | Move up | | Tab | Switch panels | | Enter | Select/Confirm | | Esc | Cancel/Go back |

Reports

| Key | Action | |-----|--------| | / or h / l | Previous/next report | | [ / ] | Previous/next report | | j / k or / | Scroll | | PgUp / PgDn | Page through a report | | r | Recalculate |

Projects & Tasks

| Key | Action | |-----|--------| | n | Create new | | e | Edit | | d | Delete | | Space | Toggle task status | | p | Cycle priority | | a | Archive/Unarchive project | | A | Toggle show archived | | c | Link customer to project |

Timesheets

| Key | Action | |-----|--------| | Space | Select entry for invoicing | | e | Edit time entry | | d | Delete time entry | | i | Create invoice from selected |

Invoices

| Key | Action | |-----|--------| | Enter | Open invoice in browser | | r | Refresh list | | ] | Next page | | [ | Previous page |

Configuration

Settings

Access settings by pressing 6:

  • Business Name - Your business name for invoices
  • Stripe API Key - Enable invoicing features
  • Timezone - Set display timezone (or auto-detect)
  • Menu Bar - Toggle the macOS menu bar companion
  • Export/Import - Backup and restore your data

Data Location

  • Database: ~/.paca/paca.db
  • Backups: ~/.paca/backups/

Menu Bar (macOS)

Paca includes a native macOS menu bar companion that shows your running timer and lets you start/stop timers without opening the TUI.

Enable via Settings

  1. Press 5 to open Settings
  2. Select Menu Bar and press Enter to toggle it on

Enable via CLI

paca menubar enable    # Compile & launch
paca menubar disable   # Stop & remove
paca menubar status    # Show current status

The first time you enable it, Paca compiles a small native Swift helper binary (requires Xcode Command Line Tools). The paca mascot icon appears in your menu bar with live timer status.

Requires: Xcode Command Line Tools (xcode-select --install)

Stripe Integration

To enable invoicing:

  1. Get your Stripe API key from dashboard.stripe.com/apikeys
  2. Press 5 to go to Settings
  3. Add your Stripe Secret Key
  4. Link customers to projects using c in the Projects view
  5. Create invoices from the Timesheets view

Tech Stack

  • Runtime: Bun
  • TUI Framework: @opentui/react
  • Database: SQLite via libsql
  • ORM: Prisma 7
  • Payments: Stripe API

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

MIT - see LICENSE for details.