docusaurus-plugin-mcp-server 0.10.1 → 0.10.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.
Files changed (1) hide show
  1. package/package.json +7 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docusaurus-plugin-mcp-server",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "description": "A Docusaurus plugin that exposes an MCP server endpoint for AI agents to search and retrieve documentation",
5
5
  "keywords": [
6
6
  "docusaurus",
@@ -28,15 +28,18 @@
28
28
  "exports": {
29
29
  ".": {
30
30
  "types": "./dist/index.d.ts",
31
- "import": "./dist/index.js"
31
+ "import": "./dist/index.js",
32
+ "default": "./dist/index.js"
32
33
  },
33
34
  "./adapters": {
34
35
  "types": "./dist/adapters-entry.d.ts",
35
- "import": "./dist/adapters-entry.js"
36
+ "import": "./dist/adapters-entry.js",
37
+ "default": "./dist/adapters-entry.js"
36
38
  },
37
39
  "./theme": {
38
40
  "types": "./dist/theme/index.d.ts",
39
- "import": "./dist/theme/index.js"
41
+ "import": "./dist/theme/index.js",
42
+ "default": "./dist/theme/index.js"
40
43
  }
41
44
  },
42
45
  "main": "./dist/index.js",