frontmcp 0.2.4 → 0.2.5

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
@@ -495,8 +495,8 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
495
495
  npm: '>=10',
496
496
  },
497
497
  dependencies: {
498
- '@frontmcp/sdk': '^0.2.3',
499
- '@frontmcp/core': '^0.2.3',
498
+ '@frontmcp/sdk': '^0.2.5',
499
+ '@frontmcp/core': '^0.2.5',
500
500
  zod: '^3.23.8',
501
501
  'reflect-metadata': '^0.2.2',
502
502
  },
@@ -518,7 +518,7 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
518
518
  merged.type = existing.type || base.type;
519
519
  merged.scripts = Object.assign(Object.assign(Object.assign({}, base.scripts), (existing.scripts || {})), { dev: (_b = (_a = existing.scripts) === null || _a === void 0 ? void 0 : _a.dev) !== null && _b !== void 0 ? _b : base.scripts.dev, build: (_d = (_c = existing.scripts) === null || _c === void 0 ? void 0 : _c.build) !== null && _d !== void 0 ? _d : base.scripts.build, inspect: (_f = (_e = existing.scripts) === null || _e === void 0 ? void 0 : _e.inspect) !== null && _f !== void 0 ? _f : base.scripts.inspect, doctor: (_h = (_g = existing.scripts) === null || _g === void 0 ? void 0 : _g.doctor) !== null && _h !== void 0 ? _h : base.scripts.doctor });
520
520
  merged.engines = Object.assign(Object.assign({}, (existing.engines || {})), { node: ((_j = existing.engines) === null || _j === void 0 ? void 0 : _j.node) || base.engines.node, npm: ((_k = existing.engines) === null || _k === void 0 ? void 0 : _k.npm) || base.engines.npm });
521
- merged.dependencies = Object.assign(Object.assign(Object.assign({}, base.dependencies), (existing.dependencies || {})), { zod: '^3.23.8', 'reflect-metadata': '^0.2.3' });
521
+ merged.dependencies = Object.assign(Object.assign(Object.assign({}, base.dependencies), (existing.dependencies || {})), { zod: '^3.23.8', 'reflect-metadata': '^0.2.2' });
522
522
  merged.devDependencies = Object.assign(Object.assign(Object.assign({}, base.devDependencies), (existing.devDependencies || {})), { frontmcp: selfVersion, tsx: '^4.20.6', typescript: '^5.5.3' });
523
523
  yield writeJSON(pkgPath, merged);
524
524
  console.log(c('green', '✅ Updated package.json (ensured exact frontmcp and pinned versions)'));
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.4';
6
+ return '0.2.5';
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontmcp",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "FrontMCP command line interface",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -12,10 +12,10 @@
12
12
  "prepare": "npm run build"
13
13
  },
14
14
  "dependencies": {
15
- "@frontmcp/sdk": "^0.2.3",
16
- "@frontmcp/core": "^0.2.3",
17
- "@frontmcp/plugins": "^0.2.3",
18
- "@frontmcp/adapters": "^0.2.3",
15
+ "@frontmcp/sdk": "^0.2.5",
16
+ "@frontmcp/core": "^0.2.5",
17
+ "@frontmcp/plugins": "^0.2.5",
18
+ "@frontmcp/adapters": "^0.2.5",
19
19
  "tsx": "^4.16.0",
20
20
  "typescript": "^5.5.3"
21
21
  },
package/src/cli.ts CHANGED
@@ -467,8 +467,8 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
467
467
  npm: '>=10',
468
468
  },
469
469
  dependencies: {
470
- '@frontmcp/sdk': '^0.2.3',
471
- '@frontmcp/core': '^0.2.3',
470
+ '@frontmcp/sdk': '^0.2.5',
471
+ '@frontmcp/core': '^0.2.5',
472
472
  zod: '^3.23.8',
473
473
  'reflect-metadata': '^0.2.2',
474
474
  },
@@ -511,7 +511,7 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
511
511
  ...base.dependencies,
512
512
  ...(existing.dependencies || {}),
513
513
  zod: '^3.23.8',
514
- 'reflect-metadata': '^0.2.3',
514
+ 'reflect-metadata': '^0.2.2',
515
515
  };
516
516
 
517
517
  merged.devDependencies = {
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.4';
4
+ return '0.2.5';
5
5
  }