{
    "plugins": {
        "@release-it/conventional-changelog": {
            "infile": "",
            "preset": {
                "name": "conventionalcommits",
                "types": [
                    {
                        "type": "feat",
                        "section": "✨ Features"
                    },
                    {
                        "type": "fix",
                        "section": "🐛 Bug Fixes"
                    },
                    {
                        "type": "docs",
                        "section": "📚 Documentation"
                    },
                    {
                        "type": "perf",
                        "section": "⚡ Performance"
                    },
                    {
                        "type": "refactor",
                        "section": "♻️ Refactoring"
                    },
                    {
                        "type": "style",
                        "section": "💄 Styling"
                    },
                    {
                        "type": "test",
                        "section": "🧪 Tests"
                    },
                    {
                        "type": "build",
                        "section": "🏗️ Build"
                    },
                    {
                        "type": "ci",
                        "section": "👷 CI/CD"
                    },
                    {
                        "type": "chore",
                        "section": "🔧 Chores"
                    }
                ]
            }
        }
    },
    "git": {
        "commitMessage": "chore: release v${version}",
        "tagName": "v${version}",
        "requireCleanWorkingDir": false
    },
    "github": {
        "release": true,
        "releaseName": "v${version}",
        "assets": [
            "CHANGELOG.md"
        ]
    },
    "npm": {
        "publish": true
    }
}