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

granola-to-markdown

v1.0.0

Published

A utility that exports Granola meeting notes and transcripts to Markdown files

Downloads

4

Readme

🥣 Granola to Markdown

This is a script that exports Granola meeting notes and transcripts to Markdown files.

Features

  • Finds the Granola cache-v3.json file automatically
  • Extracts meeting data, notes, and transcripts
  • Creates formatted Markdown files for each meeting
  • Supports filtering by date range
  • Handles attendee information from both meeting metadata and calendar events
  • Interactive command-line interface with helpful options
  • Visual progress indication with detailed feedback
  • Comprehensive error messages with suggestions
  • Works with both Bun and Node.js runtimes

Usage

# Run with default settings (all meetings, export to ~/meetings)
bun index.ts

# Show help with all available options
bun index.ts --help

# Export meetings from the last 7 days
bun index.ts --days 7

# Force overwrite of existing files
bun index.ts --force

# Specify output directory
bun index.ts --output /path/to/output

# Display detailed logs
bun index.ts --verbose

# Combine options
bun index.ts --days 14 --force --output ./my-meetings --verbose

Default behavior

  • Exports all meetings from all time (no date filter)
  • Saves files to ~/meetings directory
  • Skips existing files unless --force is specified
  • Filenames are formatted as YYYY-MM-DD-meeting-title.md

Markdown format

Each exported meeting file includes:

  • Meeting title as H1 heading
  • Meeting date
  • List of attendees (from metadata or calendar)
  • Meeting notes (in Markdown format if available)
  • Full transcript with speaker information

Requirements

  • Bun runtime (for local execution)
  • Node.js (if using npx)
  • Granola desktop app installed with cache-v3.json file

Using with npx

Once published to npm, you can run the tool without installation:

npx granola-to-markdown
npx granola-to-markdown --help
npx granola-to-markdown --days 7 --force
npx granola-to-markdown --output /path/to/output
npx granola-to-markdown --days 14 --force --verbose

How it works

The script:

  1. Locates the Granola cache file at ~/Library/Application Support/Granola/cache-v3.json
  2. Parses the nested JSON structure to extract meeting data
  3. Filters for valid meetings within the specified date range
  4. Formats each meeting as a Markdown file
  5. Saves the files to the specified output directory