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

@voyagier/cli

v1.8.1

Published

Voyagier CLI — AI trip planning from your terminal

Downloads

1,031

Readme

@voyagier/cli

Search flights, book hotels, add activities — from your terminal. Everything syncs to voyagier.com.

npm install -g @voyagier/cli
voyagier auth set-token <your-token>

Two Commands to Book a Trip

voyagier plan-trip --title "Tokyo Trip" --from LAX --to NRT \
  --depart 2026-04-15 --return 2026-04-22 --hotel Tokyo \
  --travellers "John Smith" --auto-select navigator --json

voyagier book <PLAN_ID> --json

Add Activities

voyagier search activities --plan <PLAN_ID> --destination Tokyo \
  --date 2026-04-16 --query "sushi tour" --json
voyagier select 1 --plan <PLAN_ID> --json
voyagier book <PLAN_ID> --json

Multi-Leg Trips

A plan is a shopping cart. Keep adding to it:

# Leg 1 — creates plan + travellers
voyagier plan-trip --title "Island Hop" --from DCA --to LIH \
  --depart 2026-03-25 --hotel Poipu --travellers "John, Jane" \
  --auto-select navigator --json

# Leg 2 — reuses travellers (omit --travellers)
voyagier plan-trip --plan <PLAN_ID> --from LIH --to HNL \
  --depart 2026-03-30 --hotel Waikiki --auto-select navigator --json

# Return
voyagier plan-trip --plan <PLAN_ID> --from HNL --to DCA \
  --depart 2026-04-03 --auto-select navigator --json

voyagier book <PLAN_ID> --json

Commands

| Command | Description | |---------|-------------| | plan-trip | Create or extend a plan (flights + hotels) | | search flights | Search flights by route and date | | search hotels | Search hotels by location and dates | | search activities | Search Viator experiences and tours | | search airports | Look up airport codes | | select <n> | Select from last search results | | options <planId> | View sub-options (cabin class, room type) | | pick <n> | Select a sub-option | | cart <planId> | View shopping cart | | book <planId> | Checkout via Stripe | | plans | Create, list, get, delete plans | | travellers | Add, list, remove travellers | | bookings | View booking records | | chat | Interactive AI trip planning | | auth | Manage authentication | | agent-docs | Full AI agent integration reference |

Every command supports --json for structured output and --plan <id> where applicable.

AI Agents

voyagier agent-docs         # full integration reference
voyagier agent-docs --json  # machine-readable

Or read AGENT.md directly — covers auto-select strategies, JSON response contracts, composability patterns, error handling, and known quirks.

Auto-Select Strategies

| Strategy | What it optimizes | |----------|-------------------| | navigator | Best overall value (price + duration + stops) | | cheapest | Lowest price | | fastest | Shortest duration | | fewest-stops | Minimum layovers |

Environment Variables

| Variable | Description | |----------|-------------| | VOYAGIER_TOKEN | Personal access token (overrides config) | | VOYAGIER_API_URL | API base URL (default: https://travel.voyagier.com) |

How It Works

Thin client over Voyagier's GraphQL API — same API the web app uses. Everything syncs both ways.

License

UNLICENSED — proprietary.