41 lines
654 B
Text
41 lines
654 B
Text
import { Meta } from '@storybook/addon-docs/blocks'
|
|
|
|
<Meta title="Get Started/Installation" />
|
|
|
|
# Installation
|
|
|
|
`@nychthemeron/library` is published to a private npm registry hosted on
|
|
Forgejo. Configure your package manager for the `@nychthemeron` scope, then
|
|
install the package.
|
|
|
|
## Configure the registry
|
|
|
|
Add the following to your project's `.npmrc`:
|
|
|
|
```
|
|
@nychthemeron:registry=https://git.mcpeakdev.com/api/packages/mcpeakdev/npm/
|
|
```
|
|
|
|
## npm
|
|
|
|
```bash
|
|
npm install @nychthemeron/library
|
|
```
|
|
|
|
## pnpm
|
|
|
|
```bash
|
|
pnpm add @nychthemeron/library
|
|
```
|
|
|
|
## yarn
|
|
|
|
```bash
|
|
yarn add @nychthemeron/library
|
|
```
|
|
|
|
## bun
|
|
|
|
```bash
|
|
bun add @nychthemeron/library
|
|
```
|