---
id: whats-include
title: What's included
---

The Multiple Select source code download includes the precompiled CSS, JavaScript, and provides both compiled and minified variations, along with documentation.

<div id="gg"></div>

More specifically, it includes the following and more:

```bash
multiple-select/
├── site/
├── src
|   ├── constants
|   ├── locale
|   ├── utils
|   ├── vue
│   ├── MultipleSelect.js
│   ├── multiple-select.css
│   ├── multiple-select.js
├── dist
│   ├── multiple-select-es.js
│   ├── multiple-select-es.min.js
│   ├── multiple-select.css
│   ├── multiple-select.js
│   ├── multiple-select.min.css
│   ├── multiple-select.min.js
└── README.md
```

The `src/`, are the source code for our CSS, JS. The `dist/` folder includes everything compiled and minified with `src/`. The `docs/` folder includes the source code for our documentation. Beyond that, any other included file provides support for packages, license information, and development.
