# SeaDN Javascript SDK

## Getting Started

### Installation

**npm**

```sh
npm install @opensea/seadn
```

**yarn**

```sh
yarn install @opensea/seadn
```

**pnpm**

```sh
pnpm add @opensea/seadn
```

### Usage

```js
import { optimize } from "@opensea/seadn";

const resized = optimize(image, { height: 100, width: 100 });
```

## Publishing

```sh
pnpm build
npm publish --access public
```
