@bigbrain-work/mcp-connect 1.3.2 → 1.3.3

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/package.json +1 -1
  2. package/src/constants.js +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbrain-work/mcp-connect",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "石榴 AI 官方 CLI:登录、配置 Agent、检查 MCP 状态并桥接远程工具。",
5
5
  "type": "module",
6
6
  "bin": {
package/src/constants.js CHANGED
@@ -1,5 +1,10 @@
1
+ import { createRequire } from "node:module";
2
+
3
+ const require = createRequire(import.meta.url);
4
+ const packageMetadata = require("../package.json");
5
+
1
6
  export const PACKAGE_NAME = "@bigbrain-work/mcp-connect";
2
- export const PACKAGE_VERSION = "1.3.1";
7
+ export const PACKAGE_VERSION = packageMetadata.version;
3
8
  export const SERVER_NAME = "shiliu_mcp";
4
9
  export const MCP_URL = "https://api.bigbrain.work/shiliu/mcp";
5
10
  export const AUTH_URL = "https://api.bigbrain.work/shiliu/auth/device";