Skip to Content
Working with MisoConfiguration

Configuring Miso

You can edit miso.json directly to change it’s settings:

Package Manager

Set or update your project’s package manager:

>miso.json
packageManager: "bun"
bun

Sets “package manager” to “bun”

pnpm

Sets “package manager” to “pnpm”

yarn

Sets “package manager” to “yarn”

npm

Sets “package manager” to “npm”

Package Manager

Set or update your project’s package manager:

>miso.json
project-name: "my-cool-react-app"
string

Set’s the name of your project. To be honest, I don’t know why. I think I had a reason at first, but it’s already in package.json so this will probably be deprecated at some point.

Package Manager

Set or update your project’s package manager:

>miso.json
packageManager: "bun"
bun

Sets “package manager” to “bun”

pnpm

Sets “package manager” to “pnpm”

yarn

Sets “package manager” to “yarn”

npm

Sets “package manager” to “npm”

Scripts

Sets the path to the folder you want miso to use when you run custom scripts:

>miso.json
scripts: "./scripts"
string

This path is relative to the location of your miso.json file. Learn more about Scripting in Miso

Last updated on