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

@livo-build/livo

v0.1.0

Published

Livo developer toolkit — a typed SDK and the `livo` CLI for connecting to and building Livo projects.

Downloads

108

Readme

livo

The Livo developer toolkit (TypeScript): a programmatic SDK and the livo CLI in one package, for connecting to and building Livo projects — the web3 product factory you also drive from Claude.

  • As a library — a typed client over the Livo MCP: list projects, push code, manage indexers/subgraphs, read deploys. Use it from agents, scripts, or CI.
  • As a CLI — the livo command: sign in once (browser), link a project, and get the local inner loop (dev / push / watch).

CLI quickstart

npm i -g @livo-build/livo     # installs the `livo` command
livo login                   # opens your browser to authorize (or: livo login <api-key>)
livo link                    # pick a project → pulls it locally
livo dev                     # writes .env.local (public build vars) + runs your dev server
livo watch                   # auto-push on save → preview URL

(npx @livo-build/livo also runs livo directly.)

SDK quickstart

import { createClient } from "@livo-build/livo";

const livo = createClient({ token: process.env.LIVO_API_KEY! });
const { projects } = await livo.projects.list();
await livo.code.push([{ path: "interface/index.html", content: "<h1>hi</h1>" }], { project_id: projects[0].slug });
const { indexers } = await livo.indexers.list(projects[0].slug);

Layout

src/
  index.ts            library entry — exports (Node + browser safe)
  rpc.ts client.ts pkce.ts oauth.ts types.ts errors.ts
  cli.ts              the `livo` bin (#!/usr/bin/env node)
  cli/                CLI-only modules (fs/http live here, never in index.ts)

The library entry stays free of Node-only imports, so importing @livo-build/livo in a browser/bundler never pulls the CLI code.

Develop

npm install
npm run typecheck
npm run build

Auth: interactive users sign in via OAuth (browser, no secret to paste); API keys are for CI/headless. Tokens are stored in ~/.livo/credentials.json, per-project state in .livo/project.json.

Publish

npm install && npm run build && npm publish   # public via publishConfig