minimax-status 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli/index.js +3 -2
  2. package/package.json +1 -1
package/cli/index.js CHANGED
@@ -1,10 +1,11 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { Command } = require("commander");
4
4
  const chalk = require("chalk").default;
5
5
  const ora = require("ora").default;
6
6
  const MinimaxAPI = require("./api");
7
7
  const StatusBar = require("./status");
8
+ const packageJson = require("../package.json");
8
9
 
9
10
  const program = new Command();
10
11
  const api = new MinimaxAPI();
@@ -12,7 +13,7 @@ const api = new MinimaxAPI();
12
13
  program
13
14
  .name("minimax-status")
14
15
  .description("MiniMax Claude Code 使用状态监控工具")
15
- .version("1.0.0");
16
+ .version(packageJson.version);
16
17
 
17
18
  // Auth command
18
19
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minimax-status",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "MiniMax Claude Code 使用状态监控工具",
5
5
  "bin": {
6
6
  "minimax-status": "cli/index.js",