Registers the paid @shadcnuikit registry alongside the @ss-* ones. The API key travels as a Bearer header and is read from REGISTRY_TOKEN in .env, which is gitignored; .env.example documents the variable.
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": false,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/styles/index.css",
|
|
"baseColor": "slate",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"registries": {
|
|
"@ss-components": {
|
|
"url": "https://shadcnstudio.com/r/components/{style}/{name}.json",
|
|
"params": {
|
|
"email": "${EMAIL}",
|
|
"license_key": "${LICENSE_KEY}"
|
|
}
|
|
},
|
|
"@ss-themes": {
|
|
"url": "https://shadcnstudio.com/r/themes/{name}.json",
|
|
"params": {
|
|
"email": "${EMAIL}",
|
|
"license_key": "${LICENSE_KEY}"
|
|
}
|
|
},
|
|
"@ss-blocks": {
|
|
"url": "https://shadcnstudio.com/r/blocks/{style}/{name}.json",
|
|
"params": {
|
|
"email": "${EMAIL}",
|
|
"license_key": "${LICENSE_KEY}"
|
|
}
|
|
},
|
|
"@shadcnuikit": {
|
|
"url": "https://shadcnuikit.com/r/{name}.json",
|
|
"headers": {
|
|
"Authorization": "Bearer ${REGISTRY_TOKEN}"
|
|
}
|
|
}
|
|
}
|
|
}
|