diff --git a/package.json b/package.json new file mode 100644 index 00000000..21a1af51 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "Digikwal ERPNext", + "description": "Semantic release for erpnext with custom apps", + "repository": { + "type": "git", + "url": "https://github.com/digikwal/frappe_docker.git" + }, + "scripts": { + "test": "echo \"No tests defined\" && exit 0" + }, + "dependencies": { + "semantic-release": "^24.2.3" + }, + "release": { + "branches": ["main", "dev"], + "plugins": [ + "@semantic-release/commit-analyzer", + [ + "@semantic-release/release-notes-generator", + { + "preset": "conventionalcommits", + "presetConfig": { + "types": [ + { "type": "feat", "section": "โœจ Features", "hidden": false }, + { "type": "fix", "section": "๐Ÿž Bug Fixes", "hidden": false }, + { "type": "docs", "section": "๐Ÿ“ Documentation", "hidden": false }, + { "type": "style", "section": "๐ŸŽจ Style Changes", "hidden": false }, + { "type": "refactor", "section": "๐Ÿ”ง Refactoring", "hidden": false }, + { "type": "perf", "section": "โšก Performance", "hidden": false }, + { "type": "test", "section": "โœ… Tests", "hidden": false }, + { "type": "build", "section": "๐Ÿšข Build System", "hidden": false }, + { "type": "ci", "section": "๐Ÿš€ CI/CD", "hidden": false }, + { "type": "chore", "section": "๐Ÿงน Chores", "hidden": false } + ] + } + } + ], + "@semantic-release/github" + ] + } +}