-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathregistry.json
64 lines (64 loc) · 1.79 KB
/
registry.json
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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"items": [
{
"name": "hello-world",
"type": "registry:component",
"title": "Hello World",
"description": "A simple hello world component",
"registryDependencies": ["button"],
"files": [
{
"path": "registry/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/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/complex-component/page.tsx",
"type": "registry:page",
"target": "app/pokemon/page.tsx"
},
{
"path": "registry/complex-component/components/pokemon-card.tsx",
"type": "registry:component"
},
{
"path": "registry/complex-component/components/pokemon-image.tsx",
"type": "registry:component"
},
{
"path": "registry/complex-component/lib/pokemon.ts",
"type": "registry:lib"
},
{
"path": "registry/complex-component/hooks/use-pokemon.ts",
"type": "registry:hook"
}
]
}
]
}