@triptease/design-system-mcp 0.0.3 → 0.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @triptease/design-system-mcp
2
2
 
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Correct package.json bin
8
+
9
+ ## 0.0.4
10
+
11
+ ### Patch Changes
12
+
13
+ - enable publishing to NPM
14
+
3
15
  ## 0.0.3
4
16
 
5
17
  ### Patch Changes
package/dist/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
- "private": true,
3
2
  "name": "@triptease/design-system-mcp",
4
- "version": "0.0.3",
3
+ "version": "0.0.5",
5
4
  "description": "MCP server for Triptease design system documentation",
6
5
  "type": "module",
7
- "main": "dist/index.js",
8
- "bin": "./dist/index.js",
6
+ "main": "dist/src/index.js",
7
+ "bin": "./dist/src/index.js",
9
8
  "scripts": {
10
9
  "build": "rm -rf dist && tsc && tsc-alias",
11
10
  "dev": "tsc --watch",
12
- "start": "node dist/index.js",
11
+ "start": "node dist/src/index.js",
13
12
  "test": "vitest run",
14
13
  "test:watch": "vitest"
15
14
  },
@@ -37,5 +36,8 @@
37
36
  "typescript": "^5.7.2",
38
37
  "vite-tsconfig-paths": "^6.0.5",
39
38
  "vitest": "^4.0.18"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
40
42
  }
41
43
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@triptease/design-system-mcp",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "MCP server for Triptease design system documentation",
5
5
  "type": "module",
6
- "main": "dist/index.js",
7
- "bin": "./dist/index.js",
6
+ "main": "dist/src/index.js",
7
+ "bin": "./dist/src/index.js",
8
8
  "scripts": {
9
9
  "build": "rm -rf dist && tsc && tsc-alias",
10
10
  "dev": "tsc --watch",
11
- "start": "node dist/index.js",
11
+ "start": "node dist/src/index.js",
12
12
  "test": "vitest run",
13
13
  "test:watch": "vitest"
14
14
  },