···11-<img width="700" alt="open-graph" src="https://github.com/user-attachments/assets/912cf6b4-16f6-4a9e-a9cf-1add9d271f76" />
22-31# 🦊 fox ui
4253> **This is a public alpha release. Expect bugs and breaking changes.**
···63616462<Button onclick={() => alert('clicked')}>Click me</Button>
6563```
6464+6565+## Development
6666+6767+If you want to contribute to the project, please open an issue first describing the feature you want to add.
6868+6969+Clone the repo, install dependencies and run the dev server
7070+7171+```bash
7272+git clone https://github.com/flo-bit/ui-kit.git
7373+cd ui-kit
7474+npm install
7575+npm run dev
7676+```
7777+7878+The ui-kit library is located in `src/lib`, the documentation is in `src/docs`.
+1-1
package.json
···11{
22 "name": "fuchs",
33- "version": "0.0.26",
33+ "version": "0.0.27",
44 "type": "module",
55 "description": "Beautiful UI components built with Tailwind 4 and Svelte 5",
66 "homepage": "https://flo-bit.dev/ui-kit",
+11-1
src/lib/cli.ts
···11#!/usr/bin/env node
2233+/**
44+ * TODO:
55+ *
66+ * - add exports to lib/fuchs/index.ts
77+ * - add dependent components to each component
88+ * - add option to also add dependent components
99+ * - choose between importing dependent components from fuchs or from $lib/fuchs
1010+ */
1111+312import fs from 'node:fs';
413import path from 'node:path';
514import { fileURLToPath } from 'node:url';
···1120import { Command } from 'commander';
12211322// @ts-expect-error - this works when used as a package (cause it will be moved to dist/cli.js)
1414-import { version } from '../package.json' with { type: 'json' };
2323+import pkg from '../package.json' with { type: 'json' };
2424+const version = pkg.version;
1525// in dev hardcode the version instead
1626// const version = '0.0.25';
1727