Files
stack/packages/cli-tools/package.json
Jason Woltje 635fd7af73
Some checks failed
ci/woodpecker/push/api Pipeline failed
ci/woodpecker/push/web Pipeline failed
ci/woodpecker/push/orchestrator Pipeline failed
fix: enforce alpha versioning (0.0.x), delete erroneous 0.1.x releases
Deleted v0.1.0, v0.1.1, v0.1.3 tags and Gitea releases — project is
alpha and should never have crossed 0.1.0. All package.json files
synced to 0.0.20. Added version-bump.sh script that hard-rejects any
version >= 0.1.0. Added versioning hard gate to AGENTS.md so agents
cannot repeat the mistake.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 19:21:36 -06:00

48 lines
1.5 KiB
JSON

{
"name": "@mosaic/cli-tools",
"version": "0.0.20",
"description": "CLI tools for Mosaic Stack orchestration - git operations for Gitea/GitHub",
"private": true,
"bin": {
"mosaic-ci-pipeline-logs": "./bin/ci-pipeline-logs.sh",
"mosaic-ci-pipeline-status": "./bin/ci-pipeline-status.sh",
"mosaic-ci-pipeline-wait": "./bin/ci-pipeline-wait.sh",
"mosaic-detect-platform": "./bin/detect-platform.sh",
"mosaic-issue-assign": "./bin/issue-assign.sh",
"mosaic-issue-close": "./bin/issue-close.sh",
"mosaic-issue-comment": "./bin/issue-comment.sh",
"mosaic-issue-create": "./bin/issue-create.sh",
"mosaic-issue-edit": "./bin/issue-edit.sh",
"mosaic-issue-list": "./bin/issue-list.sh",
"mosaic-issue-reopen": "./bin/issue-reopen.sh",
"mosaic-issue-view": "./bin/issue-view.sh",
"mosaic-milestone-close": "./bin/milestone-close.sh",
"mosaic-milestone-create": "./bin/milestone-create.sh",
"mosaic-milestone-list": "./bin/milestone-list.sh",
"mosaic-pr-close": "./bin/pr-close.sh",
"mosaic-pr-create": "./bin/pr-create.sh",
"mosaic-pr-list": "./bin/pr-list.sh",
"mosaic-pr-merge": "./bin/pr-merge.sh",
"mosaic-pr-review": "./bin/pr-review.sh",
"mosaic-pr-view": "./bin/pr-view.sh"
},
"scripts": {
"lint": "shellcheck bin/*.sh || true",
"test": "echo 'No tests yet'"
},
"keywords": [
"cli",
"git",
"gitea",
"github",
"orchestration"
],
"engines": {
"node": ">=24.0.0"
},
"os": [
"linux",
"darwin"
]
}