@inkeep/agents-manage-mcp 0.39.2 → 0.39.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-manage-mcp",
3
- "version": "0.39.2",
3
+ "version": "0.39.3",
4
4
  "author": "Speakeasy",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -24,7 +24,7 @@
24
24
  "eslint": "^9.26.0",
25
25
  "find-up": "^7.0.0",
26
26
  "globals": "^16.0.0",
27
- "tsup": "^8.5.0",
27
+ "tsdown": "^0.18.0",
28
28
  "typescript": "~5.8.3",
29
29
  "typescript-eslint": "^8.31.1",
30
30
  "zod": "^3.25.7"
@@ -49,7 +49,7 @@
49
49
  "directory": "packages/agents-manage-mcp"
50
50
  },
51
51
  "scripts": {
52
- "build": "bun i && bun src/mcp-server/build.mts && tsup",
52
+ "build": "bun i && bun src/mcp-server/build.mts && tsdown",
53
53
  "check": "npm run lint",
54
54
  "lint": "eslint --cache --max-warnings=0 src",
55
55
  "format": "biome format --write src",
@@ -0,0 +1,18 @@
1
+ import { defineConfig } from 'tsdown';
2
+
3
+ export default defineConfig({
4
+ entry: ['src/index.ts'],
5
+ format: ['cjs', 'esm'],
6
+ dts: true,
7
+ clean: true,
8
+ // Bundle zod INTO the package output to avoid version conflicts
9
+ // with consumers that use Zod v4
10
+ noExternal: ['zod'],
11
+ // Keep .js/.cjs extensions (tsdown 0.18+ defaults to .mjs/.cjs)
12
+ outExtensions({ format }) {
13
+ return {
14
+ js: format === 'cjs' ? '.cjs' : '.js',
15
+ dts: format === 'cjs' ? '.d.cts' : '.d.ts',
16
+ };
17
+ },
18
+ });
package/tsup.config.ts DELETED
@@ -1,11 +0,0 @@
1
- import { defineConfig } from 'tsup';
2
-
3
- export default defineConfig({
4
- entry: ['src/index.ts'],
5
- format: ['cjs', 'esm'],
6
- dts: true,
7
- clean: true,
8
- // Bundle zod INTO the package output to avoid version conflicts
9
- // with consumers that use Zod v4
10
- noExternal: ['zod'],
11
- });