4a42b947bc
Add complete CI/CD pipeline for automated Astrolabe app releases: - GitHub Actions workflow for build, sign, and publish - Makefile for app store package creation - Version synchronization between info.xml and package.json - CHANGELOG.md with v0.1.0 release notes feat: configure commitizen monorepo with independent versioning Enable independent versioning for three components using scope-based commits: - MCP Server (feat(mcp) or unscoped): v* tags, updates pyproject.toml + Chart.yaml:appVersion - Helm Chart (feat(helm)): nextcloud-mcp-server-* tags, updates Chart.yaml:version - Astrolabe App (feat(astrolabe)): astrolabe-v* tags, updates info.xml + package.json Changes: - Add .cz.toml configs for Astrolabe and Helm chart - Update root pyproject.toml with scope filtering and tag ignores - Create bump helper scripts (bump-mcp.sh, bump-helm.sh, bump-astrolabe.sh) - Add CONTRIBUTING.md with version management documentation - Create component-specific changelogs - Configure appVersion/version separation for Helm chart This allows each component to release independently while maintaining proper version tracking and changelog generation.
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "astrolabe",
|
|
"version": "0.1.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"engines": {
|
|
"node": "^22.0.0",
|
|
"npm": "^10.5.0"
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite --mode development build",
|
|
"watch": "vite --mode development build --watch",
|
|
"lint": "eslint src",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css"
|
|
},
|
|
"type": "module",
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^2.5.1",
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
"@nextcloud/router": "^3.0.1",
|
|
"@nextcloud/vue": "^8.29.2",
|
|
"markdown-it": "^14.1.0",
|
|
"plotly.js-dist-min": "^2.35.3",
|
|
"pdfjs-dist": "^4.0.379",
|
|
"vue": "^2.7.16",
|
|
"vue-material-design-icons": "^5.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/eslint-config": "^8.4.2",
|
|
"@nextcloud/stylelint-config": "^3.1.0",
|
|
"@nextcloud/vite-config": "^1.5.2",
|
|
"terser": "^5.44.1",
|
|
"vite": "^7.1.3"
|
|
}
|
|
}
|