frontmcp 0.2.0 → 0.2.1

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
@@ -491,8 +491,8 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
491
491
  npm: '>=10',
492
492
  },
493
493
  dependencies: {
494
- '@frontmcp/sdk': '^0.2.0',
495
- '@frontmcp/core': '^0.2.0',
494
+ '@frontmcp/sdk': '^0.2.1',
495
+ '@frontmcp/core': '^0.2.1',
496
496
  zod: '^3.23.8',
497
497
  'reflect-metadata': '^0.2.2',
498
498
  },
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.0';
6
+ return '0.2.1';
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontmcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
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.0",
16
- "@frontmcp/core": "^0.2.0",
17
- "@frontmcp/plugins": "^0.2.0",
18
- "@frontmcp/adapters": "^0.2.0",
15
+ "@frontmcp/sdk": "^0.2.1",
16
+ "@frontmcp/core": "^0.2.1",
17
+ "@frontmcp/plugins": "^0.2.1",
18
+ "@frontmcp/adapters": "^0.2.1",
19
19
  "tsx": "^4.16.0",
20
20
  "typescript": "^5.5.3"
21
21
  },
package/src/cli.ts CHANGED
@@ -463,8 +463,8 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
463
463
  npm: '>=10',
464
464
  },
465
465
  dependencies: {
466
- '@frontmcp/sdk': '^0.2.0',
467
- '@frontmcp/core': '^0.2.0',
466
+ '@frontmcp/sdk': '^0.2.1',
467
+ '@frontmcp/core': '^0.2.1',
468
468
  zod: '^3.23.8',
469
469
  'reflect-metadata': '^0.2.2',
470
470
  },
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.0';
4
+ return '0.2.1';
5
5
  }