> ## Documentation Index
> Fetch the complete documentation index at: https://docs.velure.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Installing a Private npm Package: @robojuice/velure-ui

Follow these steps to install the private npm package `@robojuice/velure-ui` for your organization:

***

## 1. Ensure You Have Access to the Organization's Scope

Make sure your npm user has access to the `@robojuice` scope. Your organization admin should add you as a collaborator if you aren't already a member.

***

## 2. Authenticate with npm

Log in to npm with your organization's account credentials:

```bash theme={null}
npm login
```

This will prompt you for:

* Your npm username
* Your password
* Your email address

***

## 3. Install the Package

Now, install the package in your project:

```bash theme={null}
npm install @robojuice/velure-ui
```

***

## 4. Verify Installation

Once installed, check that the package appears in your `node_modules` folder and `package.json` under dependencies:

```json theme={null}
{
  "dependencies": {
    "@robojuice/velure-ui": "^1.0.0"
  }
}
```

<Warning>You might need to use the version `^0` while the repo is in beta.</Warning>

***

## Troubleshooting

* **403 Forbidden**: Ensure your npm token has the correct permissions and the package exists under your organization.
* **Package Not Found**: Verify the package name and scope are correctly typed.
* **Auth Issues**: Re-login using `npm login`.

***

Let me know if you encounter any issues!
