@lglab/compose-ui-mcp 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +6 -6
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lglab/compose-ui-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server exposing compose-ui library documentation to AI tools",
5
5
  "author": "LGLab",
6
6
  "license": "MIT",
@@ -20,13 +20,13 @@
20
20
  ],
21
21
  "type": "module",
22
22
  "bin": {
23
- "compose-ui-mcp": "./dist/index.mjs"
23
+ "compose-ui-mcp": "./dist/index.js"
24
24
  },
25
- "main": "./dist/index.mjs",
25
+ "main": "./dist/index.js",
26
26
  "types": "./dist/index.d.ts",
27
27
  "exports": {
28
28
  ".": {
29
- "import": "./dist/index.mjs",
29
+ "import": "./dist/index.js",
30
30
  "types": "./dist/index.d.ts"
31
31
  }
32
32
  },
@@ -48,7 +48,7 @@
48
48
  "prebuild": "pnpm copy:llms",
49
49
  "build": "tsdown",
50
50
  "dev": "tsdown --watch",
51
- "start": "node dist/index.mjs",
52
- "inspect": "npx @modelcontextprotocol/inspector node dist/index.mjs"
51
+ "start": "node dist/index.js",
52
+ "inspect": "npx @modelcontextprotocol/inspector node dist/index.js"
53
53
  }
54
54
  }