@vizejs/musea-mcp-server 0.45.0 → 0.47.0

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/cli.mjs +0 -0
  2. package/package.json +8 -8
package/dist/cli.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizejs/musea-mcp-server",
3
- "version": "0.45.0",
3
+ "version": "0.47.0",
4
4
  "description": "MCP server for building Vue.js design systems - component analysis, documentation, variant generation, and design tokens",
5
5
  "keywords": [
6
6
  "ai",
@@ -19,18 +19,18 @@
19
19
  "directory": "npm/musea-mcp-server"
20
20
  },
21
21
  "bin": {
22
- "musea-mcp": "./dist/cli.js"
22
+ "musea-mcp": "./dist/cli.mjs"
23
23
  },
24
24
  "files": [
25
25
  "dist"
26
26
  ],
27
27
  "type": "module",
28
- "main": "./dist/index.js",
29
- "types": "./dist/index.d.ts",
28
+ "main": "./dist/index.mjs",
29
+ "types": "./dist/index.d.mts",
30
30
  "exports": {
31
31
  ".": {
32
- "import": "./dist/index.js",
33
- "types": "./dist/index.d.ts"
32
+ "import": "./dist/index.mjs",
33
+ "types": "./dist/index.d.mts"
34
34
  }
35
35
  },
36
36
  "publishConfig": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@modelcontextprotocol/sdk": "^0.5.0",
41
- "@vizejs/native": "0.45.0"
41
+ "@vizejs/native": "0.47.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^22.14.0",
@@ -48,7 +48,7 @@
48
48
  "scripts": {
49
49
  "build": "vp pack",
50
50
  "dev": "vp pack --watch",
51
- "start": "node dist/cli.js",
51
+ "start": "node dist/cli.mjs",
52
52
  "check": "vp check src vite.config.ts",
53
53
  "check:fix": "vp check --fix src vite.config.ts",
54
54
  "fmt": "vp fmt --write src vite.config.ts"