mcp-from-openapi 2.1.1 → 2.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [2.1.2] - 2025-12-27
2
+
3
+ ### Changed
4
+
5
+ - Added `publish-alpha` Nx target to enable alpha publishing flow using common script.
6
+
1
7
  ## [2.1.1] - 2025-12-24
2
8
 
3
9
  ### Fixed
package/esm/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-from-openapi",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Production-ready library for converting OpenAPI specifications into MCP tool definitions",
5
5
  "author": "AgentFront <info@agentfront.dev>",
6
6
  "license": "Apache-2.0",
@@ -30,22 +30,21 @@
30
30
  "engines": {
31
31
  "node": ">=18.0.0"
32
32
  },
33
- "type": "commonjs",
34
- "main": "./dist/index.js",
35
- "module": "./dist/esm/index.mjs",
36
- "types": "./dist/index.d.ts",
33
+ "type": "module",
34
+ "main": "../index.js",
35
+ "module": "./index.mjs",
36
+ "types": "../index.d.ts",
37
37
  "sideEffects": false,
38
38
  "exports": {
39
- "./package.json": "./package.json",
39
+ "./package.json": "../package.json",
40
40
  ".": {
41
- "development": "./src/index.ts",
42
41
  "require": {
43
- "types": "./dist/index.d.ts",
44
- "default": "./dist/index.js"
42
+ "types": "../index.d.ts",
43
+ "default": "../index.js"
45
44
  },
46
45
  "import": {
47
- "types": "./dist/index.d.ts",
48
- "default": "./dist/esm/index.mjs"
46
+ "types": "../index.d.ts",
47
+ "default": "./index.mjs"
49
48
  }
50
49
  },
51
50
  "./esm": null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-from-openapi",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Production-ready library for converting OpenAPI specifications into MCP tool definitions",
5
5
  "author": "AgentFront <info@agentfront.dev>",
6
6
  "license": "Apache-2.0",