|
|
4 months ago | |
|---|---|---|
| .. | ||
| es | 4 months ago | |
| lib | 4 months ago | |
| lib-vendor | 4 months ago | |
| LICENSE | 4 months ago | |
| README.md | 4 months ago | |
| d3-array.d.ts | 4 months ago | |
| d3-array.js | 4 months ago | |
| d3-color.d.ts | 4 months ago | |
| d3-color.js | 4 months ago | |
| d3-dispatch.d.ts | 4 months ago | |
| d3-dispatch.js | 4 months ago | |
| d3-dsv.d.ts | 4 months ago | |
| d3-dsv.js | 4 months ago | |
| d3-ease.d.ts | 4 months ago | |
| d3-ease.js | 4 months ago | |
| d3-fetch.d.ts | 4 months ago | |
| d3-fetch.js | 4 months ago | |
| d3-force-3d.js | 4 months ago | |
| d3-force.d.ts | 4 months ago | |
| d3-force.js | 4 months ago | |
| d3-format.d.ts | 4 months ago | |
| d3-format.js | 4 months ago | |
| d3-geo-projection.js | 4 months ago | |
| d3-geo.d.ts | 4 months ago | |
| d3-geo.js | 4 months ago | |
| d3-hierarchy.d.ts | 4 months ago | |
| d3-hierarchy.js | 4 months ago | |
| d3-interpolate.d.ts | 4 months ago | |
| d3-interpolate.js | 4 months ago | |
| d3-path.d.ts | 4 months ago | |
| d3-path.js | 4 months ago | |
| d3-quadtree.d.ts | 4 months ago | |
| d3-quadtree.js | 4 months ago | |
| d3-random.d.ts | 4 months ago | |
| d3-random.js | 4 months ago | |
| d3-regression.js | 4 months ago | |
| d3-scale-chromatic.d.ts | 4 months ago | |
| d3-scale-chromatic.js | 4 months ago | |
| d3-scale.d.ts | 4 months ago | |
| d3-scale.js | 4 months ago | |
| d3-shape.d.ts | 4 months ago | |
| d3-shape.js | 4 months ago | |
| d3-time.d.ts | 4 months ago | |
| d3-time.js | 4 months ago | |
| d3-timer.d.ts | 4 months ago | |
| d3-timer.js | 4 months ago | |
| package.json | 4 months ago | |
README.md
@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
- d3-scale-chromatic
- d3-shape
- d3-time
- d3-timer
- d3-ease
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-time": "3.1.0",
"d3-timer": "3.0.1",
"d3-ease": "3.0.1"
}
🛠️ Development
This project recommends using bun for development.
- Install dependencies:
bun install
- Link module-resolver:
cd module-resolver && bun link && cd .. && bun link module-resolver
- 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:
- Fork this repository
- Create a new branch for your package addition
- Add the new package to
package.jsondependencies - Update the build configuration in
scripts/build.tsif necessary - Build and test the package locally using
bun run build - Update the README.md to include the new package in the "Included Packages" list and "Version Information" section
- 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.