🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@jsrepo/shadcn

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsrepo/shadcn

A package to help you distribute your jsrepo registry as a shadcn registry.

latest
Source
npmnpm
Version
0.0.9
Version published
Weekly downloads
946
27.49%
Maintainers
1
Weekly downloads
 
Created
Source

@jsrepo/shadcn

npm version npm downloads

A package to help you distribute your jsrepo registry as a shadcn registry.

Usage

Install the package:

pnpm install @jsrepo/shadcn -D

Use the output to output a shadcn registry:

import { defineConfig } from "jsrepo";
import { output } from "@jsrepo/shadcn/output";

export default defineConfig({
	registry: {
        // ...
		outputs: [output({ dir: "./public/r" })],
	},
});

If you want to ensure compatibility with the shadcn registry while losing access to some of the features of the jsrepo registry you can use the defineShadcnRegistry function. This can also be useful for incremental adoption as it closely matches the shadcn registry schema.

import { defineShadcnRegistry, output } from "@jsrepo/shadcn";

export default defineConfig({
	registry: defineShadcnRegistry({
		// ...
        // make sure you still include the output
        outputs: [output({ dir: "./public/r" })],
	}),
});

Keywords

jsrepo

FAQs

Package last updated on 04 Dec 2025

Did you know?

Socket

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.

Install

Related posts