-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.json
More file actions
94 lines (94 loc) · 2.64 KB
/
registry.json
File metadata and controls
94 lines (94 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"items": [
{
"name": "supabase-realtime-dev-tools",
"type": "registry:component",
"title": "Supabase Realtime Dev Tools",
"description": "A component for displaying Supabase Realtime dev tools",
"dependencies": [
"react",
"lucide-react",
"@supabase/supabase-js",
"@radix-ui/react-scroll-area",
"@radix-ui/react-switch",
"class-variance-authority"
],
"registryDependencies": [
"button",
"input",
"badge",
"card",
"scroll-area",
"switch",
"tooltip",
"tabs"
],
"files": [
{
"path": "registry/new-york/supabase-realtime-dev-tools/supabase-realtime-dev-tools.tsx",
"type": "registry:component"
}
]
},
{
"name": "hello-world",
"type": "registry:component",
"title": "Hello World",
"description": "A simple hello world component",
"registryDependencies": ["button"],
"files": [
{
"path": "registry/new-york/hello-world/hello-world.tsx",
"type": "registry:component"
}
]
},
{
"name": "example-form",
"type": "registry:component",
"title": "Example Form",
"description": "A contact form with Zod validation.",
"dependencies": ["zod"],
"registryDependencies": ["button", "input", "label", "textarea", "card"],
"files": [
{
"path": "registry/new-york/example-form/example-form.tsx",
"type": "registry:component"
}
]
},
{
"name": "complex-component",
"type": "registry:component",
"title": "Complex Component",
"description": "A complex component showing hooks, libs and components.",
"registryDependencies": ["card"],
"files": [
{
"path": "registry/new-york/complex-component/page.tsx",
"type": "registry:page",
"target": "app/pokemon/page.tsx"
},
{
"path": "registry/new-york/complex-component/components/pokemon-card.tsx",
"type": "registry:component"
},
{
"path": "registry/new-york/complex-component/components/pokemon-image.tsx",
"type": "registry:component"
},
{
"path": "registry/new-york/complex-component/lib/pokemon.ts",
"type": "registry:lib"
},
{
"path": "registry/new-york/complex-component/hooks/use-pokemon.ts",
"type": "registry:hook"
}
]
}
]
}