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

rollup-plugin-oxc-transform

v0.1.0

Published

Rollup plugin used to transpile JavaScript/TypeScript code with oxc

Readme

rollup-plugin-oxc-transform

CI Code style: prettier Lint: eslint npm version issues

🍣 A Rollup plugin to transpile TypeScript/JavaScript with oxc-transformer.

[!WARNING] Work in progress

[!TIP] If you need to generate declarations consider to use unplugin-isolated-decl

Install

npm i --save-dev rollup oxc-transform oxc-resolve rollup-plugin-oxc-transform
yarn add --dev rollup oxc-transform oxc-resolve rollup-plugin-oxc-transform
pnpm add --save-dev rollup oxc-transform oxc-resolve rollup-plugin-oxc-transform

Usage

// rollup.config.js
import { defineConfig } from 'rollup';
import { oxcTransform } from 'rollup-plugin-oxc-transform';

export default defineConfig({
  input: 'src/index.js',
  output: {
    dir: 'dist',
    format: 'esm',
  },
  plugins: [
    oxcTransform(/* options */),

    // other plugins...
  ],
});

Options

[!TIP] Typescript declaration files are included in the plugin release, so you can rely on autocomplete features when providing plugin configuration

include

  • Type: FilterPattern
  • Default: /\.[mc]?[jt]sx?$/

Which files are processed by the plugin

exclude

  • Type: FilterPattern
  • Default: /node_modules/

Which files are excluded from plugin processing

resolveOptions

  • Type: ResolveOptions
  • Default: undefined

Options passed to oxc-resolver. By default the plugin will provide the following options:

  • conditionNames ['node', 'import']
  • extensions ['.ts', '.tsx', '.mjs', '.js', '.cjs', '.jsx']

[!NOTE] They can be both customized by passing your own property via resolveOptions

transformOptions

  • Type: Omit<TransformOptions, 'typescript'>;
  • Default: undefined

All options accept by oxc-transform excluding typescript property.

[!WARNING] If you need to generate declarations consider to use unplugin-isolated-decl

Meta

CONTRIBUTING

LICENSE (MIT)

Thanks

This plugin is based on @rollup/plugin-swc