frontmcp 0.1.8 → 0.1.9

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
@@ -299,7 +299,7 @@ const RECOMMENDED_TSCONFIG = {
299
299
  module: REQUIRED_DECORATOR_FIELDS.module,
300
300
  emitDecoratorMetadata: REQUIRED_DECORATOR_FIELDS.emitDecoratorMetadata,
301
301
  experimentalDecorators: REQUIRED_DECORATOR_FIELDS.experimentalDecorators,
302
- moduleResolution: 'NodeNext',
302
+ moduleResolution: 'node',
303
303
  strict: true,
304
304
  esModuleInterop: true,
305
305
  resolveJsonModule: true,
@@ -498,6 +498,7 @@ function upsertPackageJson(cwd, nameOverride, selfVersion) {
498
498
  devDependencies: {
499
499
  frontmcp: selfVersion, // exact CLI version used by npx
500
500
  tsx: '^4.20.6',
501
+ "@types/node": "^20.11.30",
501
502
  typescript: '^5.5.3',
502
503
  },
503
504
  };
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.1.8';
6
+ return '0.1.9';
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frontmcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "FrontMCP command line interface",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/cli.ts CHANGED
@@ -274,7 +274,7 @@ const RECOMMENDED_TSCONFIG = {
274
274
  emitDecoratorMetadata: REQUIRED_DECORATOR_FIELDS.emitDecoratorMetadata,
275
275
  experimentalDecorators: REQUIRED_DECORATOR_FIELDS.experimentalDecorators,
276
276
 
277
- moduleResolution: 'NodeNext',
277
+ moduleResolution: 'node',
278
278
  strict: true,
279
279
  esModuleInterop: true,
280
280
  resolveJsonModule: true,
@@ -470,6 +470,7 @@ async function upsertPackageJson(cwd: string, nameOverride: string | undefined,
470
470
  devDependencies: {
471
471
  frontmcp: selfVersion, // exact CLI version used by npx
472
472
  tsx: '^4.20.6',
473
+ "@types/node": "^20.11.30",
473
474
  typescript: '^5.5.3',
474
475
  },
475
476
  };
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.1.8';
4
+ return '0.1.9';
5
5
  }