Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@jsrepo/shadcn

Package Overview
Dependencies
Maintainers
1
Versions
57
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.

Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
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 25 Nov 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