@seed-design/mcp 0.1.9-20250806055925 → 0.1.9-20250806062026

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/bin/index.mjs CHANGED
@@ -677,7 +677,7 @@ function registerPrompts(server) {
677
677
  });
678
678
  }
679
679
 
680
- var version = "0.1.9-20250806034801";
680
+ var version = "0.1.9-20250806055925";
681
681
 
682
682
  // Config loader
683
683
  async function loadConfig(configPath) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seed-design/mcp",
3
- "version": "0.1.9-20250806055925",
3
+ "version": "0.1.9-20250806062026",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/daangn/seed-design.git",
@@ -26,6 +26,7 @@
26
26
  "@seed-design/figma": "0.1.8",
27
27
  "cac": "^6.7.14",
28
28
  "cosmiconfig": "^9.0.0",
29
+ "typescript": "^5.9.2",
29
30
  "uuid": "^11.1.0",
30
31
  "ws": "^8.18.1",
31
32
  "yargs": "^18.0.0",
@@ -34,8 +35,7 @@
34
35
  "devDependencies": {
35
36
  "@types/bun": "^1.2.10",
36
37
  "@types/ws": "^8.18.1",
37
- "@types/yargs": "^17.0.33",
38
- "typescript": "^5.8.3"
38
+ "@types/yargs": "^17.0.33"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
package/src/bin/index.ts CHANGED
@@ -7,7 +7,7 @@ import { logger } from "../logger";
7
7
  import { createFigmaWebSocketClient } from "../websocket";
8
8
  import { registerEditingTools, registerTools } from "../tools";
9
9
  import { registerPrompts } from "../prompts";
10
- import { version } from "../../package.json" assert { type: "json" };
10
+ import { version } from "../../package.json" with { type: "json" };
11
11
  import type { Server, ServerWebSocket } from "bun";
12
12
  import { loadConfig, type McpConfig } from "../config";
13
13