Regify is a universal CLI to build component registries that are 100% compatible with the shadcn cli.
The heart of Regify is the regify.json file. This file defines how your components are mapped, where they are stored, and their external dependencies.
{
"name": "my-ui-library",
"version": "1.0.0",
"outputDir": "./registry",
"basePath": "src/components",
"registryDependencies": {
"utils": "https://r.yourdomain.com/utils.json"
}
}