@triptease/design-system-mcp 1.1.4 → 1.1.5

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 +4 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -23302,7 +23302,7 @@ var StdioServerTransport = class {
23302
23302
  // package.json
23303
23303
  var package_default = {
23304
23304
  name: "@triptease/design-system-mcp",
23305
- version: "1.1.4",
23305
+ version: "1.1.5",
23306
23306
  description: "MCP server for Triptease design system documentation",
23307
23307
  type: "module",
23308
23308
  main: "dist/index.js",
@@ -24805,9 +24805,7 @@ var tabs_default = {
24805
24805
  "When there are only one or two sections (consider headings or sections instead)",
24806
24806
  "When the content in each tab is very long (consider separate pages or an accordion)"
24807
24807
  ],
24808
- accessibility: [
24809
- "Keyboard navigation is built in: Arrow keys move between tabs, Home/End jump to first/last tab"
24810
- ]
24808
+ accessibility: ["Keyboard navigation is built in: Arrow keys move between tabs, Home/End jump to first/last tab"]
24811
24809
  },
24812
24810
  installationOptions: {
24813
24811
  npm: [{ name: "@triptease/tt-tabs", includesTypes: true, optional: false }],
@@ -28292,8 +28290,8 @@ server.registerResource(
28292
28290
  async function main() {
28293
28291
  const transport = new StdioServerTransport();
28294
28292
  await server.connect(transport);
28295
- console.info(`[${package_default.name}]: Server started`);
28296
- console.info(`[${package_default.name}]: Current version: ${package_default.version}`);
28293
+ process.stderr.write(JSON.stringify({ message: "Design System MCP Server is running" }));
28294
+ process.stderr.write(JSON.stringify({ message: `Current version: ${package_default.version}` }));
28297
28295
  }
28298
28296
  main().catch((error2) => {
28299
28297
  const errorMessage = error2 instanceof Error ? error2.message : String(error2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triptease/design-system-mcp",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "MCP server for Triptease design system documentation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",