# This is the UI Library for the [FSE Marche]

Use npm to install the dependencies [Not yarn]

```bash
npm install
```

Run storybook

```bash
npm run sb
```

Use npm release to build the library and publish the package to npm:

```bash
npm run release
```

Use npm bump-patch to increments the patch version (the last number in the version, e.g., from 0.1.96 to 0.1.97), push the changes, build the package and publish it to npm:

```bash
npm run bump-patch
```

Use npm bump-minor to increments the minor version (the second number in the version, e.g., from 0.1.96 to 0.2.0), push the changes, build the package and publish it to npm.

```bash
npm run bump-minor
```

Use npm bump-major to increments the major version (the first number in the version, e.g., from 0.1.96 to 1.0.0), push the changes, build the package and publish it to npm:

```bash
npm run bump-major
```

The structure of the library is as follows:
src/
├── components/ # Reusable components
├── styles/ # Global styles
