The claude-code target listed a hardcoded HANZO_MODELS set (glm-5.2, deepseek-v4-flash, deepseek-v4-pro, zen5-max — all verified routable) but dropped the user's actual selection if it wasn't among them. Merge creds.model in and dedupe so the picker never omits the chosen default, while keeping the short curated list (the live catalog carries 60+ ids). Also add the missing ClaudeSettings.model type and drop the redundant 'ultra' effort alias (== max). v1.0.7
78 lines
1.6 KiB
JSON
78 lines
1.6 KiB
JSON
{
|
|
"name": "@hanzo/helper",
|
|
"version": "1.0.7",
|
|
"description": "Hanzo CLI helper for API access, cloud services, MCP, and plugins",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"hanzo": "dist/cli.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./cli": "./dist/cli.js",
|
|
"./kms-cli": "./dist/kms-cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsx src/cli.ts",
|
|
"start": "node dist/cli.js",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "pnpm run clean && pnpm run build",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"keywords": [
|
|
"hanzo",
|
|
"cli",
|
|
"mcp",
|
|
"ai",
|
|
"cloud",
|
|
"platform"
|
|
],
|
|
"author": "Hanzo AI",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hanzoai/helper.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hanzoai/helper/issues"
|
|
},
|
|
"homepage": "https://hanzo.ai",
|
|
"packageManager": "pnpm@10.15.0",
|
|
"dependencies": {
|
|
"chalk": "^5.4.1",
|
|
"cli-table3": "^0.6.5",
|
|
"commander": "^13.1.0",
|
|
"inquirer": "^12.0.0",
|
|
"ora": "^8.2.0",
|
|
"smol-toml": "^1.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.18.0",
|
|
"@types/inquirer": "^9.0.8",
|
|
"@types/node": "^22.10.5",
|
|
"eslint": "^9.18.0",
|
|
"globals": "^16.0.0",
|
|
"tsup": "^8.3.5",
|
|
"tsx": "^4.19.4",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.20.0"
|
|
}
|
|
}
|