pswui/packages/react/public/registry.json
p-sw 647e5c311d refactor(react): update registry.json structure
The structure of registry.json within the React package has been reorganized. Paths for base, components, and lib have been adjusted and a new field "paths" has been introduced. Additionally, the lib entry has been changed to an array.
2024-06-11 13:02:42 +09:00

23 lines
608 B
JSON

{
"base": "https://raw.githubusercontent.com/pswui/ui/main/packages/react/componeonts/{componentName}",
"paths": {
"components": "/main/packages/react/components/{componentName}",
"lib": "/main/packages/react/lib/shared@{version}.tsx"
},
"lib": [
"1.0.0"
],
"components": {
"button": "Button.tsx",
"checkbox": "Checkbox.tsx",
"dialog": "Dialog.tsx",
"drawer": "Drawer.tsx",
"input": "Input.tsx",
"label": "Label.tsx",
"popover": "Popover.tsx",
"switch": "Switch.tsx",
"tabs": "Tabs.tsx",
"toast": "Toast.tsx",
"tooltip": "Tooltip.tsx"
}
}