
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@evoo/plugin-shadcn
Advanced tools
The Shadcn plugin for the Evoo CLI is a powerful tool designed to streamline the integration of [Shadcn UI](https://ui.shadcn.com/) components into your projects. It automates the process of adding and installing components, making it easier to manage you
The Shadcn plugin for the Evoo CLI is a powerful tool designed to streamline the integration of Shadcn UI components into your projects. It automates the process of adding and installing components, making it easier to manage your design system.
when property on registryDependencies jobs to install components only when specific conditions are met.sharedContext to specify components that are a core part of a scaffold.There are two primary ways to specify which Shadcn components to install within a scaffold file.
sharedContext.registryDependenciesThis method is ideal for components that are a static, unconditional part of a scaffold recipe. The plugin will automatically detect and process any components listed in the sharedContext.registryDependencies array.
Example:
{
"plugins": ["shadcn"],
"sharedContext": {
"registryDependencies": ["button", "card"]
},
"jobs": []
}
When a user runs a scaffold with this configuration, the button and card components will be installed as a core part of the process.
registryDependencies JobThis method is used for components that are an optional, conditional part of a scaffold. It allows you to use a when clause, typically based on user input, to control whether the components are installed.
| Property | Type | Required | Description |
|---|---|---|---|
type | "registryDependencies" | ✔️ | Specifies the job type. |
registryDependencies | string[] or string | ✔️ | The name of the component(s) to install. |
when | string | A conditional expression to control whether the components are installed. |
Example:
{
"plugins": ["shadcn"],
"jobs": [
{
"type": "question",
"id": "#use-dialog",
"questionType": "confirm",
"question": "Do you need a dialog component for this feature?"
},
{
"type": "registryDependencies",
"when": "#use-dialog == true",
"registryDependencies": ["dialog"]
}
]
}
In this example, the dialog component will only be installed if the user answers "yes" to the prompt for this specific scaffold.
Before using the Shadcn plugin, you must have components.json present in your project's root directory. If this file is missing, the plugin will display an error message prompting you to run npx shadcn-ui@latest init to initialize your project.
FAQs
The Shadcn plugin for the Evoo CLI is a powerful tool designed to streamline the integration of [Shadcn UI](https://ui.shadcn.com/) components into your projects. It automates the process of adding and installing components, making it easier to manage you
We found that @evoo/plugin-shadcn demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.