@chen-rmag/core-infra 1.0.0 → 1.0.2

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/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import 'server-only';
2
1
  export * from './types';
3
2
  export type { MCPTool, MCPConfig } from './mcp/mcp-client';
4
3
  export { MCPClient } from './mcp/mcp-client';
package/dist/index.js CHANGED
@@ -15,7 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.normalizeDirectoryName = exports.validateDirectoryPath = exports.validateDirectoryName = exports.StorageService = exports.convertToZodSchema = exports.createModel = exports.FileMCPManager = exports.PlaywrightMCPManager = exports.MCPManager = exports.AbstractGroupedMCPManager = exports.MCPClient = void 0;
18
- require("server-only");
19
18
  // Types
20
19
  __exportStar(require("./types"), exports);
21
20
  var mcp_client_1 = require("./mcp/mcp-client");
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@chen-rmag/core-infra",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Core infrastructure for AI testing framework",
5
- "main": "src/index.ts",
6
- "types": "src/index.ts",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "build": "tsc",
9
9
  "build:watch": "tsc --watch",
package/src/index.ts CHANGED
@@ -1,5 +1,3 @@
1
- import 'server-only';
2
-
3
1
  // Types
4
2
  export * from './types';
5
3