> ## Documentation Index
> Fetch the complete documentation index at: https://growthx-chore-remove-output-wrapper.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# v0.3.0 → v0.4.0

> Upgrading Output.ai projects from v0.3.0 to v0.4.0: New package.json config section.

The dedicated `package.json` section for Output.ai settings changed from `output` to `outputai`.

Only the top level has changed.

## Migration steps

### Rename field

Replace `output` with `outputai`.

#### Before

*package.json*

```json theme={null}
{
  ...
  "output": {
    "hookFiles": [
      "./src/hooks.js"
    ]
  }
}
```

#### After

*package.json*

```json theme={null}
{
  ...
  "outputai": {
    "hookFiles": [
      "./src/hooks.js"
    ]
  }
}
```
