All plugins activate automatically when the relevant package is in your
package.json. No configuration needed.- Frameworks
- Bundlers
- Testing
- Linting & Formatting
- Transpilation
- CSS
- Database
- Monorepo
- CI/CD & Release
- Git Hooks
- Other
| Plugin | Enabler packages |
|---|---|
| Next.js | next |
| Nuxt | nuxt, nuxt3 |
| Remix | @remix-run/dev |
| SvelteKit | @sveltejs/kit |
| Gatsby | gatsby |
| Astro | astro |
| Angular | @angular/core |
| React Router | react-router, @react-router/dev |
| TanStack Router | @tanstack/react-router, @tanstack/start, @tanstack/react-start |
| React Native | react-native |
| Expo | expo |
| NestJS | @nestjs/core |
| Docusaurus | @docusaurus/core |
| Nitro | nitropack |
| Capacitor | @capacitor/core, @capacitor/cli |
| Sanity | sanity, @sanity/ |
| VitePress | vitepress |
| next-intl | next-intl |
| Relay | relay-runtime, react-relay, relay-compiler |
| Electron | electron, electron-builder, @electron-forge/cli, electron-vite |
| i18next | i18next, react-i18next, vue-i18n |
Plugins with deep config parsing
Plugins with deep config parsing
These plugins go beyond simple package detection. They parse your config files via Oxc’s AST parser to extract entry points, dependencies, aliases, and other settings automatically:
| Plugin | What it extracts |
|---|---|
| ESLint | Plugin imports, shared configs, custom rule paths |
| Vite | Entry points, aliases, plugin imports from vite.config.ts |
| Jest | Setup files, transform paths, module mappers from jest.config.js |
| Storybook | Story globs, addon imports from .storybook/main.ts |
| Tailwind | Content paths, plugin imports from tailwind.config.js |
| Webpack | Entry points, loader/plugin imports from webpack.config.js |
| TypeScript | Path aliases, project references from tsconfig.json |
| Babel | Plugin and preset imports from babel.config.js |
| Rollup | Entry points, plugin imports from rollup.config.js |
| Rolldown | Entry points, external deps, plugin imports from rolldown.config.ts |
| PostCSS | Plugin imports from postcss.config.js |
| Nuxt | Modules, plugins, server routes from nuxt.config.ts |
| Rsbuild | Entry points, plugin imports from rsbuild.config.ts |
| Remark | Plugin imports from .remarkrc.js |
$ fallow list --plugins
Don’t see your framework? You can add support for any internal or third-party framework with a custom plugin. No Rust code required.
See also
Custom plugins
Add support for internal frameworks with external plugin files.
fallow list
Inspect active plugins, entry points, and project metadata.