vite-plugin-generate-package-json
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

vite-plugin-generate-package-json

Generate a package.json and package-lock.json file with only the packages that your Vite bundle imports.

About

This plugin is useful for when you want to generate an SBOM or scan your project for vulnerable Open Source libraries but you don't want to include libraries which aren't included in your final production bundle. Many libraries miscategorize their dependencies (dependency vs devDepdency) which leads to many libraries appearing in production NPM audit reports etc even though the library isn't included in the final production build.

Installation

# npm
npm i -D vite-plugin-generate-package-json

Usage

// vite.config.ts
import { defineConfig } from "vite";
import { generatePackageJson } from "vite-plugin-generate-package-json";

export default defineConfig({
  root: "src",
  build: {
    outDir: "build",
  },
  plugins: [generatePackageJson()],
});

Configuration

There are some useful options, all of them are optional:

outputDir

Type: string Default: build

Set the output directory where the package.json and package-lock.json files will be written to.

generatePackageJson({
  outputDir: "dist",
});

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i vite-plugin-generate-package-json

Weekly Downloads

33

Version

1.1.0

License

MIT

Unpacked Size

7.89 kB

Total Files

5

Last publish

Collaborators

  • maccuaa