{"id":16295696,"url":"https://github.com/hamlim/feijoa-ui","last_synced_at":"2025-09-03T13:35:36.470Z","repository":{"id":184081543,"uuid":"671268445","full_name":"hamlim/feijoa-ui","owner":"hamlim","description":"A barebones UI component recipe-kit!","archived":false,"fork":false,"pushed_at":"2025-08-31T13:44:36.000Z","size":41429,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-01T13:57:12.601Z","etag":null,"topics":["react","recipe-kit","recipes","tailwindcss"],"latest_commit_sha":null,"homepage":"https://feijoa-ui.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hamlim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-27T00:04:53.000Z","updated_at":"2024-09-02T21:40:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"780bdb6d-1009-4d34-ae6e-fe0bac3fbffc","html_url":"https://github.com/hamlim/feijoa-ui","commit_stats":null,"previous_names":["hamlim/feijoa-ui"],"tags_count":0,"template":false,"template_full_name":"hamlim/template-next-app","purl":"pkg:github/hamlim/feijoa-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamlim%2Ffeijoa-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamlim%2Ffeijoa-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamlim%2Ffeijoa-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamlim%2Ffeijoa-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hamlim","download_url":"https://codeload.github.com/hamlim/feijoa-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hamlim%2Ffeijoa-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273453062,"owners_count":25108469,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","recipe-kit","recipes","tailwindcss"],"created_at":"2024-10-10T20:19:33.148Z","updated_at":"2025-09-03T13:35:36.445Z","avatar_url":"https://github.com/hamlim.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Feijoa UI\n\nA barebones UI component recipe-kit! Like shadcn/ui++!\n\n## Usage:\n\nThe package can be installed both via a recipe-kit like flow using the custom\nCLI, or can be managed via your favorite node package manager\n(npm/yarn/pnpm/bun).\n\n### CLI:\n\nUsing the CLI, you can download the components you want to use, inlining them\ndirectly into your code base allowing you to customize them as you see fit!\n\nFirst, install the `feijoa-ui` cli:\n\n```sh\n# bun:\nbun install @feijoa-ui/cli\n# pnpm:\npnpm install @feijoa-ui/cli\n# yarn:\nyarn add @feijoa-ui/cli\n# npm\nnpm install @feijoa-ui/cli\n```\n\nThis will add the `feijoa-ui` binary, which you can interact with directly:\n\n```sh\n# To print help information\nfeijoa-ui help\n```\n\n\u003e TODO - Downloading components...\n\n### Package Manager:\n\nInstall the package:\n\n```sh\n# bun:\nbun install feijoa-ui\n# pnpm:\npnpm install feijoa-ui\n# yarn:\nyarn add feijoa-ui\n# npm\nnpm install feijoa-ui\n```\n\nWhen installing the package like a normal dependency, you'll need to also:\n\n- Install peerDependencies (see\n  [package.json#peerDependencies](./packages/feijoa-ui/package.json))\n- Configure Next\n- Configure Tailwind\n\n#### Configuring Next.js:\n\nYou'll want to include the following within your Next.js config:\n\n```js\n/** @type {import('next').NextConfig} */\nmodule.exports = {\n  experimental: {\n    optimizePackageImports: [\"feijoa-ui\"],\n  },\n  transpilePackages: [\"feijoa-ui\"],\n};\n```\n\n#### Configuring Tailwind:\n\nTo ensure styles work as expected, you'll need to configure tailwind (if you\nhaven't already, follow the\n[tailwind Next.js docs](https://tailwindcss.com/docs/guides/nextjs) to get\nstarted):\n\n```js\nlet path = require(\"path\");\n\n/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n  darkMode: [\"class\"],\n  content: [\n    \"./pages/**/*.{ts,tsx}\",\n    \"./components/**/*.{ts,tsx}\",\n    \"./app/**/*.{ts,tsx}\",\n    \"./src/**/*.{ts,tsx}\",\n    // IMPORTANT! This is needed to ensure the styles are resolved correctly\n    path.join(path.dirname(require.resolve(\"feijoa-ui\")), \"**/*.js\"),\n  ],\n  theme: {\n    container: {\n      center: true,\n      padding: \"2rem\",\n      screens: {\n        \"2xl\": \"1400px\",\n      },\n    },\n    extend: {\n      colors: {\n        border: \"hsl(var(--border))\",\n        input: \"hsl(var(--input))\",\n        ring: \"hsl(var(--ring))\",\n        background: \"hsl(var(--background))\",\n        foreground: \"hsl(var(--foreground))\",\n        primary: {\n          DEFAULT: \"hsl(var(--primary))\",\n          foreground: \"hsl(var(--primary-foreground))\",\n        },\n        secondary: {\n          DEFAULT: \"hsl(var(--secondary))\",\n          foreground: \"hsl(var(--secondary-foreground))\",\n        },\n        destructive: {\n          DEFAULT: \"hsl(var(--destructive))\",\n          foreground: \"hsl(var(--destructive-foreground))\",\n        },\n        muted: {\n          DEFAULT: \"hsl(var(--muted))\",\n          foreground: \"hsl(var(--muted-foreground))\",\n        },\n        accent: {\n          DEFAULT: \"hsl(var(--accent))\",\n          foreground: \"hsl(var(--accent-foreground))\",\n        },\n        popover: {\n          DEFAULT: \"hsl(var(--popover))\",\n          foreground: \"hsl(var(--popover-foreground))\",\n        },\n        card: {\n          DEFAULT: \"hsl(var(--card))\",\n          foreground: \"hsl(var(--card-foreground))\",\n        },\n      },\n      borderRadius: {\n        lg: \"var(--radius)\",\n        md: \"calc(var(--radius) - 2px)\",\n        sm: \"calc(var(--radius) - 4px)\",\n      },\n      keyframes: {\n        \"accordion-down\": {\n          from: { height: 0 },\n          to: { height: \"var(--radix-accordion-content-height)\" },\n        },\n        \"accordion-up\": {\n          from: { height: \"var(--radix-accordion-content-height)\" },\n          to: { height: 0 },\n        },\n      },\n      animation: {\n        \"accordion-down\": \"accordion-down 0.2s ease-out\",\n        \"accordion-up\": \"accordion-up 0.2s ease-out\",\n      },\n    },\n  },\n  plugins: [require(\"tailwindcss-animate\")],\n};\n```\n\n## Local Development:\n\n### Getting Started:\n\n```sh\nbun install\n```\n\n```sh\nbun dev\n```\n\n## Inspiration / Dependencies:\n\nThis project wouldn't be possible without the following:\n\n- [shadcn/ui](https://ui.shadcn.com/)\n  - This project is itself a thin wrapper around shadcn/ui - with a few more\n    components added in\n  - We'll try to remain as up to date as possible with the work being done\n    within shadcn/ui, but if we're missing anything that exists there feel free\n    to open an issue or a PR to address!\n- [Next.js](https://nextjs.org/)\n- [TailwindCSS](https://tailwindcss.com/)\n- [Lucide Icons](https://lucide.dev/)\n- [Bright](https://bright.codehike.org/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamlim%2Ffeijoa-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhamlim%2Ffeijoa-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhamlim%2Ffeijoa-ui/lists"}