@nekzus/liop 2.1.0-alpha.1 → 2.1.0-alpha.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.
@@ -0,0 +1,2 @@
1
+ import {c}from'./chunk-VQUSWD4U.js';var o=c.object({name:c.string(),description:c.string().optional(),inputSchema:c.record(c.string(),c.unknown())}),i=c.object({uri:c.string(),name:c.string(),description:c.string().optional(),mimeType:c.string().optional()}),s=c.object({name:c.string(),description:c.string().optional(),arguments:c.array(c.object({name:c.string(),description:c.string().optional(),required:c.boolean().optional()})).optional()});export{o as a,i as b,s as c};//# sourceMappingURL=chunk-XOITNPU3.js.map
2
+ //# sourceMappingURL=chunk-XOITNPU3.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/types.ts"],"names":["ToolSchema","external_exports","ResourceSchema","PromptSchema"],"mappings":"oCAMO,IAAMA,CAAAA,CAAaC,EAAE,MAAA,CAAO,CAClC,KAAMA,CAAAA,CAAE,MAAA,GACR,WAAA,CAAaA,CAAAA,CAAE,QAAO,CAAE,QAAA,GACxB,WAAA,CAAaA,CAAAA,CAAE,OAAOA,CAAAA,CAAE,MAAA,GAAUA,CAAAA,CAAE,OAAA,EAAS,CAC9C,CAAC,EAIYC,CAAAA,CAAiBD,CAAAA,CAAE,OAAO,CACtC,GAAA,CAAKA,EAAE,MAAA,EAAO,CACd,KAAMA,CAAAA,CAAE,MAAA,GACR,WAAA,CAAaA,CAAAA,CAAE,QAAO,CAAE,QAAA,GACxB,QAAA,CAAUA,CAAAA,CAAE,QAAO,CAAE,QAAA,EACtB,CAAC,CAAA,CAIYE,EAAeF,CAAAA,CAAE,MAAA,CAAO,CACpC,IAAA,CAAMA,CAAAA,CAAE,QAAO,CACf,WAAA,CAAaA,EAAE,MAAA,EAAO,CAAE,UAAS,CACjC,SAAA,CAAWA,EACT,KAAA,CACAA,CAAAA,CAAE,OAAO,CACR,IAAA,CAAMA,EAAE,MAAA,EAAO,CACf,YAAaA,CAAAA,CAAE,MAAA,GAAS,QAAA,EAAS,CACjC,SAAUA,CAAAA,CAAE,OAAA,GAAU,QAAA,EACvB,CAAC,CACF,CAAA,CACC,QAAA,EACH,CAAC","file":"chunk-TYVG6TXQ.js","sourcesContent":["import { z } from \"zod\";\n\n/**\n * Base Protocol Types representing parity with Model Context Protocol\n */\n\nexport const ToolSchema = z.object({\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\tinputSchema: z.record(z.string(), z.unknown()), // Represents a JSON Schema\n});\n\nexport type Tool = z.infer<typeof ToolSchema>;\n\nexport const ResourceSchema = z.object({\n\turi: z.string(),\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\tmimeType: z.string().optional(),\n});\n\nexport type Resource = z.infer<typeof ResourceSchema>;\n\nexport const PromptSchema = z.object({\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\targuments: z\n\t\t.array(\n\t\t\tz.object({\n\t\t\t\tname: z.string(),\n\t\t\t\tdescription: z.string().optional(),\n\t\t\t\trequired: z.boolean().optional(),\n\t\t\t}),\n\t\t)\n\t\t.optional(),\n});\n\nexport type Prompt = z.infer<typeof PromptSchema>;\n\nexport interface CallToolRequest {\n\tname: string;\n\targuments?: Record<string, unknown>;\n}\n\nexport interface CallToolResult {\n\tcontent: Array<{\n\t\ttype: \"text\" | \"image\" | \"resource\";\n\t\ttext?: string;\n\t\tdata?: string;\n\t\tmimeType?: string;\n\t\tresource?: {\n\t\t\turi: string;\n\t\t\ttext?: string;\n\t\t\tblob?: string;\n\t\t};\n\t}>;\n\tisError?: boolean;\n}\n\nexport interface GetPromptRequest {\n\tname: string;\n\targuments?: Record<string, string>;\n}\n\nexport interface GetPromptResult {\n\tdescription?: string;\n\tmessages: Array<{\n\t\trole: \"user\" | \"assistant\";\n\t\tcontent:\n\t\t\t| { type: \"text\"; text: string }\n\t\t\t| { type: \"image\"; data: string; mimeType: string }\n\t\t\t| {\n\t\t\t\t\ttype: \"resource\";\n\t\t\t\t\tresource: { uri: string; text?: string; blob?: string };\n\t\t\t };\n\t}>;\n}\n\nexport interface ServerInfo {\n\tname: string;\n\tversion: string;\n\tcapabilities?: {\n\t\tprompts?: { listChanged?: boolean };\n\t\tresources?: { subscribe?: boolean; listChanged?: boolean };\n\t\ttools?: { listChanged?: boolean };\n\t\tlogging?: Record<string, unknown>;\n\t};\n}\n\nexport interface McpRequest {\n\tmethod: string;\n\tparams?: unknown;\n\tid?: string | number | null;\n\tjsonrpc?: \"2.0\";\n}\n\nexport interface McpResponse {\n\tjsonrpc: \"2.0\";\n\tid?: string | number | null;\n\tresult?: unknown;\n\terror?: {\n\t\tcode: number;\n\t\tmessage: string;\n\t\tdata?: unknown;\n\t};\n}\n\n/**\n * Re-export AuthInfo from the security module for convenience.\n * Compatible with MCP TypeScript SDK AuthInfo interface shape.\n */\nexport type { AuthInfo } from \"./security/jwt-validator.js\";\n"]}
1
+ {"version":3,"sources":["../src/types.ts"],"names":["ToolSchema","external_exports","ResourceSchema","PromptSchema"],"mappings":"oCAMO,IAAMA,CAAAA,CAAaC,EAAE,MAAA,CAAO,CAClC,KAAMA,CAAAA,CAAE,MAAA,GACR,WAAA,CAAaA,CAAAA,CAAE,QAAO,CAAE,QAAA,GACxB,WAAA,CAAaA,CAAAA,CAAE,OAAOA,CAAAA,CAAE,MAAA,GAAUA,CAAAA,CAAE,OAAA,EAAS,CAC9C,CAAC,EAIYC,CAAAA,CAAiBD,CAAAA,CAAE,OAAO,CACtC,GAAA,CAAKA,EAAE,MAAA,EAAO,CACd,KAAMA,CAAAA,CAAE,MAAA,GACR,WAAA,CAAaA,CAAAA,CAAE,QAAO,CAAE,QAAA,GACxB,QAAA,CAAUA,CAAAA,CAAE,QAAO,CAAE,QAAA,EACtB,CAAC,CAAA,CAIYE,EAAeF,CAAAA,CAAE,MAAA,CAAO,CACpC,IAAA,CAAMA,CAAAA,CAAE,QAAO,CACf,WAAA,CAAaA,EAAE,MAAA,EAAO,CAAE,UAAS,CACjC,SAAA,CAAWA,EACT,KAAA,CACAA,CAAAA,CAAE,OAAO,CACR,IAAA,CAAMA,EAAE,MAAA,EAAO,CACf,YAAaA,CAAAA,CAAE,MAAA,GAAS,QAAA,EAAS,CACjC,SAAUA,CAAAA,CAAE,OAAA,GAAU,QAAA,EACvB,CAAC,CACF,CAAA,CACC,QAAA,EACH,CAAC","file":"chunk-XOITNPU3.js","sourcesContent":["import { z } from \"zod\";\n\n/**\n * Base Protocol Types representing parity with Model Context Protocol\n */\n\nexport const ToolSchema = z.object({\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\tinputSchema: z.record(z.string(), z.unknown()), // Represents a JSON Schema\n});\n\nexport type Tool = z.infer<typeof ToolSchema>;\n\nexport const ResourceSchema = z.object({\n\turi: z.string(),\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\tmimeType: z.string().optional(),\n});\n\nexport type Resource = z.infer<typeof ResourceSchema>;\n\nexport const PromptSchema = z.object({\n\tname: z.string(),\n\tdescription: z.string().optional(),\n\targuments: z\n\t\t.array(\n\t\t\tz.object({\n\t\t\t\tname: z.string(),\n\t\t\t\tdescription: z.string().optional(),\n\t\t\t\trequired: z.boolean().optional(),\n\t\t\t}),\n\t\t)\n\t\t.optional(),\n});\n\nexport type Prompt = z.infer<typeof PromptSchema>;\n\nexport interface CallToolRequest {\n\tname: string;\n\targuments?: Record<string, unknown>;\n}\n\nexport interface CallToolResult {\n\tcontent: Array<{\n\t\ttype: \"text\" | \"image\" | \"resource\";\n\t\ttext?: string;\n\t\tdata?: string;\n\t\tmimeType?: string;\n\t\tresource?: {\n\t\t\turi: string;\n\t\t\ttext?: string;\n\t\t\tblob?: string;\n\t\t};\n\t}>;\n\tisError?: boolean;\n}\n\nexport interface GetPromptRequest {\n\tname: string;\n\targuments?: Record<string, string>;\n}\n\nexport interface GetPromptResult {\n\tdescription?: string;\n\tmessages: Array<{\n\t\trole: \"user\" | \"assistant\";\n\t\tcontent:\n\t\t\t| { type: \"text\"; text: string }\n\t\t\t| { type: \"image\"; data: string; mimeType: string }\n\t\t\t| {\n\t\t\t\t\ttype: \"resource\";\n\t\t\t\t\tresource: { uri: string; text?: string; blob?: string };\n\t\t\t };\n\t}>;\n}\n\nexport interface ServerInfo {\n\tname: string;\n\tversion: string;\n\tcapabilities?: {\n\t\tprompts?: { listChanged?: boolean };\n\t\tresources?: { subscribe?: boolean; listChanged?: boolean };\n\t\ttools?: { listChanged?: boolean };\n\t\tlogging?: Record<string, unknown>;\n\t};\n}\n\nexport interface McpRequest {\n\tmethod: string;\n\tparams?: unknown;\n\tid?: string | number | null;\n\tjsonrpc?: \"2.0\";\n}\n\nexport interface McpResponse {\n\tjsonrpc: \"2.0\";\n\tid?: string | number | null;\n\tresult?: unknown;\n\terror?: {\n\t\tcode: number;\n\t\tmessage: string;\n\t\tdata?: unknown;\n\t};\n}\n\n/**\n * Re-export AuthInfo from the security module for convenience.\n * Compatible with MCP TypeScript SDK AuthInfo interface shape.\n */\nexport type { AuthInfo } from \"./security/jwt-validator.js\";\n"]}
package/dist/gateway.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { MeshNode } from './mesh.js';
2
- import { L as LiopServer } from './index-BcuTJtQX.js';
2
+ import { L as LiopServer } from './index-DO97j6hP.js';
3
3
  import { L as LiopVerifier } from './verifier-COnid_dg.js';
4
4
  import { M as McpRequest, A as AuthInfo, b as McpResponse } from './types-DzEXgi4s.js';
5
5
  import 'zod';
@@ -278,6 +278,10 @@ interface LiopServerOptions {
278
278
  * Must match SCREAMING_SNAKE_CASE: /^[A-Z][A-Z0-9_]*$/ (e.g., "BANK", "VAULT", "HFT_ORACLE").
279
279
  */
280
280
  tokenSlug?: string;
281
+ /**
282
+ * Path to a shared JSON file for persistent Query Budget tracking across multiple server instances.
283
+ */
284
+ budgetStorePath?: string;
281
285
  }
282
286
  interface AggregationPolicy {
283
287
  /** Maximum number of object-type array elements allowed (default: 10) */
@@ -324,6 +328,10 @@ interface LogicExecutionPolicy {
324
328
  * Domain-specific sensitive keys that fall under the "sensitive" query budget tier.
325
329
  */
326
330
  sensitiveKeys?: string[];
331
+ /**
332
+ * Path to a shared JSON file for persistent Query Budget tracking across multiple server instances.
333
+ */
334
+ budgetStorePath?: string;
327
335
  }
328
336
  declare class LiopServer {
329
337
  private serverInfo;
@@ -497,6 +505,10 @@ declare class LiopServer {
497
505
  private loadRevocationList;
498
506
  revokeToken(token: string): void;
499
507
  revokeTokenHash(hash: string): void;
508
+ private getPersistentBudget;
509
+ private savePersistentBudget;
510
+ private executeWithBudgetLock;
511
+ private applyInMemoryBudget;
500
512
  }
501
513
 
502
514
  export { AUTH_DEFAULTS as A, LiopServer as L, NerScanner as N, type OAuthClientConfig as O, PII_PATTERNS as P, type ToolHandler as T, type LiopServerOptions as a, type AggregationPolicy as b, type AuthRole as c, type LiopAuthConfig as d, type LogicExecutionPolicy as e, type OutputSanitizerConfig as f, PII_PRESETS as g, type PiiRule as h, PiiScanner as i, sanitizeOutput as s };
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export { a as LiopClient } from './index-Brfvxmdt.js';
4
4
  export { LiopHybridGateway } from './gateway.js';
5
5
  export { LiopManifest, MeshNode, MeshNodeConfig } from './mesh.js';
6
6
  import * as grpc from '@grpc/grpc-js';
7
- export { A as AUTH_DEFAULTS, b as AggregationPolicy, c as AuthRole, d as LiopAuthConfig, L as LiopServer, a as LiopServerOptions, e as LogicExecutionPolicy, N as NerScanner, O as OAuthClientConfig, f as OutputSanitizerConfig, P as PII_PATTERNS, g as PII_PRESETS, h as PiiRule, i as PiiScanner, T as ToolHandler, s as sanitizeOutput } from './index-BcuTJtQX.js';
7
+ export { A as AUTH_DEFAULTS, b as AggregationPolicy, c as AuthRole, d as LiopAuthConfig, L as LiopServer, a as LiopServerOptions, e as LogicExecutionPolicy, N as NerScanner, O as OAuthClientConfig, f as OutputSanitizerConfig, P as PII_PATTERNS, g as PII_PRESETS, h as PiiRule, i as PiiScanner, T as ToolHandler, s as sanitizeOutput } from './index-DO97j6hP.js';
8
8
  import { A as AuthInfo } from './types-DzEXgi4s.js';
9
9
  export { C as CallToolRequest, a as CallToolResult, G as GetPromptRequest, c as GetPromptResult, J as JwtValidator, M as McpRequest, b as McpResponse, P as Prompt, d as PromptSchema, R as Resource, e as ResourceSchema, S as ServerInfo, T as Tool, f as ToolSchema } from './types-DzEXgi4s.js';
10
10
  import * as jose from 'jose';
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export{c as WasiSandbox,b as getDefaultEnvironment}from'./chunk-RYYRR4N5.js';export{b as LiopClient,a as LiopRpcClient}from'./chunk-T3L6OCM3.js';export{c as PromptSchema,b as ResourceSchema,a as ToolSchema}from'./chunk-TYVG6TXQ.js';export{b as LiopMcpBridge,a as LiopStreamBridge}from'./chunk-7L5ODML2.js';export{b as LiopHybridGateway,a as buildProtectedResourceMetadata}from'./chunk-GI2LSJYZ.js';export{b as AUTH_DEFAULTS,c as JwtValidator,a as LiopRpcServer,j as LiopServer,e as NerScanner,g as PII_PATTERNS,h as PII_PRESETS,i as PiiScanner,d as createOAuthServer,f as sanitizeOutput}from'./chunk-KQ5BDO2M.js';import'./chunk-2MGFSIXN.js';export{b as HeuristicTokenEstimator,e as LiopOTelBridge,a as RealTokenEstimator,f as TokenTelemetryEngine,d as createSyncTokenEstimator,c as createTokenEstimator}from'./chunk-I46YEWND.js';import'./chunk-PWCXZWSE.js';import'./chunk-ANFXJGMP.js';import'./chunk-DBXGYHKY.js';export{b as LIOP_SCOPES,a as authorizeRequest}from'./chunk-SB5XJXKV.js';import'./chunk-V5MKJT6S.js';export{a as MeshNode}from'./chunk-DQ6UW6L7.js';import'./chunk-S6RJHZV2.js';import'./chunk-4C666HHU.js';var h=(e=>(e.CapabilityViolation="CapabilityViolation",e.SandboxEscape="SandboxEscape",e.PiiLeak="PiiLeak",e.InvalidIntent="InvalidIntent",e.Throttled="Throttled",e.ZkVerificationFailed="ZkVerificationFailed",e.MeshUnavailable="MeshUnavailable",e.ConnectionFailed="ConnectionFailed",e))(h||{}),n=class extends Error{code;constructor(o,t){super(t),this.name="LiopError",this.code=o;}};var x={claude:{xmlStandard:true,jsonSchemaPreferred:false},openai:{xmlStandard:false,jsonSchemaPreferred:true},gemini:{xmlStandard:false,jsonSchemaPreferred:true}};function W(i){let o=x[i],t=`[LIOP-PROTO-V1: LOGIC-ON-ORIGIN SPECIFICATION]
1
+ export{c as WasiSandbox,b as getDefaultEnvironment}from'./chunk-RYYRR4N5.js';export{b as LiopClient,a as LiopRpcClient}from'./chunk-T3L6OCM3.js';export{c as PromptSchema,b as ResourceSchema,a as ToolSchema}from'./chunk-XOITNPU3.js';export{b as LiopMcpBridge,a as LiopStreamBridge}from'./chunk-G45SRWLR.js';export{b as LiopHybridGateway,a as buildProtectedResourceMetadata}from'./chunk-GI2LSJYZ.js';export{b as AUTH_DEFAULTS,c as JwtValidator,a as LiopRpcServer,j as LiopServer,e as NerScanner,g as PII_PATTERNS,h as PII_PRESETS,i as PiiScanner,d as createOAuthServer,f as sanitizeOutput}from'./chunk-QNFD36B7.js';import'./chunk-VQUSWD4U.js';export{b as HeuristicTokenEstimator,e as LiopOTelBridge,a as RealTokenEstimator,f as TokenTelemetryEngine,d as createSyncTokenEstimator,c as createTokenEstimator}from'./chunk-I46YEWND.js';import'./chunk-PWCXZWSE.js';import'./chunk-ANFXJGMP.js';import'./chunk-DBXGYHKY.js';export{b as LIOP_SCOPES,a as authorizeRequest}from'./chunk-SB5XJXKV.js';import'./chunk-V5MKJT6S.js';export{a as MeshNode}from'./chunk-DQ6UW6L7.js';import'./chunk-S6RJHZV2.js';import'./chunk-4C666HHU.js';var h=(e=>(e.CapabilityViolation="CapabilityViolation",e.SandboxEscape="SandboxEscape",e.PiiLeak="PiiLeak",e.InvalidIntent="InvalidIntent",e.Throttled="Throttled",e.ZkVerificationFailed="ZkVerificationFailed",e.MeshUnavailable="MeshUnavailable",e.ConnectionFailed="ConnectionFailed",e))(h||{}),n=class extends Error{code;constructor(o,t){super(t),this.name="LiopError",this.code=o;}};var x={claude:{xmlStandard:true,jsonSchemaPreferred:false},openai:{xmlStandard:false,jsonSchemaPreferred:true},gemini:{xmlStandard:false,jsonSchemaPreferred:true}};function W(i){let o=x[i],t=`[LIOP-PROTO-V1: LOGIC-ON-ORIGIN SPECIFICATION]
2
2
  You are interacting with a Logic-Injection-on-Origin Protocol (LIOP) Mesh Network.
3
3
  Unlike standard MCP where you pull context to evaluate it remotely, in LIOP you WRITE code that executes on the data's origin.
4
4
 
package/dist/server.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { b as AggregationPolicy, L as LiopServer, a as LiopServerOptions, e as LogicExecutionPolicy, N as NerScanner, f as OutputSanitizerConfig, P as PII_PATTERNS, g as PII_PRESETS, h as PiiRule, i as PiiScanner, T as ToolHandler, s as sanitizeOutput } from './index-BcuTJtQX.js';
1
+ export { b as AggregationPolicy, L as LiopServer, a as LiopServerOptions, e as LogicExecutionPolicy, N as NerScanner, f as OutputSanitizerConfig, P as PII_PATTERNS, g as PII_PRESETS, h as PiiRule, i as PiiScanner, T as ToolHandler, s as sanitizeOutput } from './index-DO97j6hP.js';
2
2
  import 'zod';
3
3
  import './mesh.js';
4
4
  import './types-DzEXgi4s.js';
package/dist/server.js CHANGED
@@ -1,2 +1,2 @@
1
- export{j as LiopServer,e as NerScanner,g as PII_PATTERNS,h as PII_PRESETS,i as PiiScanner,f as sanitizeOutput}from'./chunk-KQ5BDO2M.js';import'./chunk-2MGFSIXN.js';import'./chunk-SB5XJXKV.js';import'./chunk-V5MKJT6S.js';import'./chunk-DQ6UW6L7.js';import'./chunk-S6RJHZV2.js';import'./chunk-4C666HHU.js';//# sourceMappingURL=server.js.map
1
+ export{j as LiopServer,e as NerScanner,g as PII_PATTERNS,h as PII_PRESETS,i as PiiScanner,f as sanitizeOutput}from'./chunk-QNFD36B7.js';import'./chunk-VQUSWD4U.js';import'./chunk-SB5XJXKV.js';import'./chunk-V5MKJT6S.js';import'./chunk-DQ6UW6L7.js';import'./chunk-S6RJHZV2.js';import'./chunk-4C666HHU.js';//# sourceMappingURL=server.js.map
2
2
  //# sourceMappingURL=server.js.map
package/dist/types.js CHANGED
@@ -1,2 +1,2 @@
1
- export{c as PromptSchema,b as ResourceSchema,a as ToolSchema}from'./chunk-TYVG6TXQ.js';import'./chunk-2MGFSIXN.js';import'./chunk-4C666HHU.js';//# sourceMappingURL=types.js.map
1
+ export{c as PromptSchema,b as ResourceSchema,a as ToolSchema}from'./chunk-XOITNPU3.js';import'./chunk-VQUSWD4U.js';import'./chunk-4C666HHU.js';//# sourceMappingURL=types.js.map
2
2
  //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nekzus/liop",
3
- "version": "2.1.0-alpha.1",
3
+ "version": "2.1.0-alpha.3",
4
4
  "description": "Official SDK for Logic-Injection-on-Origin Protocol (LIOP). Deploy Logic-on-Origin with WebAssembly at gRPC speed and bidirectional MCP compatibility.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -79,54 +79,54 @@
79
79
  "node": ">=20.0"
80
80
  },
81
81
  "devDependencies": {
82
- "@biomejs/biome": "^2.4.4",
83
- "@opentelemetry/api": "^1.9.1",
84
- "@opentelemetry/sdk-metrics": "^2.7.0",
85
- "@types/node": "^25.3.1",
86
- "@types/oidc-provider": "^9.5.0",
87
- "@vitest/coverage-v8": "^4.0.18",
88
- "acorn": "^8.16.0",
89
- "acorn-walk": "^8.3.5",
90
- "tsup": "^8.5.1",
91
- "tsx": "^4.21.0",
92
- "typescript": "^5.9.3",
93
- "vitest": "^4.0.18",
94
- "zod": "^3.23.11",
95
- "zod-to-json-schema": "^3.24.1"
82
+ "@biomejs/biome": "2.4.8",
83
+ "@opentelemetry/api": "1.9.1",
84
+ "@opentelemetry/sdk-metrics": "2.7.0",
85
+ "@types/node": "25.3.1",
86
+ "@types/oidc-provider": "9.5.0",
87
+ "@vitest/coverage-v8": "4.1.8",
88
+ "acorn": "8.16.0",
89
+ "acorn-walk": "8.3.5",
90
+ "tsup": "8.5.1",
91
+ "tsx": "4.21.0",
92
+ "typescript": "5.9.3",
93
+ "vitest": "4.1.8",
94
+ "zod": "3.25.76",
95
+ "zod-to-json-schema": "3.24.1"
96
96
  },
97
97
  "dependencies": {
98
- "@chainsafe/libp2p-noise": "^17.0.0",
99
- "@chainsafe/libp2p-yamux": "^8.0.1",
100
- "@grpc/grpc-js": "^1.14.3",
101
- "@grpc/proto-loader": "^0.8.0",
102
- "@hono/node-server": "^1.19.11",
103
- "@libp2p/bootstrap": "^12.0.22",
104
- "@libp2p/crypto": "^5.1.18",
105
- "@libp2p/identify": "^4.1.6",
106
- "@libp2p/kad-dht": "^16.3.0",
107
- "@libp2p/peer-id": "^6.0.9",
108
- "@libp2p/ping": "^3.1.5",
109
- "@libp2p/tcp": "^11.0.20",
110
- "@libp2p/websockets": "^10.1.13",
111
- "@multiformats/multiaddr": "^13.0.1",
112
- "hono": "^4.12.5",
113
- "it-pipe": "^3.0.1",
114
- "jose": "^6.2.3",
115
- "libp2p": "^3.3.1",
116
- "mlkem": "^2.7.0",
117
- "multiformats": "^13.4.2",
118
- "oidc-provider": "^9.8.3",
119
- "piscina": "^5.1.4",
120
- "uint8arrays": "^3.1.1"
98
+ "@chainsafe/libp2p-noise": "17.0.0",
99
+ "@chainsafe/libp2p-yamux": "8.0.1",
100
+ "@grpc/grpc-js": "1.14.4",
101
+ "@grpc/proto-loader": "0.8.1",
102
+ "@hono/node-server": "1.19.11",
103
+ "@libp2p/bootstrap": "12.0.24",
104
+ "@libp2p/crypto": "5.1.18",
105
+ "@libp2p/identify": "4.1.6",
106
+ "@libp2p/kad-dht": "16.3.1",
107
+ "@libp2p/peer-id": "6.0.9",
108
+ "@libp2p/ping": "3.1.5",
109
+ "@libp2p/tcp": "11.0.20",
110
+ "@libp2p/websockets": "10.1.13",
111
+ "@multiformats/multiaddr": "13.0.1",
112
+ "hono": "4.12.23",
113
+ "it-pipe": "3.0.1",
114
+ "jose": "6.2.3",
115
+ "libp2p": "3.3.3",
116
+ "mlkem": "2.7.0",
117
+ "multiformats": "13.4.2",
118
+ "oidc-provider": "9.8.4",
119
+ "piscina": "5.1.4",
120
+ "uint8arrays": "3.1.1"
121
121
  },
122
122
  "optionalDependencies": {
123
- "@modelcontextprotocol/sdk": "^1.28.0",
123
+ "@modelcontextprotocol/sdk": "1.28.0",
124
124
  "compromise": "14.15.0",
125
- "gpt-tokenizer": "^3.4.0"
125
+ "gpt-tokenizer": "3.4.0"
126
126
  },
127
127
  "peerDependencies": {
128
- "@modelcontextprotocol/sdk": "^1.28.0",
129
- "@opentelemetry/api": "^1.9.1"
128
+ "@modelcontextprotocol/sdk": "1.28.0",
129
+ "@opentelemetry/api": "1.9.1"
130
130
  },
131
131
  "peerDependenciesMeta": {
132
132
  "@modelcontextprotocol/sdk": {
@@ -138,7 +138,7 @@
138
138
  },
139
139
  "overrides": {
140
140
  "content-type": "1.0.5",
141
- "protobufjs": "^7.5.8",
141
+ "protobufjs": "7.5.8",
142
142
  "type-is": "2.0.1"
143
143
  },
144
144
  "scripts": {