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

@emulators/vercel

v0.4.1

Published

Fully stateful Vercel API emulation with Vercel-style JSON responses and cursor-based pagination.

Downloads

300

Readme

@emulators/vercel

Fully stateful Vercel API emulation with Vercel-style JSON responses and cursor-based pagination.

Part of emulate — local drop-in replacement services for CI and no-network sandboxes.

Install

npm install @emulators/vercel

Endpoints

User & Teams

  • GET /v2/user — authenticated user
  • PATCH /v2/user — update user
  • GET /v2/teams — list teams (cursor paginated)
  • GET /v2/teams/:teamId — get team (by ID or slug)
  • POST /v2/teams — create team
  • PATCH /v2/teams/:teamId — update team
  • GET /v2/teams/:teamId/members — list members
  • POST /v2/teams/:teamId/members — add member

Projects

  • POST /v11/projects — create project (with optional env vars and git integration)
  • GET /v10/projects — list projects (search, cursor pagination)
  • GET /v9/projects/:idOrName — get project (includes env vars)
  • PATCH /v9/projects/:idOrName — update project
  • DELETE /v9/projects/:idOrName — delete project (cascades)
  • GET /v1/projects/:projectId/promote/aliases — promote aliases status
  • PATCH /v1/projects/:idOrName/protection-bypass — manage bypass secrets

Deployments

  • POST /v13/deployments — create deployment (auto-transitions to READY)
  • GET /v13/deployments/:idOrUrl — get deployment (by ID or URL)
  • GET /v6/deployments — list deployments (filter by project, target, state)
  • DELETE /v13/deployments/:id — delete deployment (cascades)
  • PATCH /v12/deployments/:id/cancel — cancel building deployment
  • GET /v2/deployments/:id/aliases — list deployment aliases
  • GET /v3/deployments/:idOrUrl/events — get build events/logs
  • GET /v6/deployments/:id/files — list deployment files
  • POST /v2/files — upload file (by SHA digest)

Domains

  • POST /v10/projects/:idOrName/domains — add domain (with verification challenge)
  • GET /v9/projects/:idOrName/domains — list domains
  • GET /v9/projects/:idOrName/domains/:domain — get domain
  • PATCH /v9/projects/:idOrName/domains/:domain — update domain
  • DELETE /v9/projects/:idOrName/domains/:domain — remove domain
  • POST /v9/projects/:idOrName/domains/:domain/verify — verify domain

Environment Variables

  • GET /v10/projects/:idOrName/env — list env vars (with decrypt option)
  • POST /v10/projects/:idOrName/env — create env vars (single, batch, upsert)
  • GET /v10/projects/:idOrName/env/:id — get env var
  • PATCH /v9/projects/:idOrName/env/:id — update env var
  • DELETE /v9/projects/:idOrName/env/:id — delete env var

Auth

All endpoints accept teamId or slug query params for team scoping. Pagination uses cursor-based limit/since/until with pagination response objects.

Seed Configuration

vercel:
  users:
    - username: developer
      name: Developer
      email: [email protected]
  teams:
    - slug: my-team
      name: My Team
  projects:
    - name: my-app
      team: my-team
      framework: nextjs
  integrations:
    - client_id: "oac_abc123"
      client_secret: "secret_abc123"
      name: "My Vercel App"
      redirect_uris:
        - "http://localhost:3000/api/auth/callback/vercel"

Links