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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@antv/vendor

v1.0.10

Published

Vendored dependencies to fix ERR_REQUIRE_ESM.

Downloads

140,627

Readme

@antv/vendor

A centralized dependency management solution for d3 libraries, providing vendored third-party commonjs dependencies (inspired by VictoryVendor).

📦 Included Packages

We provide the following libraries:

  • d3-array
  • d3-color
  • d3-dispatch
  • d3-dsv
  • d3-fetch
  • d3-force
  • d3-force-3d
  • d3-format
  • d3-geo
  • d3-geo-projection
  • d3-hierarchy
  • d3-interpolate
  • d3-path
  • d3-quadtree
  • d3-random
  • d3-regression
  • d3-scale-chromatic
  • d3-shape
  • d3-timer

Note: The following packages currently lack TypeScript type definitions:

  • d3-regression
  • d3-geo-projection
  • d3-force-3d

📥 Installation

npm install @antv/vendor
# or
yarn add @antv/vendor
# or
pnpm add @antv/vendor

🔄 Usage

ESM

- import { geoProjection } from "d3-geo-projection"
+ import { geoProjection } from "@antv/vendor/d3-geo-projection";

CommonJS

const { geoProjection } = require("@antv/vendor/d3-geo-projection");

Both ESM and CommonJS are supported. The package automatically routes to the appropriate version based on your import style.

Version Information

Here are the specific versions for each package:

{
  "d3-array": "3.2.4",
  "d3-color": "3.1.0",
  "d3-dispatch": "3.0.1",
  "d3-dsv": "3.0.1",
  "d3-fetch": "3.0.1",
  "d3-force": "3.0.0",
  "d3-force-3d": "3.0.5",
  "d3-format": "3.1.0",
  "d3-geo": "3.1.1",
  "d3-geo-projection": "4.0.0",
  "d3-hierarchy": "3.1.2",
  "d3-interpolate": "3.0.1",
  "d3-path": "3.1.0",
  "d3-quadtree": "3.0.1",
  "d3-random": "3.0.1",
  "d3-regression": "1.3.10",
  "d3-scale": "^4.0.2",
  "d3-scale-chromatic": "3.1.0",
  "d3-shape": "3.2.0",
  "d3-timer": "3.0.1",
  "d3-time": "^3.1.0",
}

🛠️ Development

This project recommends using bun for development.

  1. Install dependencies:
bun install
  1. Link module-resolver:
cd module-resolver && bun link && cd .. && bun link module-resolver
  1. Build the project:
bun run scripts/build.ts

📦 Contributing New Packages

If you need to add a new package to @antv/vendor, please follow these steps:

  1. Fork this repository
  2. Create a new branch for your package addition
  3. Add the new package to package.json dependencies
  4. Update the build configuration in scripts/build.ts if necessary
  5. Build and test the package locally using bun run build
  6. Update the README.md to include the new package in the "Included Packages" list and "Version Information" section
  7. Create a Pull Request with:
    • A clear description of why this package is needed
    • Any potential impact on existing functionality
    • Confirmation that the package has been tested

Note: Please ensure the package you're adding is compatible with both ESM and CommonJS module systems.

📄 License

This project is released under the MIT license, but the vendor'ed in libraries include other licenses (e.g. ISC) that we enumerate in our package.json:license field.