Home / File/ index.json — ui Source File

index.json — ui Source File

Architecture documentation for index.json, a json file in the ui codebase.

Entity Profile

Source Code

[
  {
    "name": "accordion",
    "type": "registry:ui",
    "dependencies": [
      "@radix-ui/react-accordion"
    ],
    "files": [
      {
        "path": "ui/accordion.tsx",
        "type": "registry:ui"
      }
    ],
    "tailwind": {
      "config": {
        "theme": {
          "extend": {
            "keyframes": {
              "accordion-down": {
                "from": {
                  "height": "0"
                },
                "to": {
                  "height": "var(--radix-accordion-content-height)"
                }
              },
              "accordion-up": {
                "from": {
                  "height": "var(--radix-accordion-content-height)"
                },
                "to": {
                  "height": "0"
                }
              }
            },
            "animation": {
              "accordion-down": "accordion-down 0.2s ease-out",
              "accordion-up": "accordion-up 0.2s ease-out"
            }
          }
        }
      }
    }
  },
  {
    "name": "alert",
    "type": "registry:ui",
    "files": [
      {
        "path": "ui/alert.tsx",
        "type": "registry:ui"
      }
    ]
  },
  {
    "name": "alert-dialog",
    "type": "registry:ui",
    "dependencies": [
      "@radix-ui/react-alert-dialog"
    ],
// ... (785 more lines)

Frequently Asked Questions

What does index.json do?
index.json is a source file in the ui codebase, written in json.
Where is index.json in the architecture?
index.json is located at apps/v4/public/r/index.json (directory: apps/v4/public/r).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free