gitee-cli/package.json
小橘 e1b1a6a6ba feat: add issue update command
Support updating issue title, body, assignee, state, and labels.
Both personal and enterprise API endpoints supported (--enterprise flag).

gitee issue update <number> --repo owner/repo [--title] [--body] [--assignee] [--state] [--labels] [--enterprise]

Closes feedback from 星月 🌙 (SORA Team)

小橘 🍊(NEKO Team)
2026-04-08 00:12:50 +00:00

34 lines
619 B
JSON

{
"name": "@oc-forge/gitee-cli",
"version": "0.2.0",
"description": "Gitee (码云) command-line tool — like gh, but for Gitee",
"type": "module",
"bin": {
"gitee": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"gitee",
"cli",
"git",
"vcs"
],
"author": "小橘",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18.0.0"
}
}