@crewai-ts/core 0.1.13 → 0.2.0

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 (55) hide show
  1. package/dist/agent.d.ts +16 -18
  2. package/dist/auth.cjs +598 -0
  3. package/dist/auth.js +40 -0
  4. package/dist/{chunk-3PVW4JKT.js → chunk-C43UEMCX.js} +6712 -7268
  5. package/dist/chunk-CCOE6MLE.js +896 -0
  6. package/dist/chunk-HFQTF332.js +4455 -0
  7. package/dist/{chunk-BE4JYKSG.js → chunk-MM4ROIFG.js} +12 -1490
  8. package/dist/chunk-RH43TNKN.js +238 -0
  9. package/dist/chunk-S477WFUT.js +565 -0
  10. package/dist/chunk-SB7ADUQA.js +110 -0
  11. package/dist/chunk-T32G6KDW.js +40 -0
  12. package/dist/crew.d.ts +24 -26
  13. package/dist/events.cjs +7513 -0
  14. package/dist/events.js +406 -0
  15. package/dist/experimental-conversational.cjs +272 -0
  16. package/dist/experimental-conversational.js +26 -0
  17. package/dist/feature-hooks.cjs +149 -0
  18. package/dist/feature-hooks.d.ts +94 -0
  19. package/dist/feature-hooks.js +36 -0
  20. package/dist/index.cjs +33923 -64381
  21. package/dist/index.d.ts +2 -15
  22. package/dist/index.js +16720 -49562
  23. package/dist/input-provider.d.ts +3 -4
  24. package/dist/lite-agent.d.ts +4 -4
  25. package/dist/llm.cjs +7467 -0
  26. package/dist/llm.d.ts +0 -4
  27. package/dist/llm.js +225 -0
  28. package/dist/optional-yaml.d.ts +8 -0
  29. package/dist/project.d.ts +1 -1
  30. package/dist/schema-utils.cjs +968 -0
  31. package/dist/schema-utils.d.ts +1 -1
  32. package/dist/schema-utils.js +102 -0
  33. package/dist/state-provider-core.js +3 -2
  34. package/dist/task.d.ts +3 -4
  35. package/dist/tools.cjs +6872 -0
  36. package/dist/tools.d.ts +0 -60
  37. package/dist/tools.js +114 -0
  38. package/dist/types.cjs +68 -0
  39. package/dist/types.js +14 -0
  40. package/package.json +52 -111
  41. package/dist/a2a.d.ts +0 -1684
  42. package/dist/a2ui-schemas.d.ts +0 -3312
  43. package/dist/a2ui.d.ts +0 -379
  44. package/dist/flow-conversation.d.ts +0 -90
  45. package/dist/flow-definition.d.ts +0 -195
  46. package/dist/flow-persistence.d.ts +0 -107
  47. package/dist/flow-visualization.d.ts +0 -77
  48. package/dist/flow.d.ts +0 -927
  49. package/dist/knowledge.d.ts +0 -353
  50. package/dist/mcp-DS7UMYAM.js +0 -62
  51. package/dist/mcp.d.ts +0 -315
  52. package/dist/memory.d.ts +0 -915
  53. package/dist/openai-completion.d.ts +0 -327
  54. package/dist/provider-completions.d.ts +0 -596
  55. package/dist/rag.d.ts +0 -1074
package/dist/tools.d.ts CHANGED
@@ -405,66 +405,6 @@ export declare class CacheTools {
405
405
  hitCache(key: string): unknown;
406
406
  hit_cache(key: string): unknown;
407
407
  }
408
- export type MCPNativeToolOptions = {
409
- clientFactory?: () => unknown;
410
- client_factory?: () => unknown;
411
- toolName?: string;
412
- tool_name?: string;
413
- toolSchema?: Record<string, unknown>;
414
- tool_schema?: Record<string, unknown>;
415
- serverName?: string;
416
- server_name?: string;
417
- originalToolName?: string | null;
418
- original_tool_name?: string | null;
419
- };
420
- export declare class MCPNativeTool extends BaseTool {
421
- private readonly clientFactory;
422
- private readonly originalToolNameValue;
423
- private readonly serverNameValue;
424
- constructor(options: MCPNativeToolOptions);
425
- constructor(clientFactory: () => unknown, toolName: string, toolSchema: Record<string, unknown>, serverName: string, originalToolName?: string | null);
426
- get originalToolName(): string;
427
- get original_tool_name(): string;
428
- get serverName(): string;
429
- get server_name(): string;
430
- protected _run(args: Record<string, unknown>): Promise<string>;
431
- protected _arun(args: Record<string, unknown>): Promise<string>;
432
- runAsync(args?: Record<string, unknown>): Promise<string>;
433
- _run_async(args?: Record<string, unknown>): Promise<string>;
434
- }
435
- export type MCPToolWrapperOptions = {
436
- mcpServerParams?: Record<string, unknown>;
437
- mcp_server_params?: Record<string, unknown>;
438
- toolName?: string;
439
- tool_name?: string;
440
- toolSchema?: Record<string, unknown>;
441
- tool_schema?: Record<string, unknown>;
442
- serverName?: string;
443
- server_name?: string;
444
- };
445
- type MCPWrapperOperation = (args?: Record<string, unknown>) => Promise<string>;
446
- export declare class MCPToolWrapper extends BaseTool {
447
- private readonly mcpServerParamsValue;
448
- private readonly originalToolNameValue;
449
- private readonly serverNameValue;
450
- constructor(options: MCPToolWrapperOptions);
451
- constructor(mcpServerParams: Record<string, unknown>, toolName: string, toolSchema: Record<string, unknown>, serverName: string);
452
- get mcpServerParams(): Record<string, unknown>;
453
- get mcp_server_params(): Record<string, unknown>;
454
- get originalToolName(): string;
455
- get original_tool_name(): string;
456
- get serverName(): string;
457
- get server_name(): string;
458
- protected _run(args: Record<string, unknown>): Promise<string>;
459
- protected _arun(args: Record<string, unknown>): Promise<string>;
460
- runAsync(args?: Record<string, unknown>): Promise<string>;
461
- _run_async(args?: Record<string, unknown>): Promise<string>;
462
- _retry_with_exponential_backoff(operationFunc: MCPWrapperOperation, args?: Record<string, unknown>): Promise<string>;
463
- _execute_single_attempt(operationFunc: MCPWrapperOperation, args?: Record<string, unknown>): Promise<[string | null, string, boolean]>;
464
- _execute_tool_with_timeout(args?: Record<string, unknown>): Promise<string>;
465
- _execute_tool(args?: Record<string, unknown>): Promise<string>;
466
- _do_mcp_call(args?: Record<string, unknown>): Promise<string>;
467
- }
468
408
  export declare class ToolUsageError extends Error {
469
409
  constructor(message: string);
470
410
  }
package/dist/tools.js ADDED
@@ -0,0 +1,114 @@
1
+ import {
2
+ AddImageTool,
3
+ AddImageToolSchema,
4
+ AgentTools,
5
+ AskQuestionTool,
6
+ AskQuestionToolSchema,
7
+ BaseAgentTool,
8
+ BaseTool,
9
+ CacheHandler,
10
+ CacheTools,
11
+ CrewStructuredTool,
12
+ DelegateWorkTool,
13
+ DelegateWorkToolSchema,
14
+ EnvVar,
15
+ InMemoryToolCache,
16
+ InstructorToolCalling,
17
+ OPENAI_BIGGER_MODELS,
18
+ ReadFileTool,
19
+ ReadFileToolSchema,
20
+ StructuredTool,
21
+ ToolCalling,
22
+ ToolResult,
23
+ ToolUsage,
24
+ ToolUsageError,
25
+ ToolUsageLimitExceededError,
26
+ ToolValidationError,
27
+ ToolsHandler,
28
+ _ArgsSchemaPlaceholder,
29
+ _default_cache_function,
30
+ _deserialize_schema,
31
+ _is_async_callable,
32
+ _is_awaitable,
33
+ _make_tool,
34
+ _make_with_name,
35
+ _resolve_tool_dict,
36
+ _serialize_schema,
37
+ aexecuteToolAndCheckFinality,
38
+ aexecute_tool_and_check_finality,
39
+ buildToolContext,
40
+ build_schema_hint,
41
+ createFunctionTool,
42
+ createTool,
43
+ create_function_tool,
44
+ create_tool,
45
+ executeToolAndCheckFinality,
46
+ execute_tool_and_check_finality,
47
+ functionTool,
48
+ isToolCalling,
49
+ normalizeToolCalling,
50
+ normalizeToolInput,
51
+ renderToolsDescription,
52
+ sanitizeToolName,
53
+ to_langchain,
54
+ validateArgs
55
+ } from "./chunk-MM4ROIFG.js";
56
+ import "./chunk-C43UEMCX.js";
57
+ import "./chunk-LWD4QED4.js";
58
+ import "./chunk-S477WFUT.js";
59
+ import "./chunk-SB7ADUQA.js";
60
+ export {
61
+ AddImageTool,
62
+ AddImageToolSchema,
63
+ AgentTools,
64
+ AskQuestionTool,
65
+ AskQuestionToolSchema,
66
+ BaseAgentTool,
67
+ BaseTool,
68
+ CacheHandler,
69
+ CacheTools,
70
+ CrewStructuredTool,
71
+ DelegateWorkTool,
72
+ DelegateWorkToolSchema,
73
+ EnvVar,
74
+ InMemoryToolCache,
75
+ InstructorToolCalling,
76
+ OPENAI_BIGGER_MODELS,
77
+ ReadFileTool,
78
+ ReadFileToolSchema,
79
+ StructuredTool,
80
+ ToolCalling,
81
+ ToolResult,
82
+ ToolUsage,
83
+ ToolUsageError,
84
+ ToolUsageLimitExceededError,
85
+ ToolValidationError,
86
+ ToolsHandler,
87
+ _ArgsSchemaPlaceholder,
88
+ _default_cache_function,
89
+ _deserialize_schema,
90
+ _is_async_callable,
91
+ _is_awaitable,
92
+ _make_tool,
93
+ _make_with_name,
94
+ _resolve_tool_dict,
95
+ _serialize_schema,
96
+ aexecuteToolAndCheckFinality,
97
+ aexecute_tool_and_check_finality,
98
+ buildToolContext,
99
+ build_schema_hint,
100
+ createFunctionTool,
101
+ createTool,
102
+ create_function_tool,
103
+ create_tool,
104
+ executeToolAndCheckFinality,
105
+ execute_tool_and_check_finality,
106
+ functionTool,
107
+ isToolCalling,
108
+ normalizeToolCalling,
109
+ normalizeToolInput,
110
+ renderToolsDescription,
111
+ sanitizeToolName,
112
+ to_langchain,
113
+ validateArgs
114
+ };
package/dist/types.cjs ADDED
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/types.ts
21
+ var types_exports = {};
22
+ __export(types_exports, {
23
+ LLMMessage: () => LLMMessage,
24
+ OutputFormat: () => OutputFormat,
25
+ Process: () => Process,
26
+ Tool: () => Tool,
27
+ create_literals_from_strings: () => create_literals_from_strings
28
+ });
29
+ module.exports = __toCommonJS(types_exports);
30
+ var LLMMessage = class LLMMessage2 {
31
+ role;
32
+ content;
33
+ files;
34
+ cache_breakpoint;
35
+ constructor(options) {
36
+ this.role = options.role;
37
+ this.content = options.content;
38
+ if (options.files !== void 0) {
39
+ this.files = options.files;
40
+ }
41
+ if (options.cache_breakpoint !== void 0) {
42
+ this.cache_breakpoint = options.cache_breakpoint;
43
+ }
44
+ }
45
+ };
46
+ var Tool = Object;
47
+ function create_literals_from_strings(values) {
48
+ return values;
49
+ }
50
+ var Process = /* @__PURE__ */ ((Process2) => {
51
+ Process2["sequential"] = "sequential";
52
+ Process2["hierarchical"] = "hierarchical";
53
+ return Process2;
54
+ })(Process || {});
55
+ var OutputFormat = /* @__PURE__ */ ((OutputFormat2) => {
56
+ OutputFormat2["RAW"] = "raw";
57
+ OutputFormat2["JSON"] = "json";
58
+ OutputFormat2["PYDANTIC"] = "pydantic";
59
+ return OutputFormat2;
60
+ })(OutputFormat || {});
61
+ // Annotate the CommonJS export names for ESM import in node:
62
+ 0 && (module.exports = {
63
+ LLMMessage,
64
+ OutputFormat,
65
+ Process,
66
+ Tool,
67
+ create_literals_from_strings
68
+ });
package/dist/types.js ADDED
@@ -0,0 +1,14 @@
1
+ import {
2
+ LLMMessage,
3
+ OutputFormat,
4
+ Process,
5
+ Tool,
6
+ create_literals_from_strings
7
+ } from "./chunk-T32G6KDW.js";
8
+ export {
9
+ LLMMessage,
10
+ OutputFormat,
11
+ Process,
12
+ Tool,
13
+ create_literals_from_strings
14
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewai-ts/core",
3
- "version": "0.1.13",
3
+ "version": "0.2.0",
4
4
  "description": "Unofficial TypeScript port of CrewAI (not affiliated with crewAI, Inc.).",
5
5
  "private": false,
6
6
  "keywords": [
@@ -41,12 +41,6 @@
41
41
  "require": "./dist/index.cjs",
42
42
  "default": "./dist/index.js"
43
43
  },
44
- "./a2a": {
45
- "types": "./dist/index.d.ts",
46
- "import": "./dist/index.js",
47
- "require": "./dist/index.cjs",
48
- "default": "./dist/index.js"
49
- },
50
44
  "./agent": {
51
45
  "types": "./dist/index.d.ts",
52
46
  "import": "./dist/index.js",
@@ -60,10 +54,10 @@
60
54
  "default": "./dist/index.js"
61
55
  },
62
56
  "./auth": {
63
- "types": "./dist/index.d.ts",
64
- "import": "./dist/index.js",
65
- "require": "./dist/index.cjs",
66
- "default": "./dist/index.js"
57
+ "types": "./dist/auth.d.ts",
58
+ "import": "./dist/auth.js",
59
+ "require": "./dist/auth.cjs",
60
+ "default": "./dist/auth.js"
67
61
  },
68
62
  "./cli": {
69
63
  "types": "./dist/index.d.ts",
@@ -102,10 +96,10 @@
102
96
  "default": "./dist/index.js"
103
97
  },
104
98
  "./events": {
105
- "types": "./dist/index.d.ts",
106
- "import": "./dist/index.js",
107
- "require": "./dist/index.cjs",
108
- "default": "./dist/index.js"
99
+ "types": "./dist/events.d.ts",
100
+ "import": "./dist/events.js",
101
+ "require": "./dist/events.cjs",
102
+ "default": "./dist/events.js"
109
103
  },
110
104
  "./experimental": {
111
105
  "types": "./dist/index.d.ts",
@@ -113,25 +107,37 @@
113
107
  "require": "./dist/index.cjs",
114
108
  "default": "./dist/index.js"
115
109
  },
110
+ "./experimental/conversational": {
111
+ "types": "./dist/experimental-conversational.d.ts",
112
+ "import": "./dist/experimental-conversational.js",
113
+ "require": "./dist/experimental-conversational.cjs",
114
+ "default": "./dist/experimental-conversational.js"
115
+ },
116
+ "./feature-hooks": {
117
+ "types": "./dist/feature-hooks.d.ts",
118
+ "import": "./dist/feature-hooks.js",
119
+ "require": "./dist/feature-hooks.cjs",
120
+ "default": "./dist/feature-hooks.js"
121
+ },
116
122
  "./files": {
117
123
  "types": "./dist/index.d.ts",
118
124
  "import": "./dist/index.js",
119
125
  "require": "./dist/index.cjs",
120
126
  "default": "./dist/index.js"
121
127
  },
122
- "./flow": {
128
+ "./hooks": {
123
129
  "types": "./dist/index.d.ts",
124
130
  "import": "./dist/index.js",
125
131
  "require": "./dist/index.cjs",
126
132
  "default": "./dist/index.js"
127
133
  },
128
- "./hooks": {
134
+ "./lite_agent": {
129
135
  "types": "./dist/index.d.ts",
130
136
  "import": "./dist/index.js",
131
137
  "require": "./dist/index.cjs",
132
138
  "default": "./dist/index.js"
133
139
  },
134
- "./knowledge": {
140
+ "./lite_agent_output": {
135
141
  "types": "./dist/index.d.ts",
136
142
  "import": "./dist/index.js",
137
143
  "require": "./dist/index.cjs",
@@ -149,23 +155,11 @@
149
155
  "require": "./dist/index.cjs",
150
156
  "default": "./dist/index.js"
151
157
  },
152
- "./lite_agent": {
153
- "types": "./dist/index.d.ts",
154
- "import": "./dist/index.js",
155
- "require": "./dist/index.cjs",
156
- "default": "./dist/index.js"
157
- },
158
- "./lite_agent_output": {
159
- "types": "./dist/index.d.ts",
160
- "import": "./dist/index.js",
161
- "require": "./dist/index.cjs",
162
- "default": "./dist/index.js"
163
- },
164
158
  "./llm": {
165
- "types": "./dist/index.d.ts",
166
- "import": "./dist/index.js",
167
- "require": "./dist/index.cjs",
168
- "default": "./dist/index.js"
159
+ "types": "./dist/llm.d.ts",
160
+ "import": "./dist/llm.js",
161
+ "require": "./dist/llm.cjs",
162
+ "default": "./dist/llm.js"
169
163
  },
170
164
  "./llms": {
171
165
  "types": "./dist/index.d.ts",
@@ -173,17 +167,11 @@
173
167
  "require": "./dist/index.cjs",
174
168
  "default": "./dist/index.js"
175
169
  },
176
- "./mcp": {
177
- "types": "./dist/index.d.ts",
178
- "import": "./dist/index.js",
179
- "require": "./dist/index.cjs",
180
- "default": "./dist/index.js"
181
- },
182
- "./memory": {
183
- "types": "./dist/index.d.ts",
184
- "import": "./dist/index.js",
185
- "require": "./dist/index.cjs",
186
- "default": "./dist/index.js"
170
+ "./llms/hooks/transport": {
171
+ "types": "./dist/llms-hooks-transport.d.ts",
172
+ "import": "./dist/llms-hooks-transport.js",
173
+ "require": "./dist/llms-hooks-transport.cjs",
174
+ "default": "./dist/llms-hooks-transport.js"
187
175
  },
188
176
  "./mypy": {
189
177
  "types": "./dist/index.d.ts",
@@ -209,11 +197,11 @@
209
197
  "require": "./dist/index.cjs",
210
198
  "default": "./dist/index.js"
211
199
  },
212
- "./rag": {
213
- "types": "./dist/index.d.ts",
214
- "import": "./dist/index.js",
215
- "require": "./dist/index.cjs",
216
- "default": "./dist/index.js"
200
+ "./schema-utils": {
201
+ "types": "./dist/schema-utils.d.ts",
202
+ "import": "./dist/schema-utils.js",
203
+ "require": "./dist/schema-utils.cjs",
204
+ "default": "./dist/schema-utils.js"
217
205
  },
218
206
  "./security": {
219
207
  "types": "./dist/index.d.ts",
@@ -239,6 +227,12 @@
239
227
  "require": "./dist/index.cjs",
240
228
  "default": "./dist/index.js"
241
229
  },
230
+ "./state/provider/core": {
231
+ "types": "./dist/state-provider-core.d.ts",
232
+ "import": "./dist/state-provider-core.js",
233
+ "require": "./dist/state-provider-core.cjs",
234
+ "default": "./dist/state-provider-core.js"
235
+ },
242
236
  "./task": {
243
237
  "types": "./dist/index.d.ts",
244
238
  "import": "./dist/index.js",
@@ -258,16 +252,16 @@
258
252
  "default": "./dist/index.js"
259
253
  },
260
254
  "./tools": {
261
- "types": "./dist/index.d.ts",
262
- "import": "./dist/index.js",
263
- "require": "./dist/index.cjs",
264
- "default": "./dist/index.js"
255
+ "types": "./dist/tools.d.ts",
256
+ "import": "./dist/tools.js",
257
+ "require": "./dist/tools.cjs",
258
+ "default": "./dist/tools.js"
265
259
  },
266
260
  "./types": {
267
- "types": "./dist/index.d.ts",
268
- "import": "./dist/index.js",
269
- "require": "./dist/index.cjs",
270
- "default": "./dist/index.js"
261
+ "types": "./dist/types.d.ts",
262
+ "import": "./dist/types.js",
263
+ "require": "./dist/types.cjs",
264
+ "default": "./dist/types.js"
271
265
  },
272
266
  "./utilities": {
273
267
  "types": "./dist/index.d.ts",
@@ -281,24 +275,6 @@
281
275
  "require": "./dist/index.cjs",
282
276
  "default": "./dist/index.js"
283
277
  },
284
- "./llms/hooks/transport": {
285
- "types": "./dist/llms-hooks-transport.d.ts",
286
- "import": "./dist/llms-hooks-transport.js",
287
- "require": "./dist/llms-hooks-transport.cjs",
288
- "default": "./dist/llms-hooks-transport.js"
289
- },
290
- "./state/provider/core": {
291
- "types": "./dist/state-provider-core.d.ts",
292
- "import": "./dist/state-provider-core.js",
293
- "require": "./dist/state-provider-core.cjs",
294
- "default": "./dist/state-provider-core.js"
295
- },
296
- "./a2a/*": {
297
- "types": "./dist/index.d.ts",
298
- "import": "./dist/index.js",
299
- "require": "./dist/index.cjs",
300
- "default": "./dist/index.js"
301
- },
302
278
  "./agent/*": {
303
279
  "types": "./dist/index.d.ts",
304
280
  "import": "./dist/index.js",
@@ -341,54 +317,24 @@
341
317
  "require": "./dist/index.cjs",
342
318
  "default": "./dist/index.js"
343
319
  },
344
- "./flow/*": {
345
- "types": "./dist/index.d.ts",
346
- "import": "./dist/index.js",
347
- "require": "./dist/index.cjs",
348
- "default": "./dist/index.js"
349
- },
350
320
  "./hooks/*": {
351
321
  "types": "./dist/index.d.ts",
352
322
  "import": "./dist/index.js",
353
323
  "require": "./dist/index.cjs",
354
324
  "default": "./dist/index.js"
355
325
  },
356
- "./knowledge/*": {
357
- "types": "./dist/index.d.ts",
358
- "import": "./dist/index.js",
359
- "require": "./dist/index.cjs",
360
- "default": "./dist/index.js"
361
- },
362
326
  "./llms/*": {
363
327
  "types": "./dist/index.d.ts",
364
328
  "import": "./dist/index.js",
365
329
  "require": "./dist/index.cjs",
366
330
  "default": "./dist/index.js"
367
331
  },
368
- "./mcp/*": {
369
- "types": "./dist/index.d.ts",
370
- "import": "./dist/index.js",
371
- "require": "./dist/index.cjs",
372
- "default": "./dist/index.js"
373
- },
374
- "./memory/*": {
375
- "types": "./dist/index.d.ts",
376
- "import": "./dist/index.js",
377
- "require": "./dist/index.cjs",
378
- "default": "./dist/index.js"
379
- },
380
332
  "./project/*": {
381
333
  "types": "./dist/index.d.ts",
382
334
  "import": "./dist/index.js",
383
335
  "require": "./dist/index.cjs",
384
336
  "default": "./dist/index.js"
385
337
  },
386
- "./rag/*": {
387
- "types": "./dist/index.d.ts",
388
- "import": "./dist/index.js",
389
- "require": "./dist/index.cjs",
390
- "default": "./dist/index.js"
391
- },
392
338
  "./security/*": {
393
339
  "types": "./dist/index.d.ts",
394
340
  "import": "./dist/index.js",
@@ -449,11 +395,6 @@
449
395
  "test": "vitest run",
450
396
  "prepack": "npm run build"
451
397
  },
452
- "dependencies": {
453
- "@modelcontextprotocol/sdk": "^1.29.0",
454
- "pdf-parse": "^2.4.5",
455
- "yaml": "^2.9.0"
456
- },
457
398
  "sideEffects": false,
458
399
  "directories": {
459
400
  "doc": "docs",