frontmcp 0.2.3 → 0.2.4

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.
package/dist/cli.js CHANGED
@@ -498,7 +498,7 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
498
498
  '@frontmcp/sdk': '^0.2.3',
499
499
  '@frontmcp/core': '^0.2.3',
500
500
  zod: '^3.23.8',
501
- 'reflect-metadata': '^0.2.3',
501
+ 'reflect-metadata': '^0.2.2',
502
502
  },
503
503
  devDependencies: {
504
504
  frontmcp: selfVersion, // exact CLI version used by npx
package/dist/version.js CHANGED
@@ -3,5 +3,5 @@
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.getSelfVersion = getSelfVersion;
5
5
  function getSelfVersion() {
6
- return '0.2.3';
6
+ return '0.2.4';
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontmcp",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "FrontMCP command line interface",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/cli.ts CHANGED
@@ -470,7 +470,7 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
470
470
  '@frontmcp/sdk': '^0.2.3',
471
471
  '@frontmcp/core': '^0.2.3',
472
472
  zod: '^3.23.8',
473
- 'reflect-metadata': '^0.2.3',
473
+ 'reflect-metadata': '^0.2.2',
474
474
  },
475
475
  devDependencies: {
476
476
  frontmcp: selfVersion, // exact CLI version used by npx
package/src/version.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /* ------------------------ Self-version detection -------------------------- */
2
2
 
3
3
  export function getSelfVersion(): string {
4
- return '0.2.3';
4
+ return '0.2.4';
5
5
  }