registry.json — ui Source File
Architecture documentation for registry.json, a json file in the ui codebase.
Entity Profile
Source Code
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"registry:lib",
"registry:block",
"registry:component",
"registry:ui",
"registry:hook",
"registry:theme",
"registry:page",
"registry:file"
]
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"author": {
"type": "string"
},
"dependencies": {
"type": "array",
"items": {
"type": "string"
}
},
"devDependencies": {
"type": "array",
"items": {
"type": "string"
}
},
"registryDependencies": {
"type": "array",
"items": {
"type": "string"
}
},
"files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"content": {
"type": "string"
},
"type": {
"type": "string",
// ... (77 more lines)
Source
Frequently Asked Questions
What does registry.json do?
registry.json is a source file in the ui codebase, written in json.
Where is registry.json in the architecture?
registry.json is located at deprecated/www/public/registry.json (directory: deprecated/www/public).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free