From af89c8676c6e2457a6fd5e855ecbdc43ec152a99 Mon Sep 17 00:00:00 2001 From: Steven Lin Date: Mon, 6 Jul 2026 12:20:38 +0800 Subject: [PATCH] fix(ts): rename npm package to @tron-walletcli/wallet-cli Publish under the scoped name @tron-walletcli/wallet-cli and update the README install command to match. Also drop the leading "./" from the bin path, which npm treats as invalid and auto-corrects on publish (matches `npm pkg fix`). The wallet-cli binary name is unchanged. --- ts/README.md | 2 +- ts/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/README.md b/ts/README.md index d6b854b3..f32a56c5 100644 --- a/ts/README.md +++ b/ts/README.md @@ -34,7 +34,7 @@ An agent-first TypeScript CLI wallet for TRON, with deterministic commands, stru Node.js 20 or later is required. ```bash -npm install -g walletcli +npm install -g @tron-walletcli/wallet-cli ``` Verify the installation: diff --git a/ts/package.json b/ts/package.json index 96f516ac..064ac244 100644 --- a/ts/package.json +++ b/ts/package.json @@ -1,10 +1,10 @@ { - "name": "walletcli", + "name": "@tron-walletcli/wallet-cli", "version": "0.1.0", "description": "Agent-first TypeScript CLI wallet for TRON — deterministic commands, JSON output, and discoverable schemas", "type": "module", "bin": { - "wallet-cli": "./dist/index.js" + "wallet-cli": "dist/index.js" }, "files": [ "dist",