skillhub/skillhub-cli/package.json
chenbaowang acea441625 feat(cli): enhance inspect/install commands and reorganize help
- Add --details option to inspect for version history and tags
- Normalize version input (strip 'v' prefix) in install command
- Skip version selection when --skill-version or --tag is specified
- Reorganize help: merge Discover & Info sections
- Move SkillVersionItem/VersionsResponse types to schema/routes.ts
- Remove versions command registration from CLI (file retained for now)
- Fix error handling to return after setting exit code
- Update tests to reflect command changes
2026-04-21 19:40:02 +08:00

33 lines
776 B
JSON

{
"name": "motovis-skillhub",
"version": "1.2.3",
"type": "module",
"description": "SkillHub CLI - 企业级 Agent Skill 管理工具,支持命名空间",
"bin": {
"skillhub": "dist/cli.mjs"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"chalk": "^5.3.0",
"commander": "^14.0.3",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"semver": "^7.7.4",
"undici": "^7.24.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.5.8",
"@types/unzipper": "^0.10.11",
"typescript": "^5.6.0",
"unbuild": "^3.0.0",
"vitest": "^3.0.0"
}
}