@paybond/kit 0.11.10 → 0.12.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 (128) hide show
  1. package/README.md +2 -2
  2. package/completion-presets/catalog.json +374 -3
  3. package/completion-presets/catalog.sha256 +1 -1
  4. package/dist/agent/facade.js +13 -0
  5. package/dist/agent/guarded-agent.d.ts +1 -1
  6. package/dist/agent/guarded-agent.js +19 -0
  7. package/dist/agent/index.d.ts +2 -1
  8. package/dist/agent/index.js +1 -0
  9. package/dist/agent/instrument.d.ts +6 -0
  10. package/dist/agent/instrument.js +6 -0
  11. package/dist/agent/interceptor.d.ts +9 -0
  12. package/dist/agent/interceptor.js +177 -1
  13. package/dist/agent/receipt-client.d.ts +49 -0
  14. package/dist/agent/receipt-client.js +45 -0
  15. package/dist/agent/registry.js +1 -0
  16. package/dist/agent/run.d.ts +2 -0
  17. package/dist/agent/run.js +52 -0
  18. package/dist/agent/types.d.ts +70 -0
  19. package/dist/agent-receipt-external-attestations.d.ts +29 -0
  20. package/dist/agent-receipt-external-attestations.js +124 -0
  21. package/dist/agent-receipt.d.ts +134 -0
  22. package/dist/agent-receipt.js +580 -0
  23. package/dist/agent-recognition.d.ts +25 -0
  24. package/dist/agent-recognition.js +36 -0
  25. package/dist/audit/exports.d.ts +72 -0
  26. package/dist/audit/exports.js +185 -0
  27. package/dist/audit/index.d.ts +3 -0
  28. package/dist/audit/index.js +3 -0
  29. package/dist/audit/verify.d.ts +8 -0
  30. package/dist/audit/verify.js +113 -0
  31. package/dist/audit/wire.d.ts +54 -0
  32. package/dist/audit/wire.js +80 -0
  33. package/dist/cli/agent/demo-loaders.d.ts +2 -0
  34. package/dist/cli/agent/demo-loaders.js +24 -0
  35. package/dist/cli/agent/production-evidence.d.ts +11 -0
  36. package/dist/cli/agent/production-evidence.js +17 -0
  37. package/dist/cli/audit-export.d.ts +2 -7
  38. package/dist/cli/audit-export.js +2 -120
  39. package/dist/cli/command-spec.js +43 -10
  40. package/dist/cli/commands/agent.d.ts +3 -0
  41. package/dist/cli/commands/agent.js +143 -1
  42. package/dist/cli/commands/discovery.js +39 -36
  43. package/dist/cli/commands/workflows.js +116 -18
  44. package/dist/cli/help.d.ts +1 -1
  45. package/dist/cli/help.js +12 -8
  46. package/dist/cli/intents-harbor-mutation.d.ts +18 -0
  47. package/dist/cli/intents-harbor-mutation.js +33 -0
  48. package/dist/cli/paybond.d.ts +9 -0
  49. package/dist/cli/paybond.js +23 -0
  50. package/dist/cli/redact.js +3 -0
  51. package/dist/cloudflare-agents/config.d.ts +24 -0
  52. package/dist/cloudflare-agents/config.js +23 -0
  53. package/dist/cloudflare-agents/index.d.ts +3 -0
  54. package/dist/cloudflare-agents/index.js +3 -0
  55. package/dist/cloudflare-agents/peer.d.ts +9 -0
  56. package/dist/cloudflare-agents/peer.js +20 -0
  57. package/dist/cloudflare-agents/sandbox-demo.d.ts +36 -0
  58. package/dist/cloudflare-agents/sandbox-demo.js +89 -0
  59. package/dist/completion-catalog-digest.d.ts +1 -1
  60. package/dist/completion-catalog-digest.js +1 -1
  61. package/dist/completion-init.js +8 -3
  62. package/dist/dev/offline-gateway.d.ts +2 -1
  63. package/dist/dev/offline-gateway.js +34 -3
  64. package/dist/dev/x402-fund-mock.d.ts +28 -0
  65. package/dist/dev/x402-fund-mock.js +124 -0
  66. package/dist/index.d.ts +125 -9
  67. package/dist/index.js +264 -17
  68. package/dist/init.js +113 -2
  69. package/dist/mastra/config.d.ts +30 -0
  70. package/dist/mastra/config.js +58 -0
  71. package/dist/mastra/index.d.ts +2 -0
  72. package/dist/mastra/index.js +2 -0
  73. package/dist/mastra/peer.d.ts +11 -0
  74. package/dist/mastra/peer.js +24 -0
  75. package/dist/mastra/sandbox-demo.d.ts +36 -0
  76. package/dist/mastra/sandbox-demo.js +87 -0
  77. package/dist/mcp/index.d.ts +1 -0
  78. package/dist/mcp/index.js +1 -0
  79. package/dist/mcp/sandbox-demo.d.ts +38 -0
  80. package/dist/mcp/sandbox-demo.js +112 -0
  81. package/dist/mcp-receipt-resource.d.ts +10 -0
  82. package/dist/mcp-receipt-resource.js +32 -0
  83. package/dist/mcp-server.d.ts +6 -0
  84. package/dist/mcp-server.js +124 -1
  85. package/dist/mpp-commercial.d.ts +19 -0
  86. package/dist/mpp-commercial.js +34 -0
  87. package/dist/mpp-funding.d.ts +71 -0
  88. package/dist/mpp-funding.js +192 -0
  89. package/dist/payment-transport.d.ts +30 -0
  90. package/dist/payment-transport.js +56 -0
  91. package/dist/policy/init.js +2 -0
  92. package/dist/policy/intent-spec.js +2 -0
  93. package/dist/principal-intent.d.ts +1 -1
  94. package/dist/principal-intent.js +4 -1
  95. package/dist/project-init.js +8 -0
  96. package/dist/template-init.d.ts +2 -2
  97. package/dist/template-init.js +6 -2
  98. package/dist/x402-funding.d.ts +52 -0
  99. package/dist/x402-funding.js +124 -0
  100. package/package.json +20 -2
  101. package/templates/manifest.json +28 -9
  102. package/templates/openai-shopping-agent/package-lock.json +16 -8
  103. package/templates/openai-shopping-agent/package.json +1 -1
  104. package/templates/paybond-aws-operator/package-lock.json +13 -5
  105. package/templates/paybond-aws-operator/package.json +1 -1
  106. package/templates/paybond-claude-agents-demo/package-lock.json +16 -8
  107. package/templates/paybond-claude-agents-demo/package.json +1 -1
  108. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  109. package/templates/paybond-mastra-travel-agent/.env.example +3 -0
  110. package/templates/paybond-mastra-travel-agent/.github/workflows/smoke.yml +20 -0
  111. package/templates/paybond-mastra-travel-agent/LICENSE +201 -0
  112. package/templates/paybond-mastra-travel-agent/README.md +29 -0
  113. package/templates/paybond-mastra-travel-agent/package-lock.json +3377 -0
  114. package/templates/paybond-mastra-travel-agent/package.json +22 -0
  115. package/templates/paybond-mastra-travel-agent/paybond.policy.yaml +22 -0
  116. package/templates/paybond-mastra-travel-agent/src/index.ts +22 -0
  117. package/templates/paybond-mastra-travel-agent/src/paybond.config.ts +51 -0
  118. package/templates/paybond-mastra-travel-agent/tsconfig.json +13 -0
  119. package/templates/paybond-mcp-coding-agent/package-lock.json +13 -5
  120. package/templates/paybond-mcp-coding-agent/package.json +1 -1
  121. package/templates/paybond-openai-agents-demo/package-lock.json +16 -8
  122. package/templates/paybond-openai-agents-demo/package.json +1 -1
  123. package/templates/paybond-procurement-agent/package-lock.json +13 -5
  124. package/templates/paybond-procurement-agent/package.json +1 -1
  125. package/templates/paybond-travel-agent/package-lock.json +16 -8
  126. package/templates/paybond-travel-agent/package.json +1 -1
  127. package/templates/paybond-vercel-shopping-agent/package-lock.json +13 -5
  128. package/templates/paybond-vercel-shopping-agent/package.json +1 -1
@@ -0,0 +1,3377 @@
1
+ {
2
+ "name": "paybond-mastra-travel-agent",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "paybond-mastra-travel-agent",
8
+ "dependencies": {
9
+ "@mastra/core": "^1.49.0",
10
+ "@paybond/kit": "^0.12.0",
11
+ "zod": "^4.2.0"
12
+ },
13
+ "devDependencies": {
14
+ "@types/node": "^22.10.1",
15
+ "typescript": "^5.7.2"
16
+ },
17
+ "engines": {
18
+ "node": ">=22"
19
+ }
20
+ },
21
+ "node_modules/@a2a-js/sdk": {
22
+ "version": "0.3.13",
23
+ "resolved": "https://registry.npmjs.org/@a2a-js/sdk/-/sdk-0.3.13.tgz",
24
+ "integrity": "sha512-BZr0f9JVNQs3GKOM9xINWCh6OKIJWZFPyqqVqTym5mxO2Eemc6I/0zL7zWnljHzGdaf5aZQyQN5xa6PSH62q+A==",
25
+ "license": "Apache-2.0",
26
+ "dependencies": {
27
+ "uuid": "^11.1.0"
28
+ },
29
+ "engines": {
30
+ "node": ">=18"
31
+ },
32
+ "peerDependencies": {
33
+ "@bufbuild/protobuf": "^2.10.2",
34
+ "@grpc/grpc-js": "^1.11.0",
35
+ "express": "^4.21.2 || ^5.1.0"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "@bufbuild/protobuf": {
39
+ "optional": true
40
+ },
41
+ "@grpc/grpc-js": {
42
+ "optional": true
43
+ },
44
+ "express": {
45
+ "optional": true
46
+ }
47
+ }
48
+ },
49
+ "node_modules/@ai-sdk/provider": {
50
+ "version": "2.0.3",
51
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.3.tgz",
52
+ "integrity": "sha512-h88OPkavHTiN9tMn2l5awAznGB0lXzjcLhgR1/rvjB2zlLprsNxbM2tt6OJsHUxduLC3klq0/eqaSf6fX5XVww==",
53
+ "license": "Apache-2.0",
54
+ "dependencies": {
55
+ "json-schema": "^0.4.0"
56
+ },
57
+ "engines": {
58
+ "node": ">=18"
59
+ }
60
+ },
61
+ "node_modules/@ai-sdk/provider-utils": {
62
+ "version": "2.2.8",
63
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-2.2.8.tgz",
64
+ "integrity": "sha512-fqhG+4sCVv8x7nFzYnFo19ryhAa3w096Kmc3hWxMQfW/TubPOmt3A6tYZhl4mUfQWWQMsuSkLrtjlWuXBVSGQA==",
65
+ "license": "Apache-2.0",
66
+ "dependencies": {
67
+ "@ai-sdk/provider": "1.1.3",
68
+ "nanoid": "^3.3.8",
69
+ "secure-json-parse": "^2.7.0"
70
+ },
71
+ "engines": {
72
+ "node": ">=18"
73
+ },
74
+ "peerDependencies": {
75
+ "zod": "^3.23.8"
76
+ }
77
+ },
78
+ "node_modules/@ai-sdk/provider-utils-v5": {
79
+ "name": "@ai-sdk/provider-utils",
80
+ "version": "3.0.25",
81
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.25.tgz",
82
+ "integrity": "sha512-CvsRu+32Y8a167s+lrIBtsybvgTHp8j9y+6BeTvLeoW3Q+okw/b4CnNUFOLIXsRaKHQKAH+IHNJPYWywfpw0LA==",
83
+ "license": "Apache-2.0",
84
+ "dependencies": {
85
+ "@ai-sdk/provider": "2.0.3",
86
+ "@standard-schema/spec": "^1.0.0",
87
+ "eventsource-parser": "^3.0.6"
88
+ },
89
+ "engines": {
90
+ "node": ">=18"
91
+ },
92
+ "peerDependencies": {
93
+ "zod": "^3.25.76 || ^4.1.8"
94
+ }
95
+ },
96
+ "node_modules/@ai-sdk/provider-utils-v6": {
97
+ "name": "@ai-sdk/provider-utils",
98
+ "version": "4.0.27",
99
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-4.0.27.tgz",
100
+ "integrity": "sha512-ubkAJ+xODouwtmN1tYlvTPphH1hPOBfZaEQe8U7skGvFAnIRs9PPpsq57bC2+Ky/MB4yzhd6YOsxTAx9sGpazw==",
101
+ "license": "Apache-2.0",
102
+ "dependencies": {
103
+ "@ai-sdk/provider": "3.0.10",
104
+ "@standard-schema/spec": "^1.1.0",
105
+ "eventsource-parser": "^3.0.8"
106
+ },
107
+ "engines": {
108
+ "node": ">=18"
109
+ },
110
+ "peerDependencies": {
111
+ "zod": "^3.25.76 || ^4.1.8"
112
+ }
113
+ },
114
+ "node_modules/@ai-sdk/provider-utils-v6/node_modules/@ai-sdk/provider": {
115
+ "version": "3.0.10",
116
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-3.0.10.tgz",
117
+ "integrity": "sha512-Q3BZ27qfpYqnCYGvE3vt+Qi6LGOF9R5Nmzn+9JoM1lCRsD9mYaIhfJLkSunN48nfGXJ6n+XNV0J/XVpqGQl7Dw==",
118
+ "license": "Apache-2.0",
119
+ "dependencies": {
120
+ "json-schema": "^0.4.0"
121
+ },
122
+ "engines": {
123
+ "node": ">=18"
124
+ }
125
+ },
126
+ "node_modules/@ai-sdk/provider-utils-v7": {
127
+ "name": "@ai-sdk/provider-utils",
128
+ "version": "5.0.0",
129
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-5.0.0.tgz",
130
+ "integrity": "sha512-zj66M02jc6ASYwIgWZowsooDUwaVngeNZQ3H10GwcPMZ+KR6gHMhcUuKl6tkai+JPXTKDyHY1pnszuxRtw2D4A==",
131
+ "license": "Apache-2.0",
132
+ "dependencies": {
133
+ "@ai-sdk/provider": "4.0.0",
134
+ "@standard-schema/spec": "^1.1.0",
135
+ "@workflow/serde": "4.1.0",
136
+ "eventsource-parser": "^3.0.8"
137
+ },
138
+ "engines": {
139
+ "node": ">=22"
140
+ },
141
+ "peerDependencies": {
142
+ "zod": "^3.25.76 || ^4.1.8"
143
+ }
144
+ },
145
+ "node_modules/@ai-sdk/provider-utils-v7/node_modules/@ai-sdk/provider": {
146
+ "version": "4.0.0",
147
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-4.0.0.tgz",
148
+ "integrity": "sha512-fr9Gs89prDWiuox/T+kCA+i2cJkHpxU5S+tr4megjTzRC27ZsvFhwjU/+XrqqMbvBUlfmXxTOYWy8ng45dsjIg==",
149
+ "license": "Apache-2.0",
150
+ "dependencies": {
151
+ "json-schema": "^0.4.0"
152
+ },
153
+ "engines": {
154
+ "node": ">=22"
155
+ }
156
+ },
157
+ "node_modules/@ai-sdk/provider-utils/node_modules/@ai-sdk/provider": {
158
+ "version": "1.1.3",
159
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.1.3.tgz",
160
+ "integrity": "sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==",
161
+ "license": "Apache-2.0",
162
+ "dependencies": {
163
+ "json-schema": "^0.4.0"
164
+ },
165
+ "engines": {
166
+ "node": ">=18"
167
+ }
168
+ },
169
+ "node_modules/@ai-sdk/provider-v5": {
170
+ "name": "@ai-sdk/provider",
171
+ "version": "2.0.3",
172
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.3.tgz",
173
+ "integrity": "sha512-h88OPkavHTiN9tMn2l5awAznGB0lXzjcLhgR1/rvjB2zlLprsNxbM2tt6OJsHUxduLC3klq0/eqaSf6fX5XVww==",
174
+ "license": "Apache-2.0",
175
+ "dependencies": {
176
+ "json-schema": "^0.4.0"
177
+ },
178
+ "engines": {
179
+ "node": ">=18"
180
+ }
181
+ },
182
+ "node_modules/@ai-sdk/provider-v6": {
183
+ "name": "@ai-sdk/provider",
184
+ "version": "3.0.10",
185
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-3.0.10.tgz",
186
+ "integrity": "sha512-Q3BZ27qfpYqnCYGvE3vt+Qi6LGOF9R5Nmzn+9JoM1lCRsD9mYaIhfJLkSunN48nfGXJ6n+XNV0J/XVpqGQl7Dw==",
187
+ "license": "Apache-2.0",
188
+ "dependencies": {
189
+ "json-schema": "^0.4.0"
190
+ },
191
+ "engines": {
192
+ "node": ">=18"
193
+ }
194
+ },
195
+ "node_modules/@ai-sdk/provider-v7": {
196
+ "name": "@ai-sdk/provider",
197
+ "version": "4.0.0",
198
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-4.0.0.tgz",
199
+ "integrity": "sha512-fr9Gs89prDWiuox/T+kCA+i2cJkHpxU5S+tr4megjTzRC27ZsvFhwjU/+XrqqMbvBUlfmXxTOYWy8ng45dsjIg==",
200
+ "license": "Apache-2.0",
201
+ "dependencies": {
202
+ "json-schema": "^0.4.0"
203
+ },
204
+ "engines": {
205
+ "node": ">=22"
206
+ }
207
+ },
208
+ "node_modules/@ai-sdk/ui-utils-v5": {
209
+ "name": "@ai-sdk/ui-utils",
210
+ "version": "1.2.11",
211
+ "resolved": "https://registry.npmjs.org/@ai-sdk/ui-utils/-/ui-utils-1.2.11.tgz",
212
+ "integrity": "sha512-3zcwCc8ezzFlwp3ZD15wAPjf2Au4s3vAbKsXQVyhxODHcmu0iyPO2Eua6D/vicq/AUm/BAo60r97O6HU+EI0+w==",
213
+ "license": "Apache-2.0",
214
+ "dependencies": {
215
+ "@ai-sdk/provider": "1.1.3",
216
+ "@ai-sdk/provider-utils": "2.2.8",
217
+ "zod-to-json-schema": "^3.24.1"
218
+ },
219
+ "engines": {
220
+ "node": ">=18"
221
+ },
222
+ "peerDependencies": {
223
+ "zod": "^3.23.8"
224
+ }
225
+ },
226
+ "node_modules/@ai-sdk/ui-utils-v5/node_modules/@ai-sdk/provider": {
227
+ "version": "1.1.3",
228
+ "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-1.1.3.tgz",
229
+ "integrity": "sha512-qZMxYJ0qqX/RfnuIaab+zp8UAeJn/ygXXAffR5I4N0n1IrvA6qBsjc8hXLmBiMV2zoXlifkacF7sEFnYnjBcqg==",
230
+ "license": "Apache-2.0",
231
+ "dependencies": {
232
+ "json-schema": "^0.4.0"
233
+ },
234
+ "engines": {
235
+ "node": ">=18"
236
+ }
237
+ },
238
+ "node_modules/@hono/node-server": {
239
+ "version": "1.19.14",
240
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz",
241
+ "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
242
+ "license": "MIT",
243
+ "engines": {
244
+ "node": ">=18.14.1"
245
+ },
246
+ "peerDependencies": {
247
+ "hono": "^4"
248
+ }
249
+ },
250
+ "node_modules/@isaacs/ttlcache": {
251
+ "version": "2.1.5",
252
+ "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-2.1.5.tgz",
253
+ "integrity": "sha512-VwGZqqjAWPICTmxUZnbpEfO60LhPWzquik+bmyXGY7pYRn6diEvCI5i6Ca+J6o2y4vS73HrpuMTo2dOvUevH8w==",
254
+ "license": "BlueOak-1.0.0",
255
+ "engines": {
256
+ "node": ">=12"
257
+ }
258
+ },
259
+ "node_modules/@lukeed/csprng": {
260
+ "version": "1.1.0",
261
+ "resolved": "https://registry.npmjs.org/@lukeed/csprng/-/csprng-1.1.0.tgz",
262
+ "integrity": "sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==",
263
+ "license": "MIT",
264
+ "engines": {
265
+ "node": ">=8"
266
+ }
267
+ },
268
+ "node_modules/@lukeed/uuid": {
269
+ "version": "2.0.1",
270
+ "resolved": "https://registry.npmjs.org/@lukeed/uuid/-/uuid-2.0.1.tgz",
271
+ "integrity": "sha512-qC72D4+CDdjGqJvkFMMEAtancHUQ7/d/tAiHf64z8MopFDmcrtbcJuerDtFceuAfQJ2pDSfCKCtbqoGBNnwg0w==",
272
+ "license": "MIT",
273
+ "dependencies": {
274
+ "@lukeed/csprng": "^1.1.0"
275
+ },
276
+ "engines": {
277
+ "node": ">=8"
278
+ }
279
+ },
280
+ "node_modules/@mastra/core": {
281
+ "version": "1.50.0",
282
+ "resolved": "https://registry.npmjs.org/@mastra/core/-/core-1.50.0.tgz",
283
+ "integrity": "sha512-gccYBkLk7jjXl13YnjvPVgnvWcedNTzHdqku5xd3pAt/zsxAbnXrNlBRn3vjcdb8DKVC6U6HXMogpM65/kqjMA==",
284
+ "license": "Apache-2.0",
285
+ "dependencies": {
286
+ "@a2a-js/sdk": "~0.3.13",
287
+ "@ai-sdk/provider-utils-v5": "npm:@ai-sdk/provider-utils@3.0.25",
288
+ "@ai-sdk/provider-utils-v6": "npm:@ai-sdk/provider-utils@4.0.27",
289
+ "@ai-sdk/provider-utils-v7": "npm:@ai-sdk/provider-utils@5.0.0",
290
+ "@ai-sdk/provider-v5": "npm:@ai-sdk/provider@2.0.3",
291
+ "@ai-sdk/provider-v6": "npm:@ai-sdk/provider@3.0.10",
292
+ "@ai-sdk/provider-v7": "npm:@ai-sdk/provider@4.0.0",
293
+ "@ai-sdk/ui-utils-v5": "npm:@ai-sdk/ui-utils@1.2.11",
294
+ "@isaacs/ttlcache": "^2.1.4",
295
+ "@lukeed/uuid": "^2.0.1",
296
+ "@mastra/schema-compat": "1.3.3",
297
+ "@modelcontextprotocol/sdk": "^1.29.0",
298
+ "@sindresorhus/slugify": "^2.2.1",
299
+ "@standard-schema/spec": "^1.1.0",
300
+ "ajv": "^8.20.0",
301
+ "chat": "^4.29.0",
302
+ "croner": "^10.0.1",
303
+ "dotenv": "^17.3.1",
304
+ "execa": "^9.6.1",
305
+ "fastq": "^1.20.1",
306
+ "gray-matter": "^4.0.3",
307
+ "ignore": "^7.0.5",
308
+ "jpeg-js": "^0.4.4",
309
+ "json-schema": "^0.4.0",
310
+ "lru-cache": "^11.2.7",
311
+ "p-map": "^7.0.4",
312
+ "p-retry": "^7.1.1",
313
+ "picomatch": "^4.0.3",
314
+ "posthog-node": "^5.37.0",
315
+ "tokenx": "^1.3.0",
316
+ "ws": "^8.21.0",
317
+ "xxhash-wasm": "^1.1.0"
318
+ },
319
+ "engines": {
320
+ "node": ">=22.13.0"
321
+ },
322
+ "peerDependencies": {
323
+ "zod": "^3.25.0 || ^4.0.0"
324
+ }
325
+ },
326
+ "node_modules/@mastra/schema-compat": {
327
+ "version": "1.3.3",
328
+ "resolved": "https://registry.npmjs.org/@mastra/schema-compat/-/schema-compat-1.3.3.tgz",
329
+ "integrity": "sha512-NqptophFxMB8Z3vXjnLAMbj2OMbspAA6Tqf3DQkxxNmlBH9RYhA4xqwK8/fum0lrgmYzVrsSkw7SwHrgVDcg6g==",
330
+ "license": "Apache-2.0",
331
+ "dependencies": {
332
+ "json-schema-to-zod": "^2.7.0",
333
+ "zod-from-json-schema": "^0.5.2",
334
+ "zod-from-json-schema-v3": "npm:zod-from-json-schema@^0.0.5",
335
+ "zod-to-json-schema": "^3.25.1"
336
+ },
337
+ "engines": {
338
+ "node": ">=22.13.0"
339
+ },
340
+ "peerDependencies": {
341
+ "zod": "^3.25.0 || ^4.0.0"
342
+ }
343
+ },
344
+ "node_modules/@modelcontextprotocol/sdk": {
345
+ "version": "1.29.0",
346
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
347
+ "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
348
+ "license": "MIT",
349
+ "dependencies": {
350
+ "@hono/node-server": "^1.19.9",
351
+ "ajv": "^8.17.1",
352
+ "ajv-formats": "^3.0.1",
353
+ "content-type": "^1.0.5",
354
+ "cors": "^2.8.5",
355
+ "cross-spawn": "^7.0.5",
356
+ "eventsource": "^3.0.2",
357
+ "eventsource-parser": "^3.0.0",
358
+ "express": "^5.2.1",
359
+ "express-rate-limit": "^8.2.1",
360
+ "hono": "^4.11.4",
361
+ "jose": "^6.1.3",
362
+ "json-schema-typed": "^8.0.2",
363
+ "pkce-challenge": "^5.0.0",
364
+ "raw-body": "^3.0.0",
365
+ "zod": "^3.25 || ^4.0",
366
+ "zod-to-json-schema": "^3.25.1"
367
+ },
368
+ "engines": {
369
+ "node": ">=18"
370
+ },
371
+ "peerDependencies": {
372
+ "@cfworker/json-schema": "^4.1.1",
373
+ "zod": "^3.25 || ^4.0"
374
+ },
375
+ "peerDependenciesMeta": {
376
+ "@cfworker/json-schema": {
377
+ "optional": true
378
+ },
379
+ "zod": {
380
+ "optional": false
381
+ }
382
+ }
383
+ },
384
+ "node_modules/@noble/ed25519": {
385
+ "version": "2.3.0",
386
+ "resolved": "https://registry.npmjs.org/@noble/ed25519/-/ed25519-2.3.0.tgz",
387
+ "integrity": "sha512-M7dvXL2B92/M7dw9+gzuydL8qn/jiqNHaoR3Q+cb1q1GHV7uwE17WCyFMG+Y+TZb5izcaXk5TdJRrDUxHXL78A==",
388
+ "license": "MIT",
389
+ "funding": {
390
+ "url": "https://paulmillr.com/funding/"
391
+ }
392
+ },
393
+ "node_modules/@noble/hashes": {
394
+ "version": "1.8.0",
395
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
396
+ "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
397
+ "license": "MIT",
398
+ "engines": {
399
+ "node": "^14.21.3 || >=16"
400
+ },
401
+ "funding": {
402
+ "url": "https://paulmillr.com/funding/"
403
+ }
404
+ },
405
+ "node_modules/@noble/secp256k1": {
406
+ "version": "2.3.0",
407
+ "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-2.3.0.tgz",
408
+ "integrity": "sha512-0TQed2gcBbIrh7Ccyw+y/uZQvbJwm7Ao4scBUxqpBCcsOlZG0O4KGfjtNAy/li4W8n1xt3dxrwJ0beZ2h2G6Kw==",
409
+ "license": "MIT",
410
+ "funding": {
411
+ "url": "https://paulmillr.com/funding/"
412
+ }
413
+ },
414
+ "node_modules/@paybond/kit": {
415
+ "version": "0.12.0",
416
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.0.tgz",
417
+ "integrity": "sha512-iAluOkqE8aINum1GF/LkR6Oi04xH9cNCZDJRF5BBFUQMqcNUpN1g/zNQK78jIGVlwcssexnLmiet31Z0NJ5jbg==",
418
+ "license": "Apache-2.0",
419
+ "dependencies": {
420
+ "@noble/ed25519": "^2.2.1",
421
+ "@noble/hashes": "^1.7.1",
422
+ "@noble/secp256k1": "^2.2.3",
423
+ "ajv": "^8.17.1",
424
+ "blake3": "^2.1.7",
425
+ "uuid": "^14.0.0",
426
+ "zod": "^3.25.32 || ^4.2.0"
427
+ },
428
+ "bin": {
429
+ "paybond": "dist/cli.js",
430
+ "paybond-init": "dist/init.js",
431
+ "paybond-kit-login": "dist/login.js",
432
+ "paybond-mcp-server": "dist/mcp-server.js"
433
+ },
434
+ "engines": {
435
+ "node": ">=22"
436
+ },
437
+ "peerDependencies": {
438
+ "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
439
+ "@langchain/core": ">=0.3.0",
440
+ "@langchain/langgraph": ">=0.2.50",
441
+ "@mastra/core": ">=1.0.0",
442
+ "@openai/agents": ">=0.12.0",
443
+ "agents": ">=0.10.0",
444
+ "ai": ">=4.0.0",
445
+ "zod": "^3.25.32 || ^4.2.0"
446
+ },
447
+ "peerDependenciesMeta": {
448
+ "@anthropic-ai/claude-agent-sdk": {
449
+ "optional": true
450
+ },
451
+ "@langchain/core": {
452
+ "optional": true
453
+ },
454
+ "@langchain/langgraph": {
455
+ "optional": true
456
+ },
457
+ "@mastra/core": {
458
+ "optional": true
459
+ },
460
+ "@openai/agents": {
461
+ "optional": true
462
+ },
463
+ "agents": {
464
+ "optional": true
465
+ },
466
+ "ai": {
467
+ "optional": true
468
+ },
469
+ "zod": {
470
+ "optional": true
471
+ }
472
+ }
473
+ },
474
+ "node_modules/@paybond/kit/node_modules/uuid": {
475
+ "version": "14.0.1",
476
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.1.tgz",
477
+ "integrity": "sha512-6ZxzVpzDXDa3bJWaHilVayA+BH/1zmxCJoVgvmqJnid/gPoKHxUrS/aC/T6LGQtNHT+XHG9fXPJB4d+IrU30Ew==",
478
+ "funding": [
479
+ "https://github.com/sponsors/broofa",
480
+ "https://github.com/sponsors/ctavan"
481
+ ],
482
+ "license": "MIT",
483
+ "bin": {
484
+ "uuid": "dist-node/bin/uuid"
485
+ }
486
+ },
487
+ "node_modules/@posthog/core": {
488
+ "version": "1.39.6",
489
+ "resolved": "https://registry.npmjs.org/@posthog/core/-/core-1.39.6.tgz",
490
+ "integrity": "sha512-o6ajIwN5zXoNP0D4H/QPmOyibNTUkSyOR6ya7AG5U2ywXx4awo72L2KnCoiZPQM5x/bXv6jPBdimH8M18Ax0aw==",
491
+ "license": "MIT",
492
+ "dependencies": {
493
+ "@posthog/types": "^1.392.0"
494
+ }
495
+ },
496
+ "node_modules/@posthog/types": {
497
+ "version": "1.392.1",
498
+ "resolved": "https://registry.npmjs.org/@posthog/types/-/types-1.392.1.tgz",
499
+ "integrity": "sha512-Qg6Gl7/1vlr8+gPtBi5gwnLgAgiyFoKOVmTvTtDcvya9cpTwZfna7rQmkGQ4B63CunUYNNbOlqcwiUwUDyTK6w==",
500
+ "license": "MIT"
501
+ },
502
+ "node_modules/@sec-ant/readable-stream": {
503
+ "version": "0.4.1",
504
+ "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz",
505
+ "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==",
506
+ "license": "MIT"
507
+ },
508
+ "node_modules/@sindresorhus/merge-streams": {
509
+ "version": "4.0.0",
510
+ "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
511
+ "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
512
+ "license": "MIT",
513
+ "engines": {
514
+ "node": ">=18"
515
+ },
516
+ "funding": {
517
+ "url": "https://github.com/sponsors/sindresorhus"
518
+ }
519
+ },
520
+ "node_modules/@sindresorhus/slugify": {
521
+ "version": "2.2.1",
522
+ "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-2.2.1.tgz",
523
+ "integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==",
524
+ "license": "MIT",
525
+ "dependencies": {
526
+ "@sindresorhus/transliterate": "^1.0.0",
527
+ "escape-string-regexp": "^5.0.0"
528
+ },
529
+ "engines": {
530
+ "node": ">=12"
531
+ },
532
+ "funding": {
533
+ "url": "https://github.com/sponsors/sindresorhus"
534
+ }
535
+ },
536
+ "node_modules/@sindresorhus/transliterate": {
537
+ "version": "1.6.0",
538
+ "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-1.6.0.tgz",
539
+ "integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==",
540
+ "license": "MIT",
541
+ "dependencies": {
542
+ "escape-string-regexp": "^5.0.0"
543
+ },
544
+ "engines": {
545
+ "node": ">=12"
546
+ },
547
+ "funding": {
548
+ "url": "https://github.com/sponsors/sindresorhus"
549
+ }
550
+ },
551
+ "node_modules/@standard-schema/spec": {
552
+ "version": "1.1.0",
553
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
554
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
555
+ "license": "MIT"
556
+ },
557
+ "node_modules/@types/debug": {
558
+ "version": "4.1.13",
559
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
560
+ "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
561
+ "license": "MIT",
562
+ "dependencies": {
563
+ "@types/ms": "*"
564
+ }
565
+ },
566
+ "node_modules/@types/mdast": {
567
+ "version": "4.0.4",
568
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
569
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
570
+ "license": "MIT",
571
+ "dependencies": {
572
+ "@types/unist": "*"
573
+ }
574
+ },
575
+ "node_modules/@types/ms": {
576
+ "version": "2.1.0",
577
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
578
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
579
+ "license": "MIT"
580
+ },
581
+ "node_modules/@types/node": {
582
+ "version": "22.20.0",
583
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
584
+ "integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
585
+ "dev": true,
586
+ "license": "MIT",
587
+ "dependencies": {
588
+ "undici-types": "~6.21.0"
589
+ }
590
+ },
591
+ "node_modules/@types/unist": {
592
+ "version": "3.0.3",
593
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
594
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
595
+ "license": "MIT"
596
+ },
597
+ "node_modules/@workflow/serde": {
598
+ "version": "4.1.0",
599
+ "resolved": "https://registry.npmjs.org/@workflow/serde/-/serde-4.1.0.tgz",
600
+ "integrity": "sha512-pav4F2BoirECWR7Nf1TKt+2eETcBj7jj4cBefQ8VXQCA6NPkaKeLfj/zMgi+3zYV5ZIBT4GuUiphsj0/b9hPQQ==",
601
+ "license": "Apache-2.0"
602
+ },
603
+ "node_modules/accepts": {
604
+ "version": "2.0.0",
605
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
606
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
607
+ "license": "MIT",
608
+ "dependencies": {
609
+ "mime-types": "^3.0.0",
610
+ "negotiator": "^1.0.0"
611
+ },
612
+ "engines": {
613
+ "node": ">= 0.6"
614
+ }
615
+ },
616
+ "node_modules/ajv": {
617
+ "version": "8.20.0",
618
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
619
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
620
+ "license": "MIT",
621
+ "dependencies": {
622
+ "fast-deep-equal": "^3.1.3",
623
+ "fast-uri": "^3.0.1",
624
+ "json-schema-traverse": "^1.0.0",
625
+ "require-from-string": "^2.0.2"
626
+ },
627
+ "funding": {
628
+ "type": "github",
629
+ "url": "https://github.com/sponsors/epoberezkin"
630
+ }
631
+ },
632
+ "node_modules/ajv-formats": {
633
+ "version": "3.0.1",
634
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz",
635
+ "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==",
636
+ "license": "MIT",
637
+ "dependencies": {
638
+ "ajv": "^8.0.0"
639
+ },
640
+ "peerDependencies": {
641
+ "ajv": "^8.0.0"
642
+ },
643
+ "peerDependenciesMeta": {
644
+ "ajv": {
645
+ "optional": true
646
+ }
647
+ }
648
+ },
649
+ "node_modules/argparse": {
650
+ "version": "1.0.10",
651
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
652
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
653
+ "license": "MIT",
654
+ "dependencies": {
655
+ "sprintf-js": "~1.0.2"
656
+ }
657
+ },
658
+ "node_modules/bail": {
659
+ "version": "2.0.2",
660
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
661
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
662
+ "license": "MIT",
663
+ "funding": {
664
+ "type": "github",
665
+ "url": "https://github.com/sponsors/wooorm"
666
+ }
667
+ },
668
+ "node_modules/blake3": {
669
+ "version": "2.1.7",
670
+ "resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
671
+ "integrity": "sha512-5d+TdKJvju96IyEaGJ0eO6CHbckWi+NBrCezGYM/WsnI3R03aLL2TWfsuZSh1rs0fTv/L3ps/r0vykjYurcIwA==",
672
+ "hasInstallScript": true,
673
+ "license": "MIT"
674
+ },
675
+ "node_modules/body-parser": {
676
+ "version": "2.3.0",
677
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
678
+ "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
679
+ "license": "MIT",
680
+ "dependencies": {
681
+ "bytes": "^3.1.2",
682
+ "content-type": "^2.0.0",
683
+ "debug": "^4.4.3",
684
+ "http-errors": "^2.0.1",
685
+ "iconv-lite": "^0.7.2",
686
+ "on-finished": "^2.4.1",
687
+ "qs": "^6.15.2",
688
+ "raw-body": "^3.0.2",
689
+ "type-is": "^2.1.0"
690
+ },
691
+ "engines": {
692
+ "node": ">=18"
693
+ },
694
+ "funding": {
695
+ "type": "opencollective",
696
+ "url": "https://opencollective.com/express"
697
+ }
698
+ },
699
+ "node_modules/body-parser/node_modules/content-type": {
700
+ "version": "2.0.0",
701
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
702
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
703
+ "license": "MIT",
704
+ "engines": {
705
+ "node": ">=18"
706
+ },
707
+ "funding": {
708
+ "type": "opencollective",
709
+ "url": "https://opencollective.com/express"
710
+ }
711
+ },
712
+ "node_modules/bytes": {
713
+ "version": "3.1.2",
714
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
715
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
716
+ "license": "MIT",
717
+ "engines": {
718
+ "node": ">= 0.8"
719
+ }
720
+ },
721
+ "node_modules/call-bind-apply-helpers": {
722
+ "version": "1.0.2",
723
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
724
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
725
+ "license": "MIT",
726
+ "dependencies": {
727
+ "es-errors": "^1.3.0",
728
+ "function-bind": "^1.1.2"
729
+ },
730
+ "engines": {
731
+ "node": ">= 0.4"
732
+ }
733
+ },
734
+ "node_modules/call-bound": {
735
+ "version": "1.0.4",
736
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
737
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
738
+ "license": "MIT",
739
+ "dependencies": {
740
+ "call-bind-apply-helpers": "^1.0.2",
741
+ "get-intrinsic": "^1.3.0"
742
+ },
743
+ "engines": {
744
+ "node": ">= 0.4"
745
+ },
746
+ "funding": {
747
+ "url": "https://github.com/sponsors/ljharb"
748
+ }
749
+ },
750
+ "node_modules/ccount": {
751
+ "version": "2.0.1",
752
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
753
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
754
+ "license": "MIT",
755
+ "funding": {
756
+ "type": "github",
757
+ "url": "https://github.com/sponsors/wooorm"
758
+ }
759
+ },
760
+ "node_modules/character-entities": {
761
+ "version": "2.0.2",
762
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
763
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
764
+ "license": "MIT",
765
+ "funding": {
766
+ "type": "github",
767
+ "url": "https://github.com/sponsors/wooorm"
768
+ }
769
+ },
770
+ "node_modules/chat": {
771
+ "version": "4.32.0",
772
+ "resolved": "https://registry.npmjs.org/chat/-/chat-4.32.0.tgz",
773
+ "integrity": "sha512-0NlJcCLycTy8kytRsZEnW4Gzomm+SNh1Yg7y9GVYB5fTjyhOxCcnzqrythgXNn2dvv7VeihDIISpNU0WZdOKKg==",
774
+ "license": "MIT",
775
+ "dependencies": {
776
+ "@workflow/serde": "4.1.0-beta.2",
777
+ "mdast-util-to-string": "^4.0.0",
778
+ "remark-gfm": "^4.0.0",
779
+ "remark-parse": "^11.0.0",
780
+ "remark-stringify": "^11.0.0",
781
+ "remend": "^1.2.1",
782
+ "unified": "^11.0.5"
783
+ },
784
+ "engines": {
785
+ "node": ">=20"
786
+ },
787
+ "peerDependencies": {
788
+ "ai": "^6.0.182",
789
+ "zod": "^3.0.0 || ^4.0.0"
790
+ },
791
+ "peerDependenciesMeta": {
792
+ "ai": {
793
+ "optional": true
794
+ },
795
+ "zod": {
796
+ "optional": true
797
+ }
798
+ }
799
+ },
800
+ "node_modules/chat/node_modules/@workflow/serde": {
801
+ "version": "4.1.0-beta.2",
802
+ "resolved": "https://registry.npmjs.org/@workflow/serde/-/serde-4.1.0-beta.2.tgz",
803
+ "integrity": "sha512-8kkeoQKLDaKXefjV5dbhBj2aErfKp1Mc4pb6tj8144cF+Em5SPbyMbyLCHp+BVrFfFVCBluCtMx+jjvaFVZGww==",
804
+ "license": "Apache-2.0"
805
+ },
806
+ "node_modules/content-disposition": {
807
+ "version": "1.1.0",
808
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
809
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
810
+ "license": "MIT",
811
+ "engines": {
812
+ "node": ">=18"
813
+ },
814
+ "funding": {
815
+ "type": "opencollective",
816
+ "url": "https://opencollective.com/express"
817
+ }
818
+ },
819
+ "node_modules/content-type": {
820
+ "version": "1.0.5",
821
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
822
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
823
+ "license": "MIT",
824
+ "engines": {
825
+ "node": ">= 0.6"
826
+ }
827
+ },
828
+ "node_modules/cookie": {
829
+ "version": "0.7.2",
830
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
831
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
832
+ "license": "MIT",
833
+ "engines": {
834
+ "node": ">= 0.6"
835
+ }
836
+ },
837
+ "node_modules/cookie-signature": {
838
+ "version": "1.2.2",
839
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
840
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
841
+ "license": "MIT",
842
+ "engines": {
843
+ "node": ">=6.6.0"
844
+ }
845
+ },
846
+ "node_modules/cors": {
847
+ "version": "2.8.6",
848
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
849
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
850
+ "license": "MIT",
851
+ "dependencies": {
852
+ "object-assign": "^4",
853
+ "vary": "^1"
854
+ },
855
+ "engines": {
856
+ "node": ">= 0.10"
857
+ },
858
+ "funding": {
859
+ "type": "opencollective",
860
+ "url": "https://opencollective.com/express"
861
+ }
862
+ },
863
+ "node_modules/croner": {
864
+ "version": "10.0.1",
865
+ "resolved": "https://registry.npmjs.org/croner/-/croner-10.0.1.tgz",
866
+ "integrity": "sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==",
867
+ "funding": [
868
+ {
869
+ "type": "other",
870
+ "url": "https://paypal.me/hexagonpp"
871
+ },
872
+ {
873
+ "type": "github",
874
+ "url": "https://github.com/sponsors/hexagon"
875
+ }
876
+ ],
877
+ "license": "MIT",
878
+ "engines": {
879
+ "node": ">=18.0"
880
+ }
881
+ },
882
+ "node_modules/cross-spawn": {
883
+ "version": "7.0.6",
884
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
885
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
886
+ "license": "MIT",
887
+ "dependencies": {
888
+ "path-key": "^3.1.0",
889
+ "shebang-command": "^2.0.0",
890
+ "which": "^2.0.1"
891
+ },
892
+ "engines": {
893
+ "node": ">= 8"
894
+ }
895
+ },
896
+ "node_modules/debug": {
897
+ "version": "4.4.3",
898
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
899
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
900
+ "license": "MIT",
901
+ "dependencies": {
902
+ "ms": "^2.1.3"
903
+ },
904
+ "engines": {
905
+ "node": ">=6.0"
906
+ },
907
+ "peerDependenciesMeta": {
908
+ "supports-color": {
909
+ "optional": true
910
+ }
911
+ }
912
+ },
913
+ "node_modules/decode-named-character-reference": {
914
+ "version": "1.3.0",
915
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
916
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
917
+ "license": "MIT",
918
+ "dependencies": {
919
+ "character-entities": "^2.0.0"
920
+ },
921
+ "funding": {
922
+ "type": "github",
923
+ "url": "https://github.com/sponsors/wooorm"
924
+ }
925
+ },
926
+ "node_modules/depd": {
927
+ "version": "2.0.0",
928
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
929
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
930
+ "license": "MIT",
931
+ "engines": {
932
+ "node": ">= 0.8"
933
+ }
934
+ },
935
+ "node_modules/dequal": {
936
+ "version": "2.0.3",
937
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
938
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
939
+ "license": "MIT",
940
+ "engines": {
941
+ "node": ">=6"
942
+ }
943
+ },
944
+ "node_modules/devlop": {
945
+ "version": "1.1.0",
946
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
947
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
948
+ "license": "MIT",
949
+ "dependencies": {
950
+ "dequal": "^2.0.0"
951
+ },
952
+ "funding": {
953
+ "type": "github",
954
+ "url": "https://github.com/sponsors/wooorm"
955
+ }
956
+ },
957
+ "node_modules/dotenv": {
958
+ "version": "17.4.2",
959
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
960
+ "integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
961
+ "license": "BSD-2-Clause",
962
+ "engines": {
963
+ "node": ">=12"
964
+ },
965
+ "funding": {
966
+ "url": "https://dotenvx.com"
967
+ }
968
+ },
969
+ "node_modules/dunder-proto": {
970
+ "version": "1.0.1",
971
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
972
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
973
+ "license": "MIT",
974
+ "dependencies": {
975
+ "call-bind-apply-helpers": "^1.0.1",
976
+ "es-errors": "^1.3.0",
977
+ "gopd": "^1.2.0"
978
+ },
979
+ "engines": {
980
+ "node": ">= 0.4"
981
+ }
982
+ },
983
+ "node_modules/ee-first": {
984
+ "version": "1.1.1",
985
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
986
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
987
+ "license": "MIT"
988
+ },
989
+ "node_modules/encodeurl": {
990
+ "version": "2.0.0",
991
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
992
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
993
+ "license": "MIT",
994
+ "engines": {
995
+ "node": ">= 0.8"
996
+ }
997
+ },
998
+ "node_modules/es-define-property": {
999
+ "version": "1.0.1",
1000
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1001
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1002
+ "license": "MIT",
1003
+ "engines": {
1004
+ "node": ">= 0.4"
1005
+ }
1006
+ },
1007
+ "node_modules/es-errors": {
1008
+ "version": "1.3.0",
1009
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1010
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1011
+ "license": "MIT",
1012
+ "engines": {
1013
+ "node": ">= 0.4"
1014
+ }
1015
+ },
1016
+ "node_modules/es-object-atoms": {
1017
+ "version": "1.1.2",
1018
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
1019
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
1020
+ "license": "MIT",
1021
+ "dependencies": {
1022
+ "es-errors": "^1.3.0"
1023
+ },
1024
+ "engines": {
1025
+ "node": ">= 0.4"
1026
+ }
1027
+ },
1028
+ "node_modules/escape-html": {
1029
+ "version": "1.0.3",
1030
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
1031
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
1032
+ "license": "MIT"
1033
+ },
1034
+ "node_modules/escape-string-regexp": {
1035
+ "version": "5.0.0",
1036
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
1037
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
1038
+ "license": "MIT",
1039
+ "engines": {
1040
+ "node": ">=12"
1041
+ },
1042
+ "funding": {
1043
+ "url": "https://github.com/sponsors/sindresorhus"
1044
+ }
1045
+ },
1046
+ "node_modules/esprima": {
1047
+ "version": "4.0.1",
1048
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
1049
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
1050
+ "license": "BSD-2-Clause",
1051
+ "bin": {
1052
+ "esparse": "bin/esparse.js",
1053
+ "esvalidate": "bin/esvalidate.js"
1054
+ },
1055
+ "engines": {
1056
+ "node": ">=4"
1057
+ }
1058
+ },
1059
+ "node_modules/etag": {
1060
+ "version": "1.8.1",
1061
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
1062
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
1063
+ "license": "MIT",
1064
+ "engines": {
1065
+ "node": ">= 0.6"
1066
+ }
1067
+ },
1068
+ "node_modules/eventsource": {
1069
+ "version": "3.0.7",
1070
+ "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz",
1071
+ "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==",
1072
+ "license": "MIT",
1073
+ "dependencies": {
1074
+ "eventsource-parser": "^3.0.1"
1075
+ },
1076
+ "engines": {
1077
+ "node": ">=18.0.0"
1078
+ }
1079
+ },
1080
+ "node_modules/eventsource-parser": {
1081
+ "version": "3.1.0",
1082
+ "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz",
1083
+ "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==",
1084
+ "license": "MIT",
1085
+ "engines": {
1086
+ "node": ">=18.0.0"
1087
+ }
1088
+ },
1089
+ "node_modules/execa": {
1090
+ "version": "9.6.1",
1091
+ "resolved": "https://registry.npmjs.org/execa/-/execa-9.6.1.tgz",
1092
+ "integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==",
1093
+ "license": "MIT",
1094
+ "dependencies": {
1095
+ "@sindresorhus/merge-streams": "^4.0.0",
1096
+ "cross-spawn": "^7.0.6",
1097
+ "figures": "^6.1.0",
1098
+ "get-stream": "^9.0.0",
1099
+ "human-signals": "^8.0.1",
1100
+ "is-plain-obj": "^4.1.0",
1101
+ "is-stream": "^4.0.1",
1102
+ "npm-run-path": "^6.0.0",
1103
+ "pretty-ms": "^9.2.0",
1104
+ "signal-exit": "^4.1.0",
1105
+ "strip-final-newline": "^4.0.0",
1106
+ "yoctocolors": "^2.1.1"
1107
+ },
1108
+ "engines": {
1109
+ "node": "^18.19.0 || >=20.5.0"
1110
+ },
1111
+ "funding": {
1112
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
1113
+ }
1114
+ },
1115
+ "node_modules/express": {
1116
+ "version": "5.2.1",
1117
+ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
1118
+ "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
1119
+ "license": "MIT",
1120
+ "dependencies": {
1121
+ "accepts": "^2.0.0",
1122
+ "body-parser": "^2.2.1",
1123
+ "content-disposition": "^1.0.0",
1124
+ "content-type": "^1.0.5",
1125
+ "cookie": "^0.7.1",
1126
+ "cookie-signature": "^1.2.1",
1127
+ "debug": "^4.4.0",
1128
+ "depd": "^2.0.0",
1129
+ "encodeurl": "^2.0.0",
1130
+ "escape-html": "^1.0.3",
1131
+ "etag": "^1.8.1",
1132
+ "finalhandler": "^2.1.0",
1133
+ "fresh": "^2.0.0",
1134
+ "http-errors": "^2.0.0",
1135
+ "merge-descriptors": "^2.0.0",
1136
+ "mime-types": "^3.0.0",
1137
+ "on-finished": "^2.4.1",
1138
+ "once": "^1.4.0",
1139
+ "parseurl": "^1.3.3",
1140
+ "proxy-addr": "^2.0.7",
1141
+ "qs": "^6.14.0",
1142
+ "range-parser": "^1.2.1",
1143
+ "router": "^2.2.0",
1144
+ "send": "^1.1.0",
1145
+ "serve-static": "^2.2.0",
1146
+ "statuses": "^2.0.1",
1147
+ "type-is": "^2.0.1",
1148
+ "vary": "^1.1.2"
1149
+ },
1150
+ "engines": {
1151
+ "node": ">= 18"
1152
+ },
1153
+ "funding": {
1154
+ "type": "opencollective",
1155
+ "url": "https://opencollective.com/express"
1156
+ }
1157
+ },
1158
+ "node_modules/express-rate-limit": {
1159
+ "version": "8.5.2",
1160
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.2.tgz",
1161
+ "integrity": "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==",
1162
+ "license": "MIT",
1163
+ "dependencies": {
1164
+ "ip-address": "^10.2.0"
1165
+ },
1166
+ "engines": {
1167
+ "node": ">= 16"
1168
+ },
1169
+ "funding": {
1170
+ "url": "https://github.com/sponsors/express-rate-limit"
1171
+ },
1172
+ "peerDependencies": {
1173
+ "express": ">= 4.11"
1174
+ }
1175
+ },
1176
+ "node_modules/extend": {
1177
+ "version": "3.0.2",
1178
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1179
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1180
+ "license": "MIT"
1181
+ },
1182
+ "node_modules/extend-shallow": {
1183
+ "version": "2.0.1",
1184
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1185
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
1186
+ "license": "MIT",
1187
+ "dependencies": {
1188
+ "is-extendable": "^0.1.0"
1189
+ },
1190
+ "engines": {
1191
+ "node": ">=0.10.0"
1192
+ }
1193
+ },
1194
+ "node_modules/fast-deep-equal": {
1195
+ "version": "3.1.3",
1196
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1197
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1198
+ "license": "MIT"
1199
+ },
1200
+ "node_modules/fast-uri": {
1201
+ "version": "3.1.3",
1202
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
1203
+ "integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
1204
+ "funding": [
1205
+ {
1206
+ "type": "github",
1207
+ "url": "https://github.com/sponsors/fastify"
1208
+ },
1209
+ {
1210
+ "type": "opencollective",
1211
+ "url": "https://opencollective.com/fastify"
1212
+ }
1213
+ ],
1214
+ "license": "BSD-3-Clause"
1215
+ },
1216
+ "node_modules/fastq": {
1217
+ "version": "1.20.1",
1218
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
1219
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
1220
+ "license": "ISC",
1221
+ "dependencies": {
1222
+ "reusify": "^1.0.4"
1223
+ }
1224
+ },
1225
+ "node_modules/figures": {
1226
+ "version": "6.1.0",
1227
+ "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz",
1228
+ "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==",
1229
+ "license": "MIT",
1230
+ "dependencies": {
1231
+ "is-unicode-supported": "^2.0.0"
1232
+ },
1233
+ "engines": {
1234
+ "node": ">=18"
1235
+ },
1236
+ "funding": {
1237
+ "url": "https://github.com/sponsors/sindresorhus"
1238
+ }
1239
+ },
1240
+ "node_modules/finalhandler": {
1241
+ "version": "2.1.1",
1242
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
1243
+ "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
1244
+ "license": "MIT",
1245
+ "dependencies": {
1246
+ "debug": "^4.4.0",
1247
+ "encodeurl": "^2.0.0",
1248
+ "escape-html": "^1.0.3",
1249
+ "on-finished": "^2.4.1",
1250
+ "parseurl": "^1.3.3",
1251
+ "statuses": "^2.0.1"
1252
+ },
1253
+ "engines": {
1254
+ "node": ">= 18.0.0"
1255
+ },
1256
+ "funding": {
1257
+ "type": "opencollective",
1258
+ "url": "https://opencollective.com/express"
1259
+ }
1260
+ },
1261
+ "node_modules/forwarded": {
1262
+ "version": "0.2.0",
1263
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
1264
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
1265
+ "license": "MIT",
1266
+ "engines": {
1267
+ "node": ">= 0.6"
1268
+ }
1269
+ },
1270
+ "node_modules/fresh": {
1271
+ "version": "2.0.0",
1272
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
1273
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
1274
+ "license": "MIT",
1275
+ "engines": {
1276
+ "node": ">= 0.8"
1277
+ }
1278
+ },
1279
+ "node_modules/function-bind": {
1280
+ "version": "1.1.2",
1281
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1282
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1283
+ "license": "MIT",
1284
+ "funding": {
1285
+ "url": "https://github.com/sponsors/ljharb"
1286
+ }
1287
+ },
1288
+ "node_modules/get-intrinsic": {
1289
+ "version": "1.3.0",
1290
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
1291
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
1292
+ "license": "MIT",
1293
+ "dependencies": {
1294
+ "call-bind-apply-helpers": "^1.0.2",
1295
+ "es-define-property": "^1.0.1",
1296
+ "es-errors": "^1.3.0",
1297
+ "es-object-atoms": "^1.1.1",
1298
+ "function-bind": "^1.1.2",
1299
+ "get-proto": "^1.0.1",
1300
+ "gopd": "^1.2.0",
1301
+ "has-symbols": "^1.1.0",
1302
+ "hasown": "^2.0.2",
1303
+ "math-intrinsics": "^1.1.0"
1304
+ },
1305
+ "engines": {
1306
+ "node": ">= 0.4"
1307
+ },
1308
+ "funding": {
1309
+ "url": "https://github.com/sponsors/ljharb"
1310
+ }
1311
+ },
1312
+ "node_modules/get-proto": {
1313
+ "version": "1.0.1",
1314
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
1315
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
1316
+ "license": "MIT",
1317
+ "dependencies": {
1318
+ "dunder-proto": "^1.0.1",
1319
+ "es-object-atoms": "^1.0.0"
1320
+ },
1321
+ "engines": {
1322
+ "node": ">= 0.4"
1323
+ }
1324
+ },
1325
+ "node_modules/get-stream": {
1326
+ "version": "9.0.1",
1327
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz",
1328
+ "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==",
1329
+ "license": "MIT",
1330
+ "dependencies": {
1331
+ "@sec-ant/readable-stream": "^0.4.1",
1332
+ "is-stream": "^4.0.1"
1333
+ },
1334
+ "engines": {
1335
+ "node": ">=18"
1336
+ },
1337
+ "funding": {
1338
+ "url": "https://github.com/sponsors/sindresorhus"
1339
+ }
1340
+ },
1341
+ "node_modules/gopd": {
1342
+ "version": "1.2.0",
1343
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
1344
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
1345
+ "license": "MIT",
1346
+ "engines": {
1347
+ "node": ">= 0.4"
1348
+ },
1349
+ "funding": {
1350
+ "url": "https://github.com/sponsors/ljharb"
1351
+ }
1352
+ },
1353
+ "node_modules/gray-matter": {
1354
+ "version": "4.0.3",
1355
+ "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
1356
+ "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
1357
+ "license": "MIT",
1358
+ "dependencies": {
1359
+ "js-yaml": "^3.13.1",
1360
+ "kind-of": "^6.0.2",
1361
+ "section-matter": "^1.0.0",
1362
+ "strip-bom-string": "^1.0.0"
1363
+ },
1364
+ "engines": {
1365
+ "node": ">=6.0"
1366
+ }
1367
+ },
1368
+ "node_modules/has-symbols": {
1369
+ "version": "1.1.0",
1370
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
1371
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
1372
+ "license": "MIT",
1373
+ "engines": {
1374
+ "node": ">= 0.4"
1375
+ },
1376
+ "funding": {
1377
+ "url": "https://github.com/sponsors/ljharb"
1378
+ }
1379
+ },
1380
+ "node_modules/hasown": {
1381
+ "version": "2.0.4",
1382
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
1383
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
1384
+ "license": "MIT",
1385
+ "dependencies": {
1386
+ "function-bind": "^1.1.2"
1387
+ },
1388
+ "engines": {
1389
+ "node": ">= 0.4"
1390
+ }
1391
+ },
1392
+ "node_modules/hono": {
1393
+ "version": "4.12.28",
1394
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.28.tgz",
1395
+ "integrity": "sha512-YwUvVpSF7m1yOblFPrU3Hbo8XhPheBoiyfGuII6z19LnOr6JpDnyyp7LFNrfV56wS8tpvtBFGRISHN02pDdLOA==",
1396
+ "license": "MIT",
1397
+ "engines": {
1398
+ "node": ">=16.9.0"
1399
+ }
1400
+ },
1401
+ "node_modules/http-errors": {
1402
+ "version": "2.0.1",
1403
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
1404
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
1405
+ "license": "MIT",
1406
+ "dependencies": {
1407
+ "depd": "~2.0.0",
1408
+ "inherits": "~2.0.4",
1409
+ "setprototypeof": "~1.2.0",
1410
+ "statuses": "~2.0.2",
1411
+ "toidentifier": "~1.0.1"
1412
+ },
1413
+ "engines": {
1414
+ "node": ">= 0.8"
1415
+ },
1416
+ "funding": {
1417
+ "type": "opencollective",
1418
+ "url": "https://opencollective.com/express"
1419
+ }
1420
+ },
1421
+ "node_modules/human-signals": {
1422
+ "version": "8.0.1",
1423
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz",
1424
+ "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==",
1425
+ "license": "Apache-2.0",
1426
+ "engines": {
1427
+ "node": ">=18.18.0"
1428
+ }
1429
+ },
1430
+ "node_modules/iconv-lite": {
1431
+ "version": "0.7.3",
1432
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
1433
+ "integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
1434
+ "license": "MIT",
1435
+ "dependencies": {
1436
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1437
+ },
1438
+ "engines": {
1439
+ "node": ">=0.10.0"
1440
+ },
1441
+ "funding": {
1442
+ "type": "opencollective",
1443
+ "url": "https://opencollective.com/express"
1444
+ }
1445
+ },
1446
+ "node_modules/ignore": {
1447
+ "version": "7.0.5",
1448
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
1449
+ "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
1450
+ "license": "MIT",
1451
+ "engines": {
1452
+ "node": ">= 4"
1453
+ }
1454
+ },
1455
+ "node_modules/inherits": {
1456
+ "version": "2.0.4",
1457
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1458
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1459
+ "license": "ISC"
1460
+ },
1461
+ "node_modules/ip-address": {
1462
+ "version": "10.2.0",
1463
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz",
1464
+ "integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==",
1465
+ "license": "MIT",
1466
+ "engines": {
1467
+ "node": ">= 12"
1468
+ }
1469
+ },
1470
+ "node_modules/ipaddr.js": {
1471
+ "version": "1.9.1",
1472
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1473
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
1474
+ "license": "MIT",
1475
+ "engines": {
1476
+ "node": ">= 0.10"
1477
+ }
1478
+ },
1479
+ "node_modules/is-extendable": {
1480
+ "version": "0.1.1",
1481
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
1482
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
1483
+ "license": "MIT",
1484
+ "engines": {
1485
+ "node": ">=0.10.0"
1486
+ }
1487
+ },
1488
+ "node_modules/is-network-error": {
1489
+ "version": "1.3.2",
1490
+ "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz",
1491
+ "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==",
1492
+ "license": "MIT",
1493
+ "engines": {
1494
+ "node": ">=16"
1495
+ },
1496
+ "funding": {
1497
+ "url": "https://github.com/sponsors/sindresorhus"
1498
+ }
1499
+ },
1500
+ "node_modules/is-plain-obj": {
1501
+ "version": "4.1.0",
1502
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
1503
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
1504
+ "license": "MIT",
1505
+ "engines": {
1506
+ "node": ">=12"
1507
+ },
1508
+ "funding": {
1509
+ "url": "https://github.com/sponsors/sindresorhus"
1510
+ }
1511
+ },
1512
+ "node_modules/is-promise": {
1513
+ "version": "4.0.0",
1514
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
1515
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
1516
+ "license": "MIT"
1517
+ },
1518
+ "node_modules/is-stream": {
1519
+ "version": "4.0.1",
1520
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz",
1521
+ "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==",
1522
+ "license": "MIT",
1523
+ "engines": {
1524
+ "node": ">=18"
1525
+ },
1526
+ "funding": {
1527
+ "url": "https://github.com/sponsors/sindresorhus"
1528
+ }
1529
+ },
1530
+ "node_modules/is-unicode-supported": {
1531
+ "version": "2.1.0",
1532
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
1533
+ "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
1534
+ "license": "MIT",
1535
+ "engines": {
1536
+ "node": ">=18"
1537
+ },
1538
+ "funding": {
1539
+ "url": "https://github.com/sponsors/sindresorhus"
1540
+ }
1541
+ },
1542
+ "node_modules/isexe": {
1543
+ "version": "2.0.0",
1544
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
1545
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
1546
+ "license": "ISC"
1547
+ },
1548
+ "node_modules/jose": {
1549
+ "version": "6.2.3",
1550
+ "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz",
1551
+ "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==",
1552
+ "license": "MIT",
1553
+ "funding": {
1554
+ "url": "https://github.com/sponsors/panva"
1555
+ }
1556
+ },
1557
+ "node_modules/jpeg-js": {
1558
+ "version": "0.4.4",
1559
+ "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz",
1560
+ "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==",
1561
+ "license": "BSD-3-Clause"
1562
+ },
1563
+ "node_modules/js-yaml": {
1564
+ "version": "3.15.0",
1565
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.15.0.tgz",
1566
+ "integrity": "sha512-ttBQIIQPDeLjpPOohtUdXuXUVoA2uIB6fEH9HyJ7234s5mBJ5wTx20njxplLZQgLaOfpmPQA7X2t5AX6tIPbog==",
1567
+ "license": "MIT",
1568
+ "dependencies": {
1569
+ "argparse": "^1.0.7",
1570
+ "esprima": "^4.0.0"
1571
+ },
1572
+ "bin": {
1573
+ "js-yaml": "bin/js-yaml.js"
1574
+ }
1575
+ },
1576
+ "node_modules/json-schema": {
1577
+ "version": "0.4.0",
1578
+ "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
1579
+ "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
1580
+ "license": "(AFL-2.1 OR BSD-3-Clause)"
1581
+ },
1582
+ "node_modules/json-schema-to-zod": {
1583
+ "version": "2.8.1",
1584
+ "resolved": "https://registry.npmjs.org/json-schema-to-zod/-/json-schema-to-zod-2.8.1.tgz",
1585
+ "integrity": "sha512-fRr1mHgZ7hboLKBUdR428gd9dIHUFGivUqOeiDcSmyXkNZCtB1uGaZLvsjZ4GaN5pwBIs+TGIOf6s+Rp5/R/zA==",
1586
+ "license": "ISC",
1587
+ "bin": {
1588
+ "json-schema-to-zod": "dist/cjs/cli.js"
1589
+ }
1590
+ },
1591
+ "node_modules/json-schema-traverse": {
1592
+ "version": "1.0.0",
1593
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
1594
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
1595
+ "license": "MIT"
1596
+ },
1597
+ "node_modules/json-schema-typed": {
1598
+ "version": "8.0.2",
1599
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
1600
+ "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
1601
+ "license": "BSD-2-Clause"
1602
+ },
1603
+ "node_modules/kind-of": {
1604
+ "version": "6.0.3",
1605
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
1606
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
1607
+ "license": "MIT",
1608
+ "engines": {
1609
+ "node": ">=0.10.0"
1610
+ }
1611
+ },
1612
+ "node_modules/longest-streak": {
1613
+ "version": "3.1.0",
1614
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
1615
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
1616
+ "license": "MIT",
1617
+ "funding": {
1618
+ "type": "github",
1619
+ "url": "https://github.com/sponsors/wooorm"
1620
+ }
1621
+ },
1622
+ "node_modules/lru-cache": {
1623
+ "version": "11.5.1",
1624
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
1625
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
1626
+ "license": "BlueOak-1.0.0",
1627
+ "engines": {
1628
+ "node": "20 || >=22"
1629
+ }
1630
+ },
1631
+ "node_modules/markdown-table": {
1632
+ "version": "3.0.4",
1633
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
1634
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
1635
+ "license": "MIT",
1636
+ "funding": {
1637
+ "type": "github",
1638
+ "url": "https://github.com/sponsors/wooorm"
1639
+ }
1640
+ },
1641
+ "node_modules/math-intrinsics": {
1642
+ "version": "1.1.0",
1643
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1644
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1645
+ "license": "MIT",
1646
+ "engines": {
1647
+ "node": ">= 0.4"
1648
+ }
1649
+ },
1650
+ "node_modules/mdast-util-find-and-replace": {
1651
+ "version": "3.0.2",
1652
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
1653
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
1654
+ "license": "MIT",
1655
+ "dependencies": {
1656
+ "@types/mdast": "^4.0.0",
1657
+ "escape-string-regexp": "^5.0.0",
1658
+ "unist-util-is": "^6.0.0",
1659
+ "unist-util-visit-parents": "^6.0.0"
1660
+ },
1661
+ "funding": {
1662
+ "type": "opencollective",
1663
+ "url": "https://opencollective.com/unified"
1664
+ }
1665
+ },
1666
+ "node_modules/mdast-util-from-markdown": {
1667
+ "version": "2.0.3",
1668
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
1669
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
1670
+ "license": "MIT",
1671
+ "dependencies": {
1672
+ "@types/mdast": "^4.0.0",
1673
+ "@types/unist": "^3.0.0",
1674
+ "decode-named-character-reference": "^1.0.0",
1675
+ "devlop": "^1.0.0",
1676
+ "mdast-util-to-string": "^4.0.0",
1677
+ "micromark": "^4.0.0",
1678
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
1679
+ "micromark-util-decode-string": "^2.0.0",
1680
+ "micromark-util-normalize-identifier": "^2.0.0",
1681
+ "micromark-util-symbol": "^2.0.0",
1682
+ "micromark-util-types": "^2.0.0",
1683
+ "unist-util-stringify-position": "^4.0.0"
1684
+ },
1685
+ "funding": {
1686
+ "type": "opencollective",
1687
+ "url": "https://opencollective.com/unified"
1688
+ }
1689
+ },
1690
+ "node_modules/mdast-util-gfm": {
1691
+ "version": "3.1.0",
1692
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
1693
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
1694
+ "license": "MIT",
1695
+ "dependencies": {
1696
+ "mdast-util-from-markdown": "^2.0.0",
1697
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
1698
+ "mdast-util-gfm-footnote": "^2.0.0",
1699
+ "mdast-util-gfm-strikethrough": "^2.0.0",
1700
+ "mdast-util-gfm-table": "^2.0.0",
1701
+ "mdast-util-gfm-task-list-item": "^2.0.0",
1702
+ "mdast-util-to-markdown": "^2.0.0"
1703
+ },
1704
+ "funding": {
1705
+ "type": "opencollective",
1706
+ "url": "https://opencollective.com/unified"
1707
+ }
1708
+ },
1709
+ "node_modules/mdast-util-gfm-autolink-literal": {
1710
+ "version": "2.0.1",
1711
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
1712
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
1713
+ "license": "MIT",
1714
+ "dependencies": {
1715
+ "@types/mdast": "^4.0.0",
1716
+ "ccount": "^2.0.0",
1717
+ "devlop": "^1.0.0",
1718
+ "mdast-util-find-and-replace": "^3.0.0",
1719
+ "micromark-util-character": "^2.0.0"
1720
+ },
1721
+ "funding": {
1722
+ "type": "opencollective",
1723
+ "url": "https://opencollective.com/unified"
1724
+ }
1725
+ },
1726
+ "node_modules/mdast-util-gfm-footnote": {
1727
+ "version": "2.1.0",
1728
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
1729
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
1730
+ "license": "MIT",
1731
+ "dependencies": {
1732
+ "@types/mdast": "^4.0.0",
1733
+ "devlop": "^1.1.0",
1734
+ "mdast-util-from-markdown": "^2.0.0",
1735
+ "mdast-util-to-markdown": "^2.0.0",
1736
+ "micromark-util-normalize-identifier": "^2.0.0"
1737
+ },
1738
+ "funding": {
1739
+ "type": "opencollective",
1740
+ "url": "https://opencollective.com/unified"
1741
+ }
1742
+ },
1743
+ "node_modules/mdast-util-gfm-strikethrough": {
1744
+ "version": "2.0.0",
1745
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
1746
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
1747
+ "license": "MIT",
1748
+ "dependencies": {
1749
+ "@types/mdast": "^4.0.0",
1750
+ "mdast-util-from-markdown": "^2.0.0",
1751
+ "mdast-util-to-markdown": "^2.0.0"
1752
+ },
1753
+ "funding": {
1754
+ "type": "opencollective",
1755
+ "url": "https://opencollective.com/unified"
1756
+ }
1757
+ },
1758
+ "node_modules/mdast-util-gfm-table": {
1759
+ "version": "2.0.0",
1760
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
1761
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
1762
+ "license": "MIT",
1763
+ "dependencies": {
1764
+ "@types/mdast": "^4.0.0",
1765
+ "devlop": "^1.0.0",
1766
+ "markdown-table": "^3.0.0",
1767
+ "mdast-util-from-markdown": "^2.0.0",
1768
+ "mdast-util-to-markdown": "^2.0.0"
1769
+ },
1770
+ "funding": {
1771
+ "type": "opencollective",
1772
+ "url": "https://opencollective.com/unified"
1773
+ }
1774
+ },
1775
+ "node_modules/mdast-util-gfm-task-list-item": {
1776
+ "version": "2.0.0",
1777
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
1778
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
1779
+ "license": "MIT",
1780
+ "dependencies": {
1781
+ "@types/mdast": "^4.0.0",
1782
+ "devlop": "^1.0.0",
1783
+ "mdast-util-from-markdown": "^2.0.0",
1784
+ "mdast-util-to-markdown": "^2.0.0"
1785
+ },
1786
+ "funding": {
1787
+ "type": "opencollective",
1788
+ "url": "https://opencollective.com/unified"
1789
+ }
1790
+ },
1791
+ "node_modules/mdast-util-phrasing": {
1792
+ "version": "4.1.0",
1793
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
1794
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
1795
+ "license": "MIT",
1796
+ "dependencies": {
1797
+ "@types/mdast": "^4.0.0",
1798
+ "unist-util-is": "^6.0.0"
1799
+ },
1800
+ "funding": {
1801
+ "type": "opencollective",
1802
+ "url": "https://opencollective.com/unified"
1803
+ }
1804
+ },
1805
+ "node_modules/mdast-util-to-markdown": {
1806
+ "version": "2.1.2",
1807
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
1808
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
1809
+ "license": "MIT",
1810
+ "dependencies": {
1811
+ "@types/mdast": "^4.0.0",
1812
+ "@types/unist": "^3.0.0",
1813
+ "longest-streak": "^3.0.0",
1814
+ "mdast-util-phrasing": "^4.0.0",
1815
+ "mdast-util-to-string": "^4.0.0",
1816
+ "micromark-util-classify-character": "^2.0.0",
1817
+ "micromark-util-decode-string": "^2.0.0",
1818
+ "unist-util-visit": "^5.0.0",
1819
+ "zwitch": "^2.0.0"
1820
+ },
1821
+ "funding": {
1822
+ "type": "opencollective",
1823
+ "url": "https://opencollective.com/unified"
1824
+ }
1825
+ },
1826
+ "node_modules/mdast-util-to-string": {
1827
+ "version": "4.0.0",
1828
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
1829
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
1830
+ "license": "MIT",
1831
+ "dependencies": {
1832
+ "@types/mdast": "^4.0.0"
1833
+ },
1834
+ "funding": {
1835
+ "type": "opencollective",
1836
+ "url": "https://opencollective.com/unified"
1837
+ }
1838
+ },
1839
+ "node_modules/media-typer": {
1840
+ "version": "1.1.0",
1841
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
1842
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
1843
+ "license": "MIT",
1844
+ "engines": {
1845
+ "node": ">= 0.8"
1846
+ }
1847
+ },
1848
+ "node_modules/merge-descriptors": {
1849
+ "version": "2.0.0",
1850
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
1851
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
1852
+ "license": "MIT",
1853
+ "engines": {
1854
+ "node": ">=18"
1855
+ },
1856
+ "funding": {
1857
+ "url": "https://github.com/sponsors/sindresorhus"
1858
+ }
1859
+ },
1860
+ "node_modules/micromark": {
1861
+ "version": "4.0.2",
1862
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
1863
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
1864
+ "funding": [
1865
+ {
1866
+ "type": "GitHub Sponsors",
1867
+ "url": "https://github.com/sponsors/unifiedjs"
1868
+ },
1869
+ {
1870
+ "type": "OpenCollective",
1871
+ "url": "https://opencollective.com/unified"
1872
+ }
1873
+ ],
1874
+ "license": "MIT",
1875
+ "dependencies": {
1876
+ "@types/debug": "^4.0.0",
1877
+ "debug": "^4.0.0",
1878
+ "decode-named-character-reference": "^1.0.0",
1879
+ "devlop": "^1.0.0",
1880
+ "micromark-core-commonmark": "^2.0.0",
1881
+ "micromark-factory-space": "^2.0.0",
1882
+ "micromark-util-character": "^2.0.0",
1883
+ "micromark-util-chunked": "^2.0.0",
1884
+ "micromark-util-combine-extensions": "^2.0.0",
1885
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
1886
+ "micromark-util-encode": "^2.0.0",
1887
+ "micromark-util-normalize-identifier": "^2.0.0",
1888
+ "micromark-util-resolve-all": "^2.0.0",
1889
+ "micromark-util-sanitize-uri": "^2.0.0",
1890
+ "micromark-util-subtokenize": "^2.0.0",
1891
+ "micromark-util-symbol": "^2.0.0",
1892
+ "micromark-util-types": "^2.0.0"
1893
+ }
1894
+ },
1895
+ "node_modules/micromark-core-commonmark": {
1896
+ "version": "2.0.3",
1897
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
1898
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
1899
+ "funding": [
1900
+ {
1901
+ "type": "GitHub Sponsors",
1902
+ "url": "https://github.com/sponsors/unifiedjs"
1903
+ },
1904
+ {
1905
+ "type": "OpenCollective",
1906
+ "url": "https://opencollective.com/unified"
1907
+ }
1908
+ ],
1909
+ "license": "MIT",
1910
+ "dependencies": {
1911
+ "decode-named-character-reference": "^1.0.0",
1912
+ "devlop": "^1.0.0",
1913
+ "micromark-factory-destination": "^2.0.0",
1914
+ "micromark-factory-label": "^2.0.0",
1915
+ "micromark-factory-space": "^2.0.0",
1916
+ "micromark-factory-title": "^2.0.0",
1917
+ "micromark-factory-whitespace": "^2.0.0",
1918
+ "micromark-util-character": "^2.0.0",
1919
+ "micromark-util-chunked": "^2.0.0",
1920
+ "micromark-util-classify-character": "^2.0.0",
1921
+ "micromark-util-html-tag-name": "^2.0.0",
1922
+ "micromark-util-normalize-identifier": "^2.0.0",
1923
+ "micromark-util-resolve-all": "^2.0.0",
1924
+ "micromark-util-subtokenize": "^2.0.0",
1925
+ "micromark-util-symbol": "^2.0.0",
1926
+ "micromark-util-types": "^2.0.0"
1927
+ }
1928
+ },
1929
+ "node_modules/micromark-extension-gfm": {
1930
+ "version": "3.0.0",
1931
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
1932
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
1933
+ "license": "MIT",
1934
+ "dependencies": {
1935
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
1936
+ "micromark-extension-gfm-footnote": "^2.0.0",
1937
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
1938
+ "micromark-extension-gfm-table": "^2.0.0",
1939
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
1940
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
1941
+ "micromark-util-combine-extensions": "^2.0.0",
1942
+ "micromark-util-types": "^2.0.0"
1943
+ },
1944
+ "funding": {
1945
+ "type": "opencollective",
1946
+ "url": "https://opencollective.com/unified"
1947
+ }
1948
+ },
1949
+ "node_modules/micromark-extension-gfm-autolink-literal": {
1950
+ "version": "2.1.0",
1951
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
1952
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
1953
+ "license": "MIT",
1954
+ "dependencies": {
1955
+ "micromark-util-character": "^2.0.0",
1956
+ "micromark-util-sanitize-uri": "^2.0.0",
1957
+ "micromark-util-symbol": "^2.0.0",
1958
+ "micromark-util-types": "^2.0.0"
1959
+ },
1960
+ "funding": {
1961
+ "type": "opencollective",
1962
+ "url": "https://opencollective.com/unified"
1963
+ }
1964
+ },
1965
+ "node_modules/micromark-extension-gfm-footnote": {
1966
+ "version": "2.1.0",
1967
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
1968
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
1969
+ "license": "MIT",
1970
+ "dependencies": {
1971
+ "devlop": "^1.0.0",
1972
+ "micromark-core-commonmark": "^2.0.0",
1973
+ "micromark-factory-space": "^2.0.0",
1974
+ "micromark-util-character": "^2.0.0",
1975
+ "micromark-util-normalize-identifier": "^2.0.0",
1976
+ "micromark-util-sanitize-uri": "^2.0.0",
1977
+ "micromark-util-symbol": "^2.0.0",
1978
+ "micromark-util-types": "^2.0.0"
1979
+ },
1980
+ "funding": {
1981
+ "type": "opencollective",
1982
+ "url": "https://opencollective.com/unified"
1983
+ }
1984
+ },
1985
+ "node_modules/micromark-extension-gfm-strikethrough": {
1986
+ "version": "2.1.0",
1987
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
1988
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
1989
+ "license": "MIT",
1990
+ "dependencies": {
1991
+ "devlop": "^1.0.0",
1992
+ "micromark-util-chunked": "^2.0.0",
1993
+ "micromark-util-classify-character": "^2.0.0",
1994
+ "micromark-util-resolve-all": "^2.0.0",
1995
+ "micromark-util-symbol": "^2.0.0",
1996
+ "micromark-util-types": "^2.0.0"
1997
+ },
1998
+ "funding": {
1999
+ "type": "opencollective",
2000
+ "url": "https://opencollective.com/unified"
2001
+ }
2002
+ },
2003
+ "node_modules/micromark-extension-gfm-table": {
2004
+ "version": "2.1.1",
2005
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
2006
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
2007
+ "license": "MIT",
2008
+ "dependencies": {
2009
+ "devlop": "^1.0.0",
2010
+ "micromark-factory-space": "^2.0.0",
2011
+ "micromark-util-character": "^2.0.0",
2012
+ "micromark-util-symbol": "^2.0.0",
2013
+ "micromark-util-types": "^2.0.0"
2014
+ },
2015
+ "funding": {
2016
+ "type": "opencollective",
2017
+ "url": "https://opencollective.com/unified"
2018
+ }
2019
+ },
2020
+ "node_modules/micromark-extension-gfm-tagfilter": {
2021
+ "version": "2.0.0",
2022
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
2023
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
2024
+ "license": "MIT",
2025
+ "dependencies": {
2026
+ "micromark-util-types": "^2.0.0"
2027
+ },
2028
+ "funding": {
2029
+ "type": "opencollective",
2030
+ "url": "https://opencollective.com/unified"
2031
+ }
2032
+ },
2033
+ "node_modules/micromark-extension-gfm-task-list-item": {
2034
+ "version": "2.1.0",
2035
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
2036
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
2037
+ "license": "MIT",
2038
+ "dependencies": {
2039
+ "devlop": "^1.0.0",
2040
+ "micromark-factory-space": "^2.0.0",
2041
+ "micromark-util-character": "^2.0.0",
2042
+ "micromark-util-symbol": "^2.0.0",
2043
+ "micromark-util-types": "^2.0.0"
2044
+ },
2045
+ "funding": {
2046
+ "type": "opencollective",
2047
+ "url": "https://opencollective.com/unified"
2048
+ }
2049
+ },
2050
+ "node_modules/micromark-factory-destination": {
2051
+ "version": "2.0.1",
2052
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
2053
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
2054
+ "funding": [
2055
+ {
2056
+ "type": "GitHub Sponsors",
2057
+ "url": "https://github.com/sponsors/unifiedjs"
2058
+ },
2059
+ {
2060
+ "type": "OpenCollective",
2061
+ "url": "https://opencollective.com/unified"
2062
+ }
2063
+ ],
2064
+ "license": "MIT",
2065
+ "dependencies": {
2066
+ "micromark-util-character": "^2.0.0",
2067
+ "micromark-util-symbol": "^2.0.0",
2068
+ "micromark-util-types": "^2.0.0"
2069
+ }
2070
+ },
2071
+ "node_modules/micromark-factory-label": {
2072
+ "version": "2.0.1",
2073
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
2074
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
2075
+ "funding": [
2076
+ {
2077
+ "type": "GitHub Sponsors",
2078
+ "url": "https://github.com/sponsors/unifiedjs"
2079
+ },
2080
+ {
2081
+ "type": "OpenCollective",
2082
+ "url": "https://opencollective.com/unified"
2083
+ }
2084
+ ],
2085
+ "license": "MIT",
2086
+ "dependencies": {
2087
+ "devlop": "^1.0.0",
2088
+ "micromark-util-character": "^2.0.0",
2089
+ "micromark-util-symbol": "^2.0.0",
2090
+ "micromark-util-types": "^2.0.0"
2091
+ }
2092
+ },
2093
+ "node_modules/micromark-factory-space": {
2094
+ "version": "2.0.1",
2095
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
2096
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
2097
+ "funding": [
2098
+ {
2099
+ "type": "GitHub Sponsors",
2100
+ "url": "https://github.com/sponsors/unifiedjs"
2101
+ },
2102
+ {
2103
+ "type": "OpenCollective",
2104
+ "url": "https://opencollective.com/unified"
2105
+ }
2106
+ ],
2107
+ "license": "MIT",
2108
+ "dependencies": {
2109
+ "micromark-util-character": "^2.0.0",
2110
+ "micromark-util-types": "^2.0.0"
2111
+ }
2112
+ },
2113
+ "node_modules/micromark-factory-title": {
2114
+ "version": "2.0.1",
2115
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
2116
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
2117
+ "funding": [
2118
+ {
2119
+ "type": "GitHub Sponsors",
2120
+ "url": "https://github.com/sponsors/unifiedjs"
2121
+ },
2122
+ {
2123
+ "type": "OpenCollective",
2124
+ "url": "https://opencollective.com/unified"
2125
+ }
2126
+ ],
2127
+ "license": "MIT",
2128
+ "dependencies": {
2129
+ "micromark-factory-space": "^2.0.0",
2130
+ "micromark-util-character": "^2.0.0",
2131
+ "micromark-util-symbol": "^2.0.0",
2132
+ "micromark-util-types": "^2.0.0"
2133
+ }
2134
+ },
2135
+ "node_modules/micromark-factory-whitespace": {
2136
+ "version": "2.0.1",
2137
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
2138
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
2139
+ "funding": [
2140
+ {
2141
+ "type": "GitHub Sponsors",
2142
+ "url": "https://github.com/sponsors/unifiedjs"
2143
+ },
2144
+ {
2145
+ "type": "OpenCollective",
2146
+ "url": "https://opencollective.com/unified"
2147
+ }
2148
+ ],
2149
+ "license": "MIT",
2150
+ "dependencies": {
2151
+ "micromark-factory-space": "^2.0.0",
2152
+ "micromark-util-character": "^2.0.0",
2153
+ "micromark-util-symbol": "^2.0.0",
2154
+ "micromark-util-types": "^2.0.0"
2155
+ }
2156
+ },
2157
+ "node_modules/micromark-util-character": {
2158
+ "version": "2.1.1",
2159
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
2160
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
2161
+ "funding": [
2162
+ {
2163
+ "type": "GitHub Sponsors",
2164
+ "url": "https://github.com/sponsors/unifiedjs"
2165
+ },
2166
+ {
2167
+ "type": "OpenCollective",
2168
+ "url": "https://opencollective.com/unified"
2169
+ }
2170
+ ],
2171
+ "license": "MIT",
2172
+ "dependencies": {
2173
+ "micromark-util-symbol": "^2.0.0",
2174
+ "micromark-util-types": "^2.0.0"
2175
+ }
2176
+ },
2177
+ "node_modules/micromark-util-chunked": {
2178
+ "version": "2.0.1",
2179
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
2180
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
2181
+ "funding": [
2182
+ {
2183
+ "type": "GitHub Sponsors",
2184
+ "url": "https://github.com/sponsors/unifiedjs"
2185
+ },
2186
+ {
2187
+ "type": "OpenCollective",
2188
+ "url": "https://opencollective.com/unified"
2189
+ }
2190
+ ],
2191
+ "license": "MIT",
2192
+ "dependencies": {
2193
+ "micromark-util-symbol": "^2.0.0"
2194
+ }
2195
+ },
2196
+ "node_modules/micromark-util-classify-character": {
2197
+ "version": "2.0.1",
2198
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
2199
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
2200
+ "funding": [
2201
+ {
2202
+ "type": "GitHub Sponsors",
2203
+ "url": "https://github.com/sponsors/unifiedjs"
2204
+ },
2205
+ {
2206
+ "type": "OpenCollective",
2207
+ "url": "https://opencollective.com/unified"
2208
+ }
2209
+ ],
2210
+ "license": "MIT",
2211
+ "dependencies": {
2212
+ "micromark-util-character": "^2.0.0",
2213
+ "micromark-util-symbol": "^2.0.0",
2214
+ "micromark-util-types": "^2.0.0"
2215
+ }
2216
+ },
2217
+ "node_modules/micromark-util-combine-extensions": {
2218
+ "version": "2.0.1",
2219
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
2220
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
2221
+ "funding": [
2222
+ {
2223
+ "type": "GitHub Sponsors",
2224
+ "url": "https://github.com/sponsors/unifiedjs"
2225
+ },
2226
+ {
2227
+ "type": "OpenCollective",
2228
+ "url": "https://opencollective.com/unified"
2229
+ }
2230
+ ],
2231
+ "license": "MIT",
2232
+ "dependencies": {
2233
+ "micromark-util-chunked": "^2.0.0",
2234
+ "micromark-util-types": "^2.0.0"
2235
+ }
2236
+ },
2237
+ "node_modules/micromark-util-decode-numeric-character-reference": {
2238
+ "version": "2.0.2",
2239
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
2240
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
2241
+ "funding": [
2242
+ {
2243
+ "type": "GitHub Sponsors",
2244
+ "url": "https://github.com/sponsors/unifiedjs"
2245
+ },
2246
+ {
2247
+ "type": "OpenCollective",
2248
+ "url": "https://opencollective.com/unified"
2249
+ }
2250
+ ],
2251
+ "license": "MIT",
2252
+ "dependencies": {
2253
+ "micromark-util-symbol": "^2.0.0"
2254
+ }
2255
+ },
2256
+ "node_modules/micromark-util-decode-string": {
2257
+ "version": "2.0.1",
2258
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
2259
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
2260
+ "funding": [
2261
+ {
2262
+ "type": "GitHub Sponsors",
2263
+ "url": "https://github.com/sponsors/unifiedjs"
2264
+ },
2265
+ {
2266
+ "type": "OpenCollective",
2267
+ "url": "https://opencollective.com/unified"
2268
+ }
2269
+ ],
2270
+ "license": "MIT",
2271
+ "dependencies": {
2272
+ "decode-named-character-reference": "^1.0.0",
2273
+ "micromark-util-character": "^2.0.0",
2274
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2275
+ "micromark-util-symbol": "^2.0.0"
2276
+ }
2277
+ },
2278
+ "node_modules/micromark-util-encode": {
2279
+ "version": "2.0.1",
2280
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
2281
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
2282
+ "funding": [
2283
+ {
2284
+ "type": "GitHub Sponsors",
2285
+ "url": "https://github.com/sponsors/unifiedjs"
2286
+ },
2287
+ {
2288
+ "type": "OpenCollective",
2289
+ "url": "https://opencollective.com/unified"
2290
+ }
2291
+ ],
2292
+ "license": "MIT"
2293
+ },
2294
+ "node_modules/micromark-util-html-tag-name": {
2295
+ "version": "2.0.1",
2296
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
2297
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
2298
+ "funding": [
2299
+ {
2300
+ "type": "GitHub Sponsors",
2301
+ "url": "https://github.com/sponsors/unifiedjs"
2302
+ },
2303
+ {
2304
+ "type": "OpenCollective",
2305
+ "url": "https://opencollective.com/unified"
2306
+ }
2307
+ ],
2308
+ "license": "MIT"
2309
+ },
2310
+ "node_modules/micromark-util-normalize-identifier": {
2311
+ "version": "2.0.1",
2312
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
2313
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
2314
+ "funding": [
2315
+ {
2316
+ "type": "GitHub Sponsors",
2317
+ "url": "https://github.com/sponsors/unifiedjs"
2318
+ },
2319
+ {
2320
+ "type": "OpenCollective",
2321
+ "url": "https://opencollective.com/unified"
2322
+ }
2323
+ ],
2324
+ "license": "MIT",
2325
+ "dependencies": {
2326
+ "micromark-util-symbol": "^2.0.0"
2327
+ }
2328
+ },
2329
+ "node_modules/micromark-util-resolve-all": {
2330
+ "version": "2.0.1",
2331
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
2332
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
2333
+ "funding": [
2334
+ {
2335
+ "type": "GitHub Sponsors",
2336
+ "url": "https://github.com/sponsors/unifiedjs"
2337
+ },
2338
+ {
2339
+ "type": "OpenCollective",
2340
+ "url": "https://opencollective.com/unified"
2341
+ }
2342
+ ],
2343
+ "license": "MIT",
2344
+ "dependencies": {
2345
+ "micromark-util-types": "^2.0.0"
2346
+ }
2347
+ },
2348
+ "node_modules/micromark-util-sanitize-uri": {
2349
+ "version": "2.0.1",
2350
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
2351
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
2352
+ "funding": [
2353
+ {
2354
+ "type": "GitHub Sponsors",
2355
+ "url": "https://github.com/sponsors/unifiedjs"
2356
+ },
2357
+ {
2358
+ "type": "OpenCollective",
2359
+ "url": "https://opencollective.com/unified"
2360
+ }
2361
+ ],
2362
+ "license": "MIT",
2363
+ "dependencies": {
2364
+ "micromark-util-character": "^2.0.0",
2365
+ "micromark-util-encode": "^2.0.0",
2366
+ "micromark-util-symbol": "^2.0.0"
2367
+ }
2368
+ },
2369
+ "node_modules/micromark-util-subtokenize": {
2370
+ "version": "2.1.0",
2371
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
2372
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
2373
+ "funding": [
2374
+ {
2375
+ "type": "GitHub Sponsors",
2376
+ "url": "https://github.com/sponsors/unifiedjs"
2377
+ },
2378
+ {
2379
+ "type": "OpenCollective",
2380
+ "url": "https://opencollective.com/unified"
2381
+ }
2382
+ ],
2383
+ "license": "MIT",
2384
+ "dependencies": {
2385
+ "devlop": "^1.0.0",
2386
+ "micromark-util-chunked": "^2.0.0",
2387
+ "micromark-util-symbol": "^2.0.0",
2388
+ "micromark-util-types": "^2.0.0"
2389
+ }
2390
+ },
2391
+ "node_modules/micromark-util-symbol": {
2392
+ "version": "2.0.1",
2393
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
2394
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
2395
+ "funding": [
2396
+ {
2397
+ "type": "GitHub Sponsors",
2398
+ "url": "https://github.com/sponsors/unifiedjs"
2399
+ },
2400
+ {
2401
+ "type": "OpenCollective",
2402
+ "url": "https://opencollective.com/unified"
2403
+ }
2404
+ ],
2405
+ "license": "MIT"
2406
+ },
2407
+ "node_modules/micromark-util-types": {
2408
+ "version": "2.0.2",
2409
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
2410
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
2411
+ "funding": [
2412
+ {
2413
+ "type": "GitHub Sponsors",
2414
+ "url": "https://github.com/sponsors/unifiedjs"
2415
+ },
2416
+ {
2417
+ "type": "OpenCollective",
2418
+ "url": "https://opencollective.com/unified"
2419
+ }
2420
+ ],
2421
+ "license": "MIT"
2422
+ },
2423
+ "node_modules/mime-db": {
2424
+ "version": "1.54.0",
2425
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
2426
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
2427
+ "license": "MIT",
2428
+ "engines": {
2429
+ "node": ">= 0.6"
2430
+ }
2431
+ },
2432
+ "node_modules/mime-types": {
2433
+ "version": "3.0.2",
2434
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
2435
+ "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
2436
+ "license": "MIT",
2437
+ "dependencies": {
2438
+ "mime-db": "^1.54.0"
2439
+ },
2440
+ "engines": {
2441
+ "node": ">=18"
2442
+ },
2443
+ "funding": {
2444
+ "type": "opencollective",
2445
+ "url": "https://opencollective.com/express"
2446
+ }
2447
+ },
2448
+ "node_modules/ms": {
2449
+ "version": "2.1.3",
2450
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2451
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2452
+ "license": "MIT"
2453
+ },
2454
+ "node_modules/nanoid": {
2455
+ "version": "3.3.15",
2456
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz",
2457
+ "integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==",
2458
+ "funding": [
2459
+ {
2460
+ "type": "github",
2461
+ "url": "https://github.com/sponsors/ai"
2462
+ }
2463
+ ],
2464
+ "license": "MIT",
2465
+ "bin": {
2466
+ "nanoid": "bin/nanoid.cjs"
2467
+ },
2468
+ "engines": {
2469
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2470
+ }
2471
+ },
2472
+ "node_modules/negotiator": {
2473
+ "version": "1.0.0",
2474
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
2475
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
2476
+ "license": "MIT",
2477
+ "engines": {
2478
+ "node": ">= 0.6"
2479
+ }
2480
+ },
2481
+ "node_modules/npm-run-path": {
2482
+ "version": "6.0.0",
2483
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
2484
+ "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
2485
+ "license": "MIT",
2486
+ "dependencies": {
2487
+ "path-key": "^4.0.0",
2488
+ "unicorn-magic": "^0.3.0"
2489
+ },
2490
+ "engines": {
2491
+ "node": ">=18"
2492
+ },
2493
+ "funding": {
2494
+ "url": "https://github.com/sponsors/sindresorhus"
2495
+ }
2496
+ },
2497
+ "node_modules/npm-run-path/node_modules/path-key": {
2498
+ "version": "4.0.0",
2499
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
2500
+ "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
2501
+ "license": "MIT",
2502
+ "engines": {
2503
+ "node": ">=12"
2504
+ },
2505
+ "funding": {
2506
+ "url": "https://github.com/sponsors/sindresorhus"
2507
+ }
2508
+ },
2509
+ "node_modules/object-assign": {
2510
+ "version": "4.1.1",
2511
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
2512
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
2513
+ "license": "MIT",
2514
+ "engines": {
2515
+ "node": ">=0.10.0"
2516
+ }
2517
+ },
2518
+ "node_modules/object-inspect": {
2519
+ "version": "1.13.4",
2520
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
2521
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
2522
+ "license": "MIT",
2523
+ "engines": {
2524
+ "node": ">= 0.4"
2525
+ },
2526
+ "funding": {
2527
+ "url": "https://github.com/sponsors/ljharb"
2528
+ }
2529
+ },
2530
+ "node_modules/on-finished": {
2531
+ "version": "2.4.1",
2532
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
2533
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
2534
+ "license": "MIT",
2535
+ "dependencies": {
2536
+ "ee-first": "1.1.1"
2537
+ },
2538
+ "engines": {
2539
+ "node": ">= 0.8"
2540
+ }
2541
+ },
2542
+ "node_modules/once": {
2543
+ "version": "1.4.0",
2544
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2545
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2546
+ "license": "ISC",
2547
+ "dependencies": {
2548
+ "wrappy": "1"
2549
+ }
2550
+ },
2551
+ "node_modules/p-map": {
2552
+ "version": "7.0.5",
2553
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.5.tgz",
2554
+ "integrity": "sha512-e8vJF4XdVkzqqSHguEMz41mQO1wKwxKm5ENrUJQUu9kLDCtn83cxbyHZcszr4QC5zEA7WffRRC4gsTecC7J9oA==",
2555
+ "license": "MIT",
2556
+ "engines": {
2557
+ "node": ">=18"
2558
+ },
2559
+ "funding": {
2560
+ "url": "https://github.com/sponsors/sindresorhus"
2561
+ }
2562
+ },
2563
+ "node_modules/p-retry": {
2564
+ "version": "7.1.1",
2565
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-7.1.1.tgz",
2566
+ "integrity": "sha512-J5ApzjyRkkf601HpEeykoiCvzHQjWxPAHhyjFcEUP2SWq0+35NKh8TLhpLw+Dkq5TZBFvUM6UigdE9hIVYTl5w==",
2567
+ "license": "MIT",
2568
+ "dependencies": {
2569
+ "is-network-error": "^1.1.0"
2570
+ },
2571
+ "engines": {
2572
+ "node": ">=20"
2573
+ },
2574
+ "funding": {
2575
+ "url": "https://github.com/sponsors/sindresorhus"
2576
+ }
2577
+ },
2578
+ "node_modules/parse-ms": {
2579
+ "version": "4.0.0",
2580
+ "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz",
2581
+ "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==",
2582
+ "license": "MIT",
2583
+ "engines": {
2584
+ "node": ">=18"
2585
+ },
2586
+ "funding": {
2587
+ "url": "https://github.com/sponsors/sindresorhus"
2588
+ }
2589
+ },
2590
+ "node_modules/parseurl": {
2591
+ "version": "1.3.3",
2592
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
2593
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
2594
+ "license": "MIT",
2595
+ "engines": {
2596
+ "node": ">= 0.8"
2597
+ }
2598
+ },
2599
+ "node_modules/path-key": {
2600
+ "version": "3.1.1",
2601
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2602
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2603
+ "license": "MIT",
2604
+ "engines": {
2605
+ "node": ">=8"
2606
+ }
2607
+ },
2608
+ "node_modules/path-to-regexp": {
2609
+ "version": "8.4.2",
2610
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
2611
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
2612
+ "license": "MIT",
2613
+ "funding": {
2614
+ "type": "opencollective",
2615
+ "url": "https://opencollective.com/express"
2616
+ }
2617
+ },
2618
+ "node_modules/picomatch": {
2619
+ "version": "4.0.5",
2620
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
2621
+ "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
2622
+ "license": "MIT",
2623
+ "engines": {
2624
+ "node": ">=12"
2625
+ },
2626
+ "funding": {
2627
+ "url": "https://github.com/sponsors/jonschlinkert"
2628
+ }
2629
+ },
2630
+ "node_modules/pkce-challenge": {
2631
+ "version": "5.0.1",
2632
+ "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz",
2633
+ "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==",
2634
+ "license": "MIT",
2635
+ "engines": {
2636
+ "node": ">=16.20.0"
2637
+ }
2638
+ },
2639
+ "node_modules/posthog-node": {
2640
+ "version": "5.39.4",
2641
+ "resolved": "https://registry.npmjs.org/posthog-node/-/posthog-node-5.39.4.tgz",
2642
+ "integrity": "sha512-+fCQ7htBFRQQFbIzl1T0TA7bDwYyaB9XP308ZFMCUoB5LzTzOFxBa6TYVrxdH/VQl43WXTp6sf0QsG2Z4XlNBg==",
2643
+ "license": "MIT",
2644
+ "dependencies": {
2645
+ "@posthog/core": "^1.39.5"
2646
+ },
2647
+ "engines": {
2648
+ "node": "^20.20.0 || >=22.22.0"
2649
+ },
2650
+ "peerDependencies": {
2651
+ "rxjs": "^7.0.0"
2652
+ },
2653
+ "peerDependenciesMeta": {
2654
+ "rxjs": {
2655
+ "optional": true
2656
+ }
2657
+ }
2658
+ },
2659
+ "node_modules/pretty-ms": {
2660
+ "version": "9.3.0",
2661
+ "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.3.0.tgz",
2662
+ "integrity": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==",
2663
+ "license": "MIT",
2664
+ "dependencies": {
2665
+ "parse-ms": "^4.0.0"
2666
+ },
2667
+ "engines": {
2668
+ "node": ">=18"
2669
+ },
2670
+ "funding": {
2671
+ "url": "https://github.com/sponsors/sindresorhus"
2672
+ }
2673
+ },
2674
+ "node_modules/proxy-addr": {
2675
+ "version": "2.0.7",
2676
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
2677
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
2678
+ "license": "MIT",
2679
+ "dependencies": {
2680
+ "forwarded": "0.2.0",
2681
+ "ipaddr.js": "1.9.1"
2682
+ },
2683
+ "engines": {
2684
+ "node": ">= 0.10"
2685
+ }
2686
+ },
2687
+ "node_modules/qs": {
2688
+ "version": "6.15.3",
2689
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz",
2690
+ "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==",
2691
+ "license": "BSD-3-Clause",
2692
+ "dependencies": {
2693
+ "es-define-property": "^1.0.1",
2694
+ "side-channel": "^1.1.1"
2695
+ },
2696
+ "engines": {
2697
+ "node": ">=0.6"
2698
+ },
2699
+ "funding": {
2700
+ "url": "https://github.com/sponsors/ljharb"
2701
+ }
2702
+ },
2703
+ "node_modules/range-parser": {
2704
+ "version": "1.3.0",
2705
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz",
2706
+ "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==",
2707
+ "license": "MIT",
2708
+ "engines": {
2709
+ "node": ">= 0.6"
2710
+ },
2711
+ "funding": {
2712
+ "type": "opencollective",
2713
+ "url": "https://opencollective.com/express"
2714
+ }
2715
+ },
2716
+ "node_modules/raw-body": {
2717
+ "version": "3.0.2",
2718
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
2719
+ "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
2720
+ "license": "MIT",
2721
+ "dependencies": {
2722
+ "bytes": "~3.1.2",
2723
+ "http-errors": "~2.0.1",
2724
+ "iconv-lite": "~0.7.0",
2725
+ "unpipe": "~1.0.0"
2726
+ },
2727
+ "engines": {
2728
+ "node": ">= 0.10"
2729
+ }
2730
+ },
2731
+ "node_modules/remark-gfm": {
2732
+ "version": "4.0.1",
2733
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
2734
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
2735
+ "license": "MIT",
2736
+ "dependencies": {
2737
+ "@types/mdast": "^4.0.0",
2738
+ "mdast-util-gfm": "^3.0.0",
2739
+ "micromark-extension-gfm": "^3.0.0",
2740
+ "remark-parse": "^11.0.0",
2741
+ "remark-stringify": "^11.0.0",
2742
+ "unified": "^11.0.0"
2743
+ },
2744
+ "funding": {
2745
+ "type": "opencollective",
2746
+ "url": "https://opencollective.com/unified"
2747
+ }
2748
+ },
2749
+ "node_modules/remark-parse": {
2750
+ "version": "11.0.0",
2751
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
2752
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
2753
+ "license": "MIT",
2754
+ "dependencies": {
2755
+ "@types/mdast": "^4.0.0",
2756
+ "mdast-util-from-markdown": "^2.0.0",
2757
+ "micromark-util-types": "^2.0.0",
2758
+ "unified": "^11.0.0"
2759
+ },
2760
+ "funding": {
2761
+ "type": "opencollective",
2762
+ "url": "https://opencollective.com/unified"
2763
+ }
2764
+ },
2765
+ "node_modules/remark-stringify": {
2766
+ "version": "11.0.0",
2767
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
2768
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
2769
+ "license": "MIT",
2770
+ "dependencies": {
2771
+ "@types/mdast": "^4.0.0",
2772
+ "mdast-util-to-markdown": "^2.0.0",
2773
+ "unified": "^11.0.0"
2774
+ },
2775
+ "funding": {
2776
+ "type": "opencollective",
2777
+ "url": "https://opencollective.com/unified"
2778
+ }
2779
+ },
2780
+ "node_modules/remend": {
2781
+ "version": "1.3.0",
2782
+ "resolved": "https://registry.npmjs.org/remend/-/remend-1.3.0.tgz",
2783
+ "integrity": "sha512-iIhggPkhW3hFImKtB10w0dz4EZbs28mV/dmbcYVonWEJ6UGHHpP+bFZnTh6GNWJONg5m+U56JrL+8IxZRdgWjw==",
2784
+ "license": "Apache-2.0"
2785
+ },
2786
+ "node_modules/require-from-string": {
2787
+ "version": "2.0.2",
2788
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
2789
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
2790
+ "license": "MIT",
2791
+ "engines": {
2792
+ "node": ">=0.10.0"
2793
+ }
2794
+ },
2795
+ "node_modules/reusify": {
2796
+ "version": "1.1.0",
2797
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
2798
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
2799
+ "license": "MIT",
2800
+ "engines": {
2801
+ "iojs": ">=1.0.0",
2802
+ "node": ">=0.10.0"
2803
+ }
2804
+ },
2805
+ "node_modules/router": {
2806
+ "version": "2.2.0",
2807
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
2808
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
2809
+ "license": "MIT",
2810
+ "dependencies": {
2811
+ "debug": "^4.4.0",
2812
+ "depd": "^2.0.0",
2813
+ "is-promise": "^4.0.0",
2814
+ "parseurl": "^1.3.3",
2815
+ "path-to-regexp": "^8.0.0"
2816
+ },
2817
+ "engines": {
2818
+ "node": ">= 18"
2819
+ }
2820
+ },
2821
+ "node_modules/safer-buffer": {
2822
+ "version": "2.1.2",
2823
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
2824
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
2825
+ "license": "MIT"
2826
+ },
2827
+ "node_modules/section-matter": {
2828
+ "version": "1.0.0",
2829
+ "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
2830
+ "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
2831
+ "license": "MIT",
2832
+ "dependencies": {
2833
+ "extend-shallow": "^2.0.1",
2834
+ "kind-of": "^6.0.0"
2835
+ },
2836
+ "engines": {
2837
+ "node": ">=4"
2838
+ }
2839
+ },
2840
+ "node_modules/secure-json-parse": {
2841
+ "version": "2.7.0",
2842
+ "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz",
2843
+ "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==",
2844
+ "license": "BSD-3-Clause"
2845
+ },
2846
+ "node_modules/send": {
2847
+ "version": "1.2.1",
2848
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
2849
+ "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
2850
+ "license": "MIT",
2851
+ "dependencies": {
2852
+ "debug": "^4.4.3",
2853
+ "encodeurl": "^2.0.0",
2854
+ "escape-html": "^1.0.3",
2855
+ "etag": "^1.8.1",
2856
+ "fresh": "^2.0.0",
2857
+ "http-errors": "^2.0.1",
2858
+ "mime-types": "^3.0.2",
2859
+ "ms": "^2.1.3",
2860
+ "on-finished": "^2.4.1",
2861
+ "range-parser": "^1.2.1",
2862
+ "statuses": "^2.0.2"
2863
+ },
2864
+ "engines": {
2865
+ "node": ">= 18"
2866
+ },
2867
+ "funding": {
2868
+ "type": "opencollective",
2869
+ "url": "https://opencollective.com/express"
2870
+ }
2871
+ },
2872
+ "node_modules/serve-static": {
2873
+ "version": "2.2.1",
2874
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
2875
+ "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
2876
+ "license": "MIT",
2877
+ "dependencies": {
2878
+ "encodeurl": "^2.0.0",
2879
+ "escape-html": "^1.0.3",
2880
+ "parseurl": "^1.3.3",
2881
+ "send": "^1.2.0"
2882
+ },
2883
+ "engines": {
2884
+ "node": ">= 18"
2885
+ },
2886
+ "funding": {
2887
+ "type": "opencollective",
2888
+ "url": "https://opencollective.com/express"
2889
+ }
2890
+ },
2891
+ "node_modules/setprototypeof": {
2892
+ "version": "1.2.0",
2893
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
2894
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
2895
+ "license": "ISC"
2896
+ },
2897
+ "node_modules/shebang-command": {
2898
+ "version": "2.0.0",
2899
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2900
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2901
+ "license": "MIT",
2902
+ "dependencies": {
2903
+ "shebang-regex": "^3.0.0"
2904
+ },
2905
+ "engines": {
2906
+ "node": ">=8"
2907
+ }
2908
+ },
2909
+ "node_modules/shebang-regex": {
2910
+ "version": "3.0.0",
2911
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2912
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2913
+ "license": "MIT",
2914
+ "engines": {
2915
+ "node": ">=8"
2916
+ }
2917
+ },
2918
+ "node_modules/side-channel": {
2919
+ "version": "1.1.1",
2920
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
2921
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
2922
+ "license": "MIT",
2923
+ "dependencies": {
2924
+ "es-errors": "^1.3.0",
2925
+ "object-inspect": "^1.13.4",
2926
+ "side-channel-list": "^1.0.1",
2927
+ "side-channel-map": "^1.0.1",
2928
+ "side-channel-weakmap": "^1.0.2"
2929
+ },
2930
+ "engines": {
2931
+ "node": ">= 0.4"
2932
+ },
2933
+ "funding": {
2934
+ "url": "https://github.com/sponsors/ljharb"
2935
+ }
2936
+ },
2937
+ "node_modules/side-channel-list": {
2938
+ "version": "1.0.1",
2939
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
2940
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
2941
+ "license": "MIT",
2942
+ "dependencies": {
2943
+ "es-errors": "^1.3.0",
2944
+ "object-inspect": "^1.13.4"
2945
+ },
2946
+ "engines": {
2947
+ "node": ">= 0.4"
2948
+ },
2949
+ "funding": {
2950
+ "url": "https://github.com/sponsors/ljharb"
2951
+ }
2952
+ },
2953
+ "node_modules/side-channel-map": {
2954
+ "version": "1.0.1",
2955
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
2956
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
2957
+ "license": "MIT",
2958
+ "dependencies": {
2959
+ "call-bound": "^1.0.2",
2960
+ "es-errors": "^1.3.0",
2961
+ "get-intrinsic": "^1.2.5",
2962
+ "object-inspect": "^1.13.3"
2963
+ },
2964
+ "engines": {
2965
+ "node": ">= 0.4"
2966
+ },
2967
+ "funding": {
2968
+ "url": "https://github.com/sponsors/ljharb"
2969
+ }
2970
+ },
2971
+ "node_modules/side-channel-weakmap": {
2972
+ "version": "1.0.2",
2973
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
2974
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
2975
+ "license": "MIT",
2976
+ "dependencies": {
2977
+ "call-bound": "^1.0.2",
2978
+ "es-errors": "^1.3.0",
2979
+ "get-intrinsic": "^1.2.5",
2980
+ "object-inspect": "^1.13.3",
2981
+ "side-channel-map": "^1.0.1"
2982
+ },
2983
+ "engines": {
2984
+ "node": ">= 0.4"
2985
+ },
2986
+ "funding": {
2987
+ "url": "https://github.com/sponsors/ljharb"
2988
+ }
2989
+ },
2990
+ "node_modules/signal-exit": {
2991
+ "version": "4.1.0",
2992
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
2993
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
2994
+ "license": "ISC",
2995
+ "engines": {
2996
+ "node": ">=14"
2997
+ },
2998
+ "funding": {
2999
+ "url": "https://github.com/sponsors/isaacs"
3000
+ }
3001
+ },
3002
+ "node_modules/sprintf-js": {
3003
+ "version": "1.0.3",
3004
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
3005
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
3006
+ "license": "BSD-3-Clause"
3007
+ },
3008
+ "node_modules/statuses": {
3009
+ "version": "2.0.2",
3010
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
3011
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
3012
+ "license": "MIT",
3013
+ "engines": {
3014
+ "node": ">= 0.8"
3015
+ }
3016
+ },
3017
+ "node_modules/strip-bom-string": {
3018
+ "version": "1.0.0",
3019
+ "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
3020
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
3021
+ "license": "MIT",
3022
+ "engines": {
3023
+ "node": ">=0.10.0"
3024
+ }
3025
+ },
3026
+ "node_modules/strip-final-newline": {
3027
+ "version": "4.0.0",
3028
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz",
3029
+ "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==",
3030
+ "license": "MIT",
3031
+ "engines": {
3032
+ "node": ">=18"
3033
+ },
3034
+ "funding": {
3035
+ "url": "https://github.com/sponsors/sindresorhus"
3036
+ }
3037
+ },
3038
+ "node_modules/toidentifier": {
3039
+ "version": "1.0.1",
3040
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
3041
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
3042
+ "license": "MIT",
3043
+ "engines": {
3044
+ "node": ">=0.6"
3045
+ }
3046
+ },
3047
+ "node_modules/tokenx": {
3048
+ "version": "1.3.0",
3049
+ "resolved": "https://registry.npmjs.org/tokenx/-/tokenx-1.3.0.tgz",
3050
+ "integrity": "sha512-NLdXTEZkKiO0gZuLtMoZKjCXTREXeZZt8nnnNeyoXtNZAfG/GKGSbQtLU5STspc0rMSwcA+UJfWZkbNU01iKmQ==",
3051
+ "license": "MIT"
3052
+ },
3053
+ "node_modules/trough": {
3054
+ "version": "2.2.0",
3055
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
3056
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
3057
+ "license": "MIT",
3058
+ "funding": {
3059
+ "type": "github",
3060
+ "url": "https://github.com/sponsors/wooorm"
3061
+ }
3062
+ },
3063
+ "node_modules/type-is": {
3064
+ "version": "2.1.0",
3065
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
3066
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
3067
+ "license": "MIT",
3068
+ "dependencies": {
3069
+ "content-type": "^2.0.0",
3070
+ "media-typer": "^1.1.0",
3071
+ "mime-types": "^3.0.0"
3072
+ },
3073
+ "engines": {
3074
+ "node": ">= 18"
3075
+ },
3076
+ "funding": {
3077
+ "type": "opencollective",
3078
+ "url": "https://opencollective.com/express"
3079
+ }
3080
+ },
3081
+ "node_modules/type-is/node_modules/content-type": {
3082
+ "version": "2.0.0",
3083
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
3084
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
3085
+ "license": "MIT",
3086
+ "engines": {
3087
+ "node": ">=18"
3088
+ },
3089
+ "funding": {
3090
+ "type": "opencollective",
3091
+ "url": "https://opencollective.com/express"
3092
+ }
3093
+ },
3094
+ "node_modules/typescript": {
3095
+ "version": "5.9.3",
3096
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
3097
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
3098
+ "dev": true,
3099
+ "license": "Apache-2.0",
3100
+ "bin": {
3101
+ "tsc": "bin/tsc",
3102
+ "tsserver": "bin/tsserver"
3103
+ },
3104
+ "engines": {
3105
+ "node": ">=14.17"
3106
+ }
3107
+ },
3108
+ "node_modules/undici-types": {
3109
+ "version": "6.21.0",
3110
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
3111
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
3112
+ "dev": true,
3113
+ "license": "MIT"
3114
+ },
3115
+ "node_modules/unicorn-magic": {
3116
+ "version": "0.3.0",
3117
+ "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
3118
+ "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
3119
+ "license": "MIT",
3120
+ "engines": {
3121
+ "node": ">=18"
3122
+ },
3123
+ "funding": {
3124
+ "url": "https://github.com/sponsors/sindresorhus"
3125
+ }
3126
+ },
3127
+ "node_modules/unified": {
3128
+ "version": "11.0.5",
3129
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
3130
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
3131
+ "license": "MIT",
3132
+ "dependencies": {
3133
+ "@types/unist": "^3.0.0",
3134
+ "bail": "^2.0.0",
3135
+ "devlop": "^1.0.0",
3136
+ "extend": "^3.0.0",
3137
+ "is-plain-obj": "^4.0.0",
3138
+ "trough": "^2.0.0",
3139
+ "vfile": "^6.0.0"
3140
+ },
3141
+ "funding": {
3142
+ "type": "opencollective",
3143
+ "url": "https://opencollective.com/unified"
3144
+ }
3145
+ },
3146
+ "node_modules/unist-util-is": {
3147
+ "version": "6.0.1",
3148
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
3149
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
3150
+ "license": "MIT",
3151
+ "dependencies": {
3152
+ "@types/unist": "^3.0.0"
3153
+ },
3154
+ "funding": {
3155
+ "type": "opencollective",
3156
+ "url": "https://opencollective.com/unified"
3157
+ }
3158
+ },
3159
+ "node_modules/unist-util-stringify-position": {
3160
+ "version": "4.0.0",
3161
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
3162
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
3163
+ "license": "MIT",
3164
+ "dependencies": {
3165
+ "@types/unist": "^3.0.0"
3166
+ },
3167
+ "funding": {
3168
+ "type": "opencollective",
3169
+ "url": "https://opencollective.com/unified"
3170
+ }
3171
+ },
3172
+ "node_modules/unist-util-visit": {
3173
+ "version": "5.1.0",
3174
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
3175
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
3176
+ "license": "MIT",
3177
+ "dependencies": {
3178
+ "@types/unist": "^3.0.0",
3179
+ "unist-util-is": "^6.0.0",
3180
+ "unist-util-visit-parents": "^6.0.0"
3181
+ },
3182
+ "funding": {
3183
+ "type": "opencollective",
3184
+ "url": "https://opencollective.com/unified"
3185
+ }
3186
+ },
3187
+ "node_modules/unist-util-visit-parents": {
3188
+ "version": "6.0.2",
3189
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
3190
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
3191
+ "license": "MIT",
3192
+ "dependencies": {
3193
+ "@types/unist": "^3.0.0",
3194
+ "unist-util-is": "^6.0.0"
3195
+ },
3196
+ "funding": {
3197
+ "type": "opencollective",
3198
+ "url": "https://opencollective.com/unified"
3199
+ }
3200
+ },
3201
+ "node_modules/unpipe": {
3202
+ "version": "1.0.0",
3203
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
3204
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
3205
+ "license": "MIT",
3206
+ "engines": {
3207
+ "node": ">= 0.8"
3208
+ }
3209
+ },
3210
+ "node_modules/uuid": {
3211
+ "version": "11.1.1",
3212
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.1.tgz",
3213
+ "integrity": "sha512-vIYxrBCC/N/K+Js3qSN88go7kIfNPssr/hHCesKCQNAjmgvYS2oqr69kIufEG+O4+PfezOH4EbIeHCfFov8ZgQ==",
3214
+ "funding": [
3215
+ "https://github.com/sponsors/broofa",
3216
+ "https://github.com/sponsors/ctavan"
3217
+ ],
3218
+ "license": "MIT",
3219
+ "bin": {
3220
+ "uuid": "dist/esm/bin/uuid"
3221
+ }
3222
+ },
3223
+ "node_modules/vary": {
3224
+ "version": "1.1.2",
3225
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
3226
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
3227
+ "license": "MIT",
3228
+ "engines": {
3229
+ "node": ">= 0.8"
3230
+ }
3231
+ },
3232
+ "node_modules/vfile": {
3233
+ "version": "6.0.3",
3234
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
3235
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
3236
+ "license": "MIT",
3237
+ "dependencies": {
3238
+ "@types/unist": "^3.0.0",
3239
+ "vfile-message": "^4.0.0"
3240
+ },
3241
+ "funding": {
3242
+ "type": "opencollective",
3243
+ "url": "https://opencollective.com/unified"
3244
+ }
3245
+ },
3246
+ "node_modules/vfile-message": {
3247
+ "version": "4.0.3",
3248
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
3249
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
3250
+ "license": "MIT",
3251
+ "dependencies": {
3252
+ "@types/unist": "^3.0.0",
3253
+ "unist-util-stringify-position": "^4.0.0"
3254
+ },
3255
+ "funding": {
3256
+ "type": "opencollective",
3257
+ "url": "https://opencollective.com/unified"
3258
+ }
3259
+ },
3260
+ "node_modules/which": {
3261
+ "version": "2.0.2",
3262
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
3263
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
3264
+ "license": "ISC",
3265
+ "dependencies": {
3266
+ "isexe": "^2.0.0"
3267
+ },
3268
+ "bin": {
3269
+ "node-which": "bin/node-which"
3270
+ },
3271
+ "engines": {
3272
+ "node": ">= 8"
3273
+ }
3274
+ },
3275
+ "node_modules/wrappy": {
3276
+ "version": "1.0.2",
3277
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
3278
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
3279
+ "license": "ISC"
3280
+ },
3281
+ "node_modules/ws": {
3282
+ "version": "8.21.0",
3283
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
3284
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
3285
+ "license": "MIT",
3286
+ "engines": {
3287
+ "node": ">=10.0.0"
3288
+ },
3289
+ "peerDependencies": {
3290
+ "bufferutil": "^4.0.1",
3291
+ "utf-8-validate": ">=5.0.2"
3292
+ },
3293
+ "peerDependenciesMeta": {
3294
+ "bufferutil": {
3295
+ "optional": true
3296
+ },
3297
+ "utf-8-validate": {
3298
+ "optional": true
3299
+ }
3300
+ }
3301
+ },
3302
+ "node_modules/xxhash-wasm": {
3303
+ "version": "1.1.0",
3304
+ "resolved": "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.1.0.tgz",
3305
+ "integrity": "sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==",
3306
+ "license": "MIT"
3307
+ },
3308
+ "node_modules/yoctocolors": {
3309
+ "version": "2.1.2",
3310
+ "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz",
3311
+ "integrity": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==",
3312
+ "license": "MIT",
3313
+ "engines": {
3314
+ "node": ">=18"
3315
+ },
3316
+ "funding": {
3317
+ "url": "https://github.com/sponsors/sindresorhus"
3318
+ }
3319
+ },
3320
+ "node_modules/zod": {
3321
+ "version": "4.4.3",
3322
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
3323
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
3324
+ "license": "MIT",
3325
+ "funding": {
3326
+ "url": "https://github.com/sponsors/colinhacks"
3327
+ }
3328
+ },
3329
+ "node_modules/zod-from-json-schema": {
3330
+ "version": "0.5.3",
3331
+ "resolved": "https://registry.npmjs.org/zod-from-json-schema/-/zod-from-json-schema-0.5.3.tgz",
3332
+ "integrity": "sha512-44YFiuq+WHw9YZQAo/Ad0F7o9c/im0Q6cnHI23BsXhEmZtkNn4cD0bljLMMjkfb/EidopPWdsmKI8EvLHX5ZyA==",
3333
+ "license": "MIT",
3334
+ "dependencies": {
3335
+ "zod": "^4.0.17"
3336
+ }
3337
+ },
3338
+ "node_modules/zod-from-json-schema-v3": {
3339
+ "name": "zod-from-json-schema",
3340
+ "version": "0.0.5",
3341
+ "resolved": "https://registry.npmjs.org/zod-from-json-schema/-/zod-from-json-schema-0.0.5.tgz",
3342
+ "integrity": "sha512-zYEoo86M1qpA1Pq6329oSyHLS785z/mTwfr9V1Xf/ZLhuuBGaMlDGu/pDVGVUe4H4oa1EFgWZT53DP0U3oT9CQ==",
3343
+ "license": "MIT",
3344
+ "dependencies": {
3345
+ "zod": "^3.24.2"
3346
+ }
3347
+ },
3348
+ "node_modules/zod-from-json-schema-v3/node_modules/zod": {
3349
+ "version": "3.25.76",
3350
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
3351
+ "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
3352
+ "license": "MIT",
3353
+ "funding": {
3354
+ "url": "https://github.com/sponsors/colinhacks"
3355
+ }
3356
+ },
3357
+ "node_modules/zod-to-json-schema": {
3358
+ "version": "3.25.2",
3359
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
3360
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
3361
+ "license": "ISC",
3362
+ "peerDependencies": {
3363
+ "zod": "^3.25.28 || ^4"
3364
+ }
3365
+ },
3366
+ "node_modules/zwitch": {
3367
+ "version": "2.0.4",
3368
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
3369
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
3370
+ "license": "MIT",
3371
+ "funding": {
3372
+ "type": "github",
3373
+ "url": "https://github.com/sponsors/wooorm"
3374
+ }
3375
+ }
3376
+ }
3377
+ }