trpc-to-mcp 1.1.0 → 1.1.2

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
  # trpc-to-mcp
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e8f84b7: fix tsup not building dist
8
+
9
+ ## 1.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 7629f0d: Fix tsup.config.ts and dist output
14
+
3
15
  ## 1.1.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "trpc-to-mcp",
3
3
  "license": "MIT",
4
- "version": "1.1.0",
4
+ "version": "1.1.2",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
8
+ "description": "tRPC to MCP adapter",
9
+ "keywords": [
10
+ "trpc",
11
+ "mcp",
12
+ "modelcontextprotocol",
13
+ "vercel"
14
+ ],
8
15
  "exports": {
9
16
  ".": {
10
17
  "import": {
@@ -64,7 +71,8 @@
64
71
  "@modelcontextprotocol/sdk": "^1.17.2"
65
72
  },
66
73
  "scripts": {
67
- "build": "tsup --config tsup.config.ts",
74
+ "build": "tsup",
75
+ "dev": "tsup --watch",
68
76
  "release": "pnpm run build && changeset publish",
69
77
  "format": "prettier --write \"**/*.{ts,tsx,css,md}\"",
70
78
  "lint": "tsc"
package/tsup.config.ts CHANGED
@@ -9,4 +9,8 @@ export default defineConfig({
9
9
  ],
10
10
  format: ["esm", "cjs"],
11
11
  dts: true,
12
+ splitting: true,
13
+ sourcemap: true,
14
+ clean: true,
15
+ treeshake: true,
12
16
  });