chore: add shadcnuikit registry config

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.
This commit is contained in:
Alexandre Possebom
2026-08-01 13:52:33 -03:00
parent ec98466633
commit a6190a9b2a
2 changed files with 10 additions and 0 deletions
+4
View File
@@ -2,3 +2,7 @@
# (npx shadcn add @ss-blocks/...). Mesmos valores do up-track.
EMAIL=
LICENSE_KEY=
# Token do shadcnuikit, usado pelo registry @shadcnuikit do components.json
# (npx shadcn add @shadcnuikit/...). Vai como Bearer no Authorization.
REGISTRY_TOKEN=
+6
View File
@@ -39,6 +39,12 @@
"email": "${EMAIL}",
"license_key": "${LICENSE_KEY}"
}
},
"@shadcnuikit": {
"url": "https://shadcnuikit.com/r/{name}.json",
"headers": {
"Authorization": "Bearer ${REGISTRY_TOKEN}"
}
}
}
}