agents-city 0.3.0-beta.21

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 (440) hide show
  1. package/.claude-plugin/marketplace.json +16 -0
  2. package/LICENSE +202 -0
  3. package/NOTICE +5 -0
  4. package/README.es.md +2021 -0
  5. package/README.md +1999 -0
  6. package/benchmarks/committee/README.md +39 -0
  7. package/benchmarks/committee/metrics.py +51 -0
  8. package/benchmarks/committee/run.py +64 -0
  9. package/benchmarks/committee/traces/01-single.json +8 -0
  10. package/benchmarks/committee/traces/02-mesh.json +16 -0
  11. package/benchmarks/committee/traces/03-chair.json +15 -0
  12. package/benchmarks/latency/README.md +35 -0
  13. package/benchmarks/latency/fake-claude-cli.mjs +119 -0
  14. package/benchmarks/latency/fake-native-server.mjs +340 -0
  15. package/benchmarks/latency/fake-tui.py +91 -0
  16. package/benchmarks/latency/live.py +380 -0
  17. package/benchmarks/stress/README.md +20 -0
  18. package/benchmarks/stress/run.py +487 -0
  19. package/bin/agents +4 -0
  20. package/bin/agents-city.js +116 -0
  21. package/bin/benchmark +17 -0
  22. package/bin/bus +6 -0
  23. package/bin/cities +3 -0
  24. package/bin/city +86 -0
  25. package/bin/committee +6 -0
  26. package/bin/demo +200 -0
  27. package/bin/exit +5 -0
  28. package/bin/hall +73 -0
  29. package/bin/hall.html +426 -0
  30. package/bin/logs +3 -0
  31. package/bin/report.py +14 -0
  32. package/bin/reset +3 -0
  33. package/bin/road +3 -0
  34. package/bin/seat +10 -0
  35. package/bin/serve.py +1428 -0
  36. package/bin/setup.py +753 -0
  37. package/bin/skills +3 -0
  38. package/bin/test +131 -0
  39. package/bin/test-adapter.py +183 -0
  40. package/bin/test-admision.py +99 -0
  41. package/bin/test-avatar.py +58 -0
  42. package/bin/test-benchmark.py +40 -0
  43. package/bin/test-broker.py +334 -0
  44. package/bin/test-cage.py +206 -0
  45. package/bin/test-card.py +402 -0
  46. package/bin/test-channel.py +379 -0
  47. package/bin/test-cities.py +453 -0
  48. package/bin/test-claude-runtime.py +252 -0
  49. package/bin/test-committee.py +340 -0
  50. package/bin/test-contracts.py +544 -0
  51. package/bin/test-crecimiento.py +164 -0
  52. package/bin/test-demo.py +308 -0
  53. package/bin/test-doctor.py +106 -0
  54. package/bin/test-domains.py +151 -0
  55. package/bin/test-evidencia.py +50 -0
  56. package/bin/test-exit.py +128 -0
  57. package/bin/test-hall-protocol.py +93 -0
  58. package/bin/test-launch.py +169 -0
  59. package/bin/test-live-feed.py +508 -0
  60. package/bin/test-pairing.py +99 -0
  61. package/bin/test-parcels.py +283 -0
  62. package/bin/test-runtime-failures.py +252 -0
  63. package/bin/test-runtime-ui.py +488 -0
  64. package/bin/test-runtime.py +268 -0
  65. package/bin/test-rutas.py +80 -0
  66. package/bin/test-seat.py +1386 -0
  67. package/bin/test-security.py +150 -0
  68. package/bin/test-serve.py +1057 -0
  69. package/bin/test-stress.py +64 -0
  70. package/bin/test-widgets.py +143 -0
  71. package/bin/test-workspace.py +188 -0
  72. package/bin/testlib.py +95 -0
  73. package/bin/tokens.py +14 -0
  74. package/bus/scripts/deploy.sh +60 -0
  75. package/bus/scripts/mint-token.sh +68 -0
  76. package/bus/scripts/setup-dev.sh +79 -0
  77. package/bus/scripts/test-channel.ts +8 -0
  78. package/bus/scripts/test-hub.ts +266 -0
  79. package/bus/scripts/test-local.sh +40 -0
  80. package/bus/scripts/test-queue.ts +132 -0
  81. package/bus/worker/package-lock.json +1971 -0
  82. package/bus/worker/package.json +17 -0
  83. package/bus/worker/src/index.ts +485 -0
  84. package/bus/worker/tsconfig.json +13 -0
  85. package/bus/worker/wrangler.toml +32 -0
  86. package/city/oven/README.md +59 -0
  87. package/city/oven/collect.py +43 -0
  88. package/city/oven/oven.html +4 -0
  89. package/city/scripts/history.py +120 -0
  90. package/city/scripts/seed.py +442 -0
  91. package/city/web/assets/modelos/License.txt +28 -0
  92. package/city/web/assets/modelos/PROCEDENCIA.txt +3 -0
  93. package/city/web/assets/modelos/building-a.glb +0 -0
  94. package/city/web/assets/modelos/building-b.glb +0 -0
  95. package/city/web/assets/modelos/building-c.glb +0 -0
  96. package/city/web/assets/modelos/building-d.glb +0 -0
  97. package/city/web/assets/modelos/building-e.glb +0 -0
  98. package/city/web/assets/modelos/building-f.glb +0 -0
  99. package/city/web/assets/modelos/building-g.glb +0 -0
  100. package/city/web/assets/modelos/building-h.glb +0 -0
  101. package/city/web/assets/sprites/building-a.png +0 -0
  102. package/city/web/assets/sprites/building-b.png +0 -0
  103. package/city/web/assets/sprites/building-c.png +0 -0
  104. package/city/web/assets/sprites/building-d.png +0 -0
  105. package/city/web/assets/sprites/building-e.png +0 -0
  106. package/city/web/assets/sprites/building-f.png +0 -0
  107. package/city/web/assets/sprites/building-g.png +0 -0
  108. package/city/web/assets/sprites/building-h.png +0 -0
  109. package/city/web/assets/sprites/building-i.png +0 -0
  110. package/city/web/assets/sprites/building-j.png +0 -0
  111. package/city/web/assets/sprites/building-k.png +0 -0
  112. package/city/web/assets/sprites/building-l.png +0 -0
  113. package/city/web/assets/sprites/building-m.png +0 -0
  114. package/city/web/assets/sprites/building-n.png +0 -0
  115. package/city/web/assets/sprites/building-skyscraper-a.png +0 -0
  116. package/city/web/assets/sprites/building-skyscraper-b.png +0 -0
  117. package/city/web/assets/sprites/building-skyscraper-c.png +0 -0
  118. package/city/web/assets/sprites/building-skyscraper-d.png +0 -0
  119. package/city/web/assets/sprites/building-skyscraper-e.png +0 -0
  120. package/city/web/assets/sprites/catalogo.json +47 -0
  121. package/city/web/assets/sprites/detail-awning-wide.png +0 -0
  122. package/city/web/assets/sprites/detail-awning.png +0 -0
  123. package/city/web/assets/sprites/detail-overhang-wide.png +0 -0
  124. package/city/web/assets/sprites/detail-overhang.png +0 -0
  125. package/city/web/assets/sprites/detail-parasol-a.png +0 -0
  126. package/city/web/assets/sprites/detail-parasol-b.png +0 -0
  127. package/city/web/assets/sprites/low-detail-building-a.png +0 -0
  128. package/city/web/assets/sprites/low-detail-building-b.png +0 -0
  129. package/city/web/assets/sprites/low-detail-building-c.png +0 -0
  130. package/city/web/assets/sprites/low-detail-building-d.png +0 -0
  131. package/city/web/assets/sprites/low-detail-building-e.png +0 -0
  132. package/city/web/assets/sprites/low-detail-building-f.png +0 -0
  133. package/city/web/assets/sprites/low-detail-building-g.png +0 -0
  134. package/city/web/assets/sprites/low-detail-building-h.png +0 -0
  135. package/city/web/assets/sprites/low-detail-building-i.png +0 -0
  136. package/city/web/assets/sprites/low-detail-building-j.png +0 -0
  137. package/city/web/assets/sprites/low-detail-building-k.png +0 -0
  138. package/city/web/assets/sprites/low-detail-building-l.png +0 -0
  139. package/city/web/assets/sprites/low-detail-building-m.png +0 -0
  140. package/city/web/assets/sprites/low-detail-building-n.png +0 -0
  141. package/city/web/assets/sprites/low-detail-building-wide-a.png +0 -0
  142. package/city/web/assets/sprites/low-detail-building-wide-b.png +0 -0
  143. package/city/web/assets/sprites/medidas.json +248 -0
  144. package/city/web/dist/city.js +939 -0
  145. package/city/web/dist/index.html +294 -0
  146. package/city/web/dist/modelos/License.txt +28 -0
  147. package/city/web/dist/modelos/PROCEDENCIA.txt +3 -0
  148. package/city/web/dist/modelos/building-a.glb +0 -0
  149. package/city/web/dist/modelos/building-b.glb +0 -0
  150. package/city/web/dist/modelos/building-c.glb +0 -0
  151. package/city/web/dist/modelos/building-d.glb +0 -0
  152. package/city/web/dist/modelos/building-e.glb +0 -0
  153. package/city/web/dist/modelos/building-f.glb +0 -0
  154. package/city/web/dist/modelos/building-g.glb +0 -0
  155. package/city/web/dist/modelos/building-h.glb +0 -0
  156. package/city/web/dist/sprites/building-a.png +0 -0
  157. package/city/web/dist/sprites/building-b.png +0 -0
  158. package/city/web/dist/sprites/building-c.png +0 -0
  159. package/city/web/dist/sprites/building-d.png +0 -0
  160. package/city/web/dist/sprites/building-e.png +0 -0
  161. package/city/web/dist/sprites/building-f.png +0 -0
  162. package/city/web/dist/sprites/building-g.png +0 -0
  163. package/city/web/dist/sprites/building-h.png +0 -0
  164. package/city/web/dist/sprites/building-i.png +0 -0
  165. package/city/web/dist/sprites/building-j.png +0 -0
  166. package/city/web/dist/sprites/building-k.png +0 -0
  167. package/city/web/dist/sprites/building-l.png +0 -0
  168. package/city/web/dist/sprites/building-m.png +0 -0
  169. package/city/web/dist/sprites/building-n.png +0 -0
  170. package/city/web/dist/sprites/building-skyscraper-a.png +0 -0
  171. package/city/web/dist/sprites/building-skyscraper-b.png +0 -0
  172. package/city/web/dist/sprites/building-skyscraper-c.png +0 -0
  173. package/city/web/dist/sprites/building-skyscraper-d.png +0 -0
  174. package/city/web/dist/sprites/building-skyscraper-e.png +0 -0
  175. package/city/web/dist/sprites/catalogo.json +47 -0
  176. package/city/web/dist/sprites/detail-awning-wide.png +0 -0
  177. package/city/web/dist/sprites/detail-awning.png +0 -0
  178. package/city/web/dist/sprites/detail-overhang-wide.png +0 -0
  179. package/city/web/dist/sprites/detail-overhang.png +0 -0
  180. package/city/web/dist/sprites/detail-parasol-a.png +0 -0
  181. package/city/web/dist/sprites/detail-parasol-b.png +0 -0
  182. package/city/web/dist/sprites/low-detail-building-a.png +0 -0
  183. package/city/web/dist/sprites/low-detail-building-b.png +0 -0
  184. package/city/web/dist/sprites/low-detail-building-c.png +0 -0
  185. package/city/web/dist/sprites/low-detail-building-d.png +0 -0
  186. package/city/web/dist/sprites/low-detail-building-e.png +0 -0
  187. package/city/web/dist/sprites/low-detail-building-f.png +0 -0
  188. package/city/web/dist/sprites/low-detail-building-g.png +0 -0
  189. package/city/web/dist/sprites/low-detail-building-h.png +0 -0
  190. package/city/web/dist/sprites/low-detail-building-i.png +0 -0
  191. package/city/web/dist/sprites/low-detail-building-j.png +0 -0
  192. package/city/web/dist/sprites/low-detail-building-k.png +0 -0
  193. package/city/web/dist/sprites/low-detail-building-l.png +0 -0
  194. package/city/web/dist/sprites/low-detail-building-m.png +0 -0
  195. package/city/web/dist/sprites/low-detail-building-n.png +0 -0
  196. package/city/web/dist/sprites/low-detail-building-wide-a.png +0 -0
  197. package/city/web/dist/sprites/low-detail-building-wide-b.png +0 -0
  198. package/city/web/dist/sprites/medidas.json +248 -0
  199. package/city/web/dist-hall/hall.js +264 -0
  200. package/city/web/index.html +294 -0
  201. package/city/web/package.json +18 -0
  202. package/city/web/sella.py +21 -0
  203. package/city/web/src/activity-actors.ts +47 -0
  204. package/city/web/src/activity.ts +172 -0
  205. package/city/web/src/ayuntamiento.ts +580 -0
  206. package/city/web/src/draw.ts +640 -0
  207. package/city/web/src/game-speech.ts +79 -0
  208. package/city/web/src/hall.ts +1867 -0
  209. package/city/web/src/main.ts +2225 -0
  210. package/city/web/src/oven.ts +124 -0
  211. package/city/web/src/people.ts +244 -0
  212. package/city/web/src/presencia.ts +193 -0
  213. package/city/web/src/puertas.ts +180 -0
  214. package/city/web/src/repo-roles.ts +59 -0
  215. package/city/worker/package.json +16 -0
  216. package/city/worker/schema.sql +117 -0
  217. package/city/worker/src/index.ts +702 -0
  218. package/city/worker/src/square.ts +218 -0
  219. package/city/worker/wrangler.toml +58 -0
  220. package/demo/ada.md +50 -0
  221. package/demo/bruno.md +62 -0
  222. package/demo/camila.md +56 -0
  223. package/demo/city/ada.md +40 -0
  224. package/demo/city/city.yml +8 -0
  225. package/demo/city/parcels.yml +15 -0
  226. package/demo/city/roads.json +4 -0
  227. package/demo/city/units.yml +10 -0
  228. package/demo/clinica/city.yml +8 -0
  229. package/demo/clinica/parcels.yml +15 -0
  230. package/demo/clinica/roads.json +4 -0
  231. package/demo/clinica/units.yml +9 -0
  232. package/demo/clinica/vera.md +46 -0
  233. package/demo/dante.md +54 -0
  234. package/demo/despacho/city.yml +8 -0
  235. package/demo/despacho/marta.md +46 -0
  236. package/demo/despacho/parcels.yml +15 -0
  237. package/demo/despacho/roads.json +4 -0
  238. package/demo/despacho/units.yml +9 -0
  239. package/demo/elsa.md +50 -0
  240. package/demo/farid.md +52 -0
  241. package/demo/greta.md +50 -0
  242. package/demo/hugo.md +49 -0
  243. package/demo/iris.md +49 -0
  244. package/demo/jonas.md +51 -0
  245. package/demo/kira.md +51 -0
  246. package/demo/luca.md +49 -0
  247. package/demo/parcels.yml +92 -0
  248. package/demo/seed.py +20 -0
  249. package/demo/show.py +161 -0
  250. package/demo/stories.py +824 -0
  251. package/demo/units.yml +33 -0
  252. package/docs/agents-first.md +99 -0
  253. package/docs/glossary.md +55 -0
  254. package/docs/map-live-layers.md +73 -0
  255. package/docs/security.md +231 -0
  256. package/docs/self-host.md +151 -0
  257. package/docs/testing.md +205 -0
  258. package/package.json +73 -0
  259. package/plugin/.claude-plugin/plugin.json +62 -0
  260. package/plugin/.mcp.json +15 -0
  261. package/plugin/channel/activity-cli.ts +16 -0
  262. package/plugin/channel/adapter-prompts.ts +113 -0
  263. package/plugin/channel/adapter.js +4292 -0
  264. package/plugin/channel/adapter.ts +133 -0
  265. package/plugin/channel/bus.js +20188 -0
  266. package/plugin/channel/bus.ts +131 -0
  267. package/plugin/channel/city-config.ts +125 -0
  268. package/plugin/channel/claude-channel.ts +58 -0
  269. package/plugin/channel/cli-args.ts +75 -0
  270. package/plugin/channel/client.js +4200 -0
  271. package/plugin/channel/client.ts +38 -0
  272. package/plugin/channel/committee/activity.ts +256 -0
  273. package/plugin/channel/committee/collection.ts +154 -0
  274. package/plugin/channel/committee/decision.ts +175 -0
  275. package/plugin/channel/committee/floor.ts +135 -0
  276. package/plugin/channel/committee/guards.ts +30 -0
  277. package/plugin/channel/committee/history.ts +38 -0
  278. package/plugin/channel/committee/render.ts +102 -0
  279. package/plugin/channel/committee/service.ts +72 -0
  280. package/plugin/channel/committee/storage.ts +92 -0
  281. package/plugin/channel/committee/types.ts +163 -0
  282. package/plugin/channel/committee/view.ts +63 -0
  283. package/plugin/channel/committee-cli.ts +109 -0
  284. package/plugin/channel/delivery-metrics.ts +61 -0
  285. package/plugin/channel/delivery-queue.ts +118 -0
  286. package/plugin/channel/hub/activity-controller.ts +72 -0
  287. package/plugin/channel/hub/activity-feed.ts +169 -0
  288. package/plugin/channel/hub/committee-controller.ts +60 -0
  289. package/plugin/channel/hub/connections.ts +48 -0
  290. package/plugin/channel/hub/diagnostics.ts +67 -0
  291. package/plugin/channel/hub/envelope-validity.ts +109 -0
  292. package/plugin/channel/hub/envelopes.ts +66 -0
  293. package/plugin/channel/hub/lifecycle.ts +91 -0
  294. package/plugin/channel/hub/local-roads.ts +89 -0
  295. package/plugin/channel/hub/remote-roads.ts +165 -0
  296. package/plugin/channel/hub/road-controller.ts +99 -0
  297. package/plugin/channel/hub-client.ts +149 -0
  298. package/plugin/channel/local-hub.js +5995 -0
  299. package/plugin/channel/local-hub.ts +349 -0
  300. package/plugin/channel/map-reporter.ts +48 -0
  301. package/plugin/channel/package-lock.json +1731 -0
  302. package/plugin/channel/package.json +19 -0
  303. package/plugin/channel/protocol.ts +98 -0
  304. package/plugin/channel/road-cli.ts +18 -0
  305. package/plugin/channel/run.sh +15 -0
  306. package/plugin/channel/runtime/claude.ts +458 -0
  307. package/plugin/channel/runtime/codex-config.ts +77 -0
  308. package/plugin/channel/runtime/codex.ts +669 -0
  309. package/plugin/channel/runtime/command.ts +62 -0
  310. package/plugin/channel/runtime/factory.ts +15 -0
  311. package/plugin/channel/runtime/json-rpc.ts +154 -0
  312. package/plugin/channel/runtime/kimi.ts +277 -0
  313. package/plugin/channel/runtime/opencode.ts +248 -0
  314. package/plugin/channel/runtime/process.ts +84 -0
  315. package/plugin/channel/runtime/types.ts +45 -0
  316. package/plugin/channel/runtime-files.ts +73 -0
  317. package/plugin/channel/runtime-gateway.js +6396 -0
  318. package/plugin/channel/runtime-gateway.ts +358 -0
  319. package/plugin/channel/runtime-metrics.ts +52 -0
  320. package/plugin/channel/runtime-subscription.ts +180 -0
  321. package/plugin/channel/terminal-delivery.ts +131 -0
  322. package/plugin/channel/untrusted.ts +60 -0
  323. package/plugin/commands/committee.md +31 -0
  324. package/plugin/commands/exit.md +32 -0
  325. package/plugin/commands/goals.md +20 -0
  326. package/plugin/commands/join.md +18 -0
  327. package/plugin/commands/notice.md +20 -0
  328. package/plugin/commands/propose.md +19 -0
  329. package/plugin/commands/round.md +17 -0
  330. package/plugin/commands/session.md +22 -0
  331. package/plugin/commands/settings.md +25 -0
  332. package/plugin/commands/setup.md +21 -0
  333. package/plugin/commands/team.md +23 -0
  334. package/plugin/domains/custom.md +27 -0
  335. package/plugin/domains/finance.md +31 -0
  336. package/plugin/domains/healthcare.md +34 -0
  337. package/plugin/domains/legal.md +31 -0
  338. package/plugin/domains/marketing.md +33 -0
  339. package/plugin/domains/operations.md +31 -0
  340. package/plugin/domains/research.md +32 -0
  341. package/plugin/domains/sales.md +30 -0
  342. package/plugin/domains/software.md +37 -0
  343. package/plugin/hooks/activity.sh +6 -0
  344. package/plugin/hooks/digging.sh +68 -0
  345. package/plugin/hooks/growth.sh +42 -0
  346. package/plugin/hooks/hooks.json +106 -0
  347. package/plugin/hooks/notice-on-pr.sh +35 -0
  348. package/plugin/hooks/notice-on-stop.sh +80 -0
  349. package/plugin/hooks/notice-pending.sh +58 -0
  350. package/plugin/hooks/solo-en-ciudad.sh +23 -0
  351. package/plugin/hooks/tokens.sh +47 -0
  352. package/plugin/roles/examples/account-executive.md +25 -0
  353. package/plugin/roles/examples/ai-manager.md +34 -0
  354. package/plugin/roles/examples/associate.md +24 -0
  355. package/plugin/roles/examples/brand-lead.md +20 -0
  356. package/plugin/roles/examples/cfo.md +20 -0
  357. package/plugin/roles/examples/city-lead.md +25 -0
  358. package/plugin/roles/examples/clinical-director.md +26 -0
  359. package/plugin/roles/examples/clinical-ops.md +25 -0
  360. package/plugin/roles/examples/clinician.md +25 -0
  361. package/plugin/roles/examples/compliance.md +27 -0
  362. package/plugin/roles/examples/content.md +24 -0
  363. package/plugin/roles/examples/controller.md +27 -0
  364. package/plugin/roles/examples/cpto.md +41 -0
  365. package/plugin/roles/examples/customer-success.md +25 -0
  366. package/plugin/roles/examples/data-engineer.md +37 -0
  367. package/plugin/roles/examples/data.md +60 -0
  368. package/plugin/roles/examples/dev.md +37 -0
  369. package/plugin/roles/examples/devops.md +39 -0
  370. package/plugin/roles/examples/enablement.md +24 -0
  371. package/plugin/roles/examples/ethics.md +24 -0
  372. package/plugin/roles/examples/fin-analytics.md +27 -0
  373. package/plugin/roles/examples/health-compliance.md +25 -0
  374. package/plugin/roles/examples/health-data.md +26 -0
  375. package/plugin/roles/examples/knowledge.md +25 -0
  376. package/plugin/roles/examples/lifecycle.md +26 -0
  377. package/plugin/roles/examples/llm-engineer.md +34 -0
  378. package/plugin/roles/examples/managing-partner.md +20 -0
  379. package/plugin/roles/examples/methods.md +23 -0
  380. package/plugin/roles/examples/operations-lead.md +23 -0
  381. package/plugin/roles/examples/ops.md +24 -0
  382. package/plugin/roles/examples/patient-safety.md +26 -0
  383. package/plugin/roles/examples/performance.md +27 -0
  384. package/plugin/roles/examples/po.md +36 -0
  385. package/plugin/roles/examples/process-owner.md +23 -0
  386. package/plugin/roles/examples/product-design.md +39 -0
  387. package/plugin/roles/examples/program-manager.md +24 -0
  388. package/plugin/roles/examples/quality.md +25 -0
  389. package/plugin/roles/examples/research-director.md +24 -0
  390. package/plugin/roles/examples/research-ops.md +25 -0
  391. package/plugin/roles/examples/researcher.md +25 -0
  392. package/plugin/roles/examples/revenue-lead.md +25 -0
  393. package/plugin/roles/examples/revops.md +26 -0
  394. package/plugin/roles/examples/seo.md +27 -0
  395. package/plugin/roles/examples/specialist.md +24 -0
  396. package/plugin/scripts/admision.py +165 -0
  397. package/plugin/scripts/apaga.py +232 -0
  398. package/plugin/scripts/avatar.py +211 -0
  399. package/plugin/scripts/broker.py +531 -0
  400. package/plugin/scripts/cage.py +252 -0
  401. package/plugin/scripts/capabilities.py +197 -0
  402. package/plugin/scripts/card.py +312 -0
  403. package/plugin/scripts/cities.py +520 -0
  404. package/plugin/scripts/city-env.sh +90 -0
  405. package/plugin/scripts/city-runtime.sh +87 -0
  406. package/plugin/scripts/city-session.sh +526 -0
  407. package/plugin/scripts/city_env.py +67 -0
  408. package/plugin/scripts/crecimiento.py +140 -0
  409. package/plugin/scripts/deliberations.py +48 -0
  410. package/plugin/scripts/doctor.py +172 -0
  411. package/plugin/scripts/domains.py +201 -0
  412. package/plugin/scripts/evidencia.py +64 -0
  413. package/plugin/scripts/find-repos.sh +111 -0
  414. package/plugin/scripts/gh.py +159 -0
  415. package/plugin/scripts/hall_protocol.py +147 -0
  416. package/plugin/scripts/hook_activity.py +139 -0
  417. package/plugin/scripts/launch.py +94 -0
  418. package/plugin/scripts/logs.py +98 -0
  419. package/plugin/scripts/pairing.py +185 -0
  420. package/plugin/scripts/parcels.py +132 -0
  421. package/plugin/scripts/read-card.py +51 -0
  422. package/plugin/scripts/report.py +201 -0
  423. package/plugin/scripts/reset.py +180 -0
  424. package/plugin/scripts/roads.py +230 -0
  425. package/plugin/scripts/roles.py +274 -0
  426. package/plugin/scripts/runtime_log.py +69 -0
  427. package/plugin/scripts/runtime_processes.py +132 -0
  428. package/plugin/scripts/rutas.py +83 -0
  429. package/plugin/scripts/seat.py +1349 -0
  430. package/plugin/scripts/tokens.py +194 -0
  431. package/plugin/scripts/trust-repos.py +59 -0
  432. package/plugin/scripts/ui.py +280 -0
  433. package/plugin/scripts/units.py +80 -0
  434. package/plugin/scripts/workspace.py +364 -0
  435. package/plugin/skills/city/SKILL.md +191 -0
  436. package/templates/blank.md +39 -0
  437. package/templates/finance.md +44 -0
  438. package/templates/legal.md +45 -0
  439. package/templates/marketing.md +48 -0
  440. package/templates/product.md +45 -0
@@ -0,0 +1,1971 @@
1
+ {
2
+ "name": "city-bus-worker",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "city-bus-worker",
9
+ "version": "0.1.0",
10
+ "devDependencies": {
11
+ "@cloudflare/workers-types": "^5.20260826.1",
12
+ "typescript": "^7.0.2",
13
+ "wrangler": "^4.0.0"
14
+ }
15
+ },
16
+ "node_modules/@cloudflare/kv-asset-handler": {
17
+ "version": "0.5.0",
18
+ "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.5.0.tgz",
19
+ "integrity": "sha512-jxQYkj8dSIzc0cD6cMMNdOc1UVjqSqu8BZdor5s8cGjW2I8BjODt/kWPVdY+u9zj3ms75Q5qaZgnxUad83+eAg==",
20
+ "dev": true,
21
+ "license": "MIT OR Apache-2.0",
22
+ "engines": {
23
+ "node": ">=22.0.0"
24
+ }
25
+ },
26
+ "node_modules/@cloudflare/unenv-preset": {
27
+ "version": "2.16.1",
28
+ "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.16.1.tgz",
29
+ "integrity": "sha512-ECxObrMfyTl5bhQf/lZCXwo5G6xX9IAUo+nDMKK4SZ8m4Jvvxp52vilxyySSWh2YTZz8+HQ07qGH/2rEom1vDw==",
30
+ "dev": true,
31
+ "license": "MIT OR Apache-2.0",
32
+ "peerDependencies": {
33
+ "unenv": "2.0.0-rc.24",
34
+ "workerd": ">1.20260305.0 <2.0.0-0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "workerd": {
38
+ "optional": true
39
+ }
40
+ }
41
+ },
42
+ "node_modules/@cloudflare/workerd-darwin-64": {
43
+ "version": "1.20260825.1",
44
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260825.1.tgz",
45
+ "integrity": "sha512-oHu38dwaUuzAilyTb0QkQ1YxU/kzqzIQybCvQKAhiK1CGtQS9h0MmjIZYogv3g8cFGGY2k+Wxs0wV9hHK8z78g==",
46
+ "cpu": [
47
+ "x64"
48
+ ],
49
+ "dev": true,
50
+ "license": "Apache-2.0",
51
+ "optional": true,
52
+ "os": [
53
+ "darwin"
54
+ ],
55
+ "engines": {
56
+ "node": ">=16"
57
+ }
58
+ },
59
+ "node_modules/@cloudflare/workerd-darwin-arm64": {
60
+ "version": "1.20260825.1",
61
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260825.1.tgz",
62
+ "integrity": "sha512-ak5zh8YGEjxQQ78bVo7gzU+tcg2fSFxMIjOPZtWk56a/rIYLbGu6ECcliqnYfMUlragg68H0JuVpfdr3BR5Alw==",
63
+ "cpu": [
64
+ "arm64"
65
+ ],
66
+ "dev": true,
67
+ "license": "Apache-2.0",
68
+ "optional": true,
69
+ "os": [
70
+ "darwin"
71
+ ],
72
+ "engines": {
73
+ "node": ">=16"
74
+ }
75
+ },
76
+ "node_modules/@cloudflare/workerd-linux-64": {
77
+ "version": "1.20260825.1",
78
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260825.1.tgz",
79
+ "integrity": "sha512-bNQvzz6NemWAwixDRz1fQa5T+E5lS4xpB7A/H/72ULxrjVpHmq8CGFPSbdmRp3dvgBjZTgp7wHdGLISLSVd9Gg==",
80
+ "cpu": [
81
+ "x64"
82
+ ],
83
+ "dev": true,
84
+ "license": "Apache-2.0",
85
+ "optional": true,
86
+ "os": [
87
+ "linux"
88
+ ],
89
+ "engines": {
90
+ "node": ">=16"
91
+ }
92
+ },
93
+ "node_modules/@cloudflare/workerd-linux-arm64": {
94
+ "version": "1.20260825.1",
95
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260825.1.tgz",
96
+ "integrity": "sha512-a5E61YsnNCHHQMnmYsbVXInzeYqFqAMwm/wo16dWW4klXDr6T1bm7u1h5G7ZkxVM7+rtc69oe0yVHjDEqzpYVg==",
97
+ "cpu": [
98
+ "arm64"
99
+ ],
100
+ "dev": true,
101
+ "license": "Apache-2.0",
102
+ "optional": true,
103
+ "os": [
104
+ "linux"
105
+ ],
106
+ "engines": {
107
+ "node": ">=16"
108
+ }
109
+ },
110
+ "node_modules/@cloudflare/workerd-windows-64": {
111
+ "version": "1.20260825.1",
112
+ "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260825.1.tgz",
113
+ "integrity": "sha512-EokzVY2suzRSzeURi2HpHnySR5mo6aF5V1klFIqFOZp2YJyXXTI8AvQgYzhlmGTZY3LNL41jjkUQunOM2OErgQ==",
114
+ "cpu": [
115
+ "x64"
116
+ ],
117
+ "dev": true,
118
+ "license": "Apache-2.0",
119
+ "optional": true,
120
+ "os": [
121
+ "win32"
122
+ ],
123
+ "engines": {
124
+ "node": ">=16"
125
+ }
126
+ },
127
+ "node_modules/@cloudflare/workers-types": {
128
+ "version": "5.20260826.1",
129
+ "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-5.20260826.1.tgz",
130
+ "integrity": "sha512-hyW0QHvJYKhsMTAx1YZkbhcXBr17Brl1xZwvVExYmB5pAExJCCzAEouKNGwag2H+yBlqLay3X3kZoiJoGu2DRw==",
131
+ "dev": true,
132
+ "license": "MIT OR Apache-2.0"
133
+ },
134
+ "node_modules/@cspotcode/source-map-support": {
135
+ "version": "0.8.1",
136
+ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
137
+ "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
138
+ "dev": true,
139
+ "license": "MIT",
140
+ "dependencies": {
141
+ "@jridgewell/trace-mapping": "0.3.9"
142
+ },
143
+ "engines": {
144
+ "node": ">=12"
145
+ }
146
+ },
147
+ "node_modules/@emnapi/runtime": {
148
+ "version": "1.11.3",
149
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.3.tgz",
150
+ "integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
151
+ "dev": true,
152
+ "license": "MIT",
153
+ "optional": true,
154
+ "dependencies": {
155
+ "tslib": "^2.4.0"
156
+ }
157
+ },
158
+ "node_modules/@esbuild/aix-ppc64": {
159
+ "version": "0.28.1",
160
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
161
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
162
+ "cpu": [
163
+ "ppc64"
164
+ ],
165
+ "dev": true,
166
+ "license": "MIT",
167
+ "optional": true,
168
+ "os": [
169
+ "aix"
170
+ ],
171
+ "engines": {
172
+ "node": ">=18"
173
+ }
174
+ },
175
+ "node_modules/@esbuild/android-arm": {
176
+ "version": "0.28.1",
177
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
178
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
179
+ "cpu": [
180
+ "arm"
181
+ ],
182
+ "dev": true,
183
+ "license": "MIT",
184
+ "optional": true,
185
+ "os": [
186
+ "android"
187
+ ],
188
+ "engines": {
189
+ "node": ">=18"
190
+ }
191
+ },
192
+ "node_modules/@esbuild/android-arm64": {
193
+ "version": "0.28.1",
194
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
195
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
196
+ "cpu": [
197
+ "arm64"
198
+ ],
199
+ "dev": true,
200
+ "license": "MIT",
201
+ "optional": true,
202
+ "os": [
203
+ "android"
204
+ ],
205
+ "engines": {
206
+ "node": ">=18"
207
+ }
208
+ },
209
+ "node_modules/@esbuild/android-x64": {
210
+ "version": "0.28.1",
211
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
212
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
213
+ "cpu": [
214
+ "x64"
215
+ ],
216
+ "dev": true,
217
+ "license": "MIT",
218
+ "optional": true,
219
+ "os": [
220
+ "android"
221
+ ],
222
+ "engines": {
223
+ "node": ">=18"
224
+ }
225
+ },
226
+ "node_modules/@esbuild/darwin-arm64": {
227
+ "version": "0.28.1",
228
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
229
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
230
+ "cpu": [
231
+ "arm64"
232
+ ],
233
+ "dev": true,
234
+ "license": "MIT",
235
+ "optional": true,
236
+ "os": [
237
+ "darwin"
238
+ ],
239
+ "engines": {
240
+ "node": ">=18"
241
+ }
242
+ },
243
+ "node_modules/@esbuild/darwin-x64": {
244
+ "version": "0.28.1",
245
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
246
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
247
+ "cpu": [
248
+ "x64"
249
+ ],
250
+ "dev": true,
251
+ "license": "MIT",
252
+ "optional": true,
253
+ "os": [
254
+ "darwin"
255
+ ],
256
+ "engines": {
257
+ "node": ">=18"
258
+ }
259
+ },
260
+ "node_modules/@esbuild/freebsd-arm64": {
261
+ "version": "0.28.1",
262
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
263
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
264
+ "cpu": [
265
+ "arm64"
266
+ ],
267
+ "dev": true,
268
+ "license": "MIT",
269
+ "optional": true,
270
+ "os": [
271
+ "freebsd"
272
+ ],
273
+ "engines": {
274
+ "node": ">=18"
275
+ }
276
+ },
277
+ "node_modules/@esbuild/freebsd-x64": {
278
+ "version": "0.28.1",
279
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
280
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
281
+ "cpu": [
282
+ "x64"
283
+ ],
284
+ "dev": true,
285
+ "license": "MIT",
286
+ "optional": true,
287
+ "os": [
288
+ "freebsd"
289
+ ],
290
+ "engines": {
291
+ "node": ">=18"
292
+ }
293
+ },
294
+ "node_modules/@esbuild/linux-arm": {
295
+ "version": "0.28.1",
296
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
297
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
298
+ "cpu": [
299
+ "arm"
300
+ ],
301
+ "dev": true,
302
+ "license": "MIT",
303
+ "optional": true,
304
+ "os": [
305
+ "linux"
306
+ ],
307
+ "engines": {
308
+ "node": ">=18"
309
+ }
310
+ },
311
+ "node_modules/@esbuild/linux-arm64": {
312
+ "version": "0.28.1",
313
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
314
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
315
+ "cpu": [
316
+ "arm64"
317
+ ],
318
+ "dev": true,
319
+ "license": "MIT",
320
+ "optional": true,
321
+ "os": [
322
+ "linux"
323
+ ],
324
+ "engines": {
325
+ "node": ">=18"
326
+ }
327
+ },
328
+ "node_modules/@esbuild/linux-ia32": {
329
+ "version": "0.28.1",
330
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
331
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
332
+ "cpu": [
333
+ "ia32"
334
+ ],
335
+ "dev": true,
336
+ "license": "MIT",
337
+ "optional": true,
338
+ "os": [
339
+ "linux"
340
+ ],
341
+ "engines": {
342
+ "node": ">=18"
343
+ }
344
+ },
345
+ "node_modules/@esbuild/linux-loong64": {
346
+ "version": "0.28.1",
347
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
348
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
349
+ "cpu": [
350
+ "loong64"
351
+ ],
352
+ "dev": true,
353
+ "license": "MIT",
354
+ "optional": true,
355
+ "os": [
356
+ "linux"
357
+ ],
358
+ "engines": {
359
+ "node": ">=18"
360
+ }
361
+ },
362
+ "node_modules/@esbuild/linux-mips64el": {
363
+ "version": "0.28.1",
364
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
365
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
366
+ "cpu": [
367
+ "mips64el"
368
+ ],
369
+ "dev": true,
370
+ "license": "MIT",
371
+ "optional": true,
372
+ "os": [
373
+ "linux"
374
+ ],
375
+ "engines": {
376
+ "node": ">=18"
377
+ }
378
+ },
379
+ "node_modules/@esbuild/linux-ppc64": {
380
+ "version": "0.28.1",
381
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
382
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
383
+ "cpu": [
384
+ "ppc64"
385
+ ],
386
+ "dev": true,
387
+ "license": "MIT",
388
+ "optional": true,
389
+ "os": [
390
+ "linux"
391
+ ],
392
+ "engines": {
393
+ "node": ">=18"
394
+ }
395
+ },
396
+ "node_modules/@esbuild/linux-riscv64": {
397
+ "version": "0.28.1",
398
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
399
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
400
+ "cpu": [
401
+ "riscv64"
402
+ ],
403
+ "dev": true,
404
+ "license": "MIT",
405
+ "optional": true,
406
+ "os": [
407
+ "linux"
408
+ ],
409
+ "engines": {
410
+ "node": ">=18"
411
+ }
412
+ },
413
+ "node_modules/@esbuild/linux-s390x": {
414
+ "version": "0.28.1",
415
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
416
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
417
+ "cpu": [
418
+ "s390x"
419
+ ],
420
+ "dev": true,
421
+ "license": "MIT",
422
+ "optional": true,
423
+ "os": [
424
+ "linux"
425
+ ],
426
+ "engines": {
427
+ "node": ">=18"
428
+ }
429
+ },
430
+ "node_modules/@esbuild/linux-x64": {
431
+ "version": "0.28.1",
432
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
433
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
434
+ "cpu": [
435
+ "x64"
436
+ ],
437
+ "dev": true,
438
+ "license": "MIT",
439
+ "optional": true,
440
+ "os": [
441
+ "linux"
442
+ ],
443
+ "engines": {
444
+ "node": ">=18"
445
+ }
446
+ },
447
+ "node_modules/@esbuild/netbsd-arm64": {
448
+ "version": "0.28.1",
449
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
450
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
451
+ "cpu": [
452
+ "arm64"
453
+ ],
454
+ "dev": true,
455
+ "license": "MIT",
456
+ "optional": true,
457
+ "os": [
458
+ "netbsd"
459
+ ],
460
+ "engines": {
461
+ "node": ">=18"
462
+ }
463
+ },
464
+ "node_modules/@esbuild/netbsd-x64": {
465
+ "version": "0.28.1",
466
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
467
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
468
+ "cpu": [
469
+ "x64"
470
+ ],
471
+ "dev": true,
472
+ "license": "MIT",
473
+ "optional": true,
474
+ "os": [
475
+ "netbsd"
476
+ ],
477
+ "engines": {
478
+ "node": ">=18"
479
+ }
480
+ },
481
+ "node_modules/@esbuild/openbsd-arm64": {
482
+ "version": "0.28.1",
483
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
484
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
485
+ "cpu": [
486
+ "arm64"
487
+ ],
488
+ "dev": true,
489
+ "license": "MIT",
490
+ "optional": true,
491
+ "os": [
492
+ "openbsd"
493
+ ],
494
+ "engines": {
495
+ "node": ">=18"
496
+ }
497
+ },
498
+ "node_modules/@esbuild/openbsd-x64": {
499
+ "version": "0.28.1",
500
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
501
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
502
+ "cpu": [
503
+ "x64"
504
+ ],
505
+ "dev": true,
506
+ "license": "MIT",
507
+ "optional": true,
508
+ "os": [
509
+ "openbsd"
510
+ ],
511
+ "engines": {
512
+ "node": ">=18"
513
+ }
514
+ },
515
+ "node_modules/@esbuild/openharmony-arm64": {
516
+ "version": "0.28.1",
517
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
518
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
519
+ "cpu": [
520
+ "arm64"
521
+ ],
522
+ "dev": true,
523
+ "license": "MIT",
524
+ "optional": true,
525
+ "os": [
526
+ "openharmony"
527
+ ],
528
+ "engines": {
529
+ "node": ">=18"
530
+ }
531
+ },
532
+ "node_modules/@esbuild/sunos-x64": {
533
+ "version": "0.28.1",
534
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
535
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
536
+ "cpu": [
537
+ "x64"
538
+ ],
539
+ "dev": true,
540
+ "license": "MIT",
541
+ "optional": true,
542
+ "os": [
543
+ "sunos"
544
+ ],
545
+ "engines": {
546
+ "node": ">=18"
547
+ }
548
+ },
549
+ "node_modules/@esbuild/win32-arm64": {
550
+ "version": "0.28.1",
551
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
552
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
553
+ "cpu": [
554
+ "arm64"
555
+ ],
556
+ "dev": true,
557
+ "license": "MIT",
558
+ "optional": true,
559
+ "os": [
560
+ "win32"
561
+ ],
562
+ "engines": {
563
+ "node": ">=18"
564
+ }
565
+ },
566
+ "node_modules/@esbuild/win32-ia32": {
567
+ "version": "0.28.1",
568
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
569
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
570
+ "cpu": [
571
+ "ia32"
572
+ ],
573
+ "dev": true,
574
+ "license": "MIT",
575
+ "optional": true,
576
+ "os": [
577
+ "win32"
578
+ ],
579
+ "engines": {
580
+ "node": ">=18"
581
+ }
582
+ },
583
+ "node_modules/@esbuild/win32-x64": {
584
+ "version": "0.28.1",
585
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
586
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
587
+ "cpu": [
588
+ "x64"
589
+ ],
590
+ "dev": true,
591
+ "license": "MIT",
592
+ "optional": true,
593
+ "os": [
594
+ "win32"
595
+ ],
596
+ "engines": {
597
+ "node": ">=18"
598
+ }
599
+ },
600
+ "node_modules/@img/colour": {
601
+ "version": "1.1.0",
602
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
603
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
604
+ "dev": true,
605
+ "license": "MIT",
606
+ "engines": {
607
+ "node": ">=18"
608
+ }
609
+ },
610
+ "node_modules/@img/sharp-darwin-arm64": {
611
+ "version": "0.35.2",
612
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.35.2.tgz",
613
+ "integrity": "sha512-eEieHsMksAW4IiO5NzauESRl2D2qz3J/kwUxUrSfV06A93eEaRfMpHXyUb1mAqrR7i8U9A0GRqE9pjn6u1Jjpg==",
614
+ "cpu": [
615
+ "arm64"
616
+ ],
617
+ "dev": true,
618
+ "license": "Apache-2.0",
619
+ "optional": true,
620
+ "os": [
621
+ "darwin"
622
+ ],
623
+ "engines": {
624
+ "node": ">=20.9.0"
625
+ },
626
+ "funding": {
627
+ "url": "https://opencollective.com/libvips"
628
+ },
629
+ "optionalDependencies": {
630
+ "@img/sharp-libvips-darwin-arm64": "1.3.1"
631
+ }
632
+ },
633
+ "node_modules/@img/sharp-darwin-x64": {
634
+ "version": "0.35.2",
635
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.35.2.tgz",
636
+ "integrity": "sha512-BaktuGPCeHJMARpodR8jK4uKiZrPAy9WrfQW0sdI37clracq8Bp01AYS3SZgi5FS/y5twa9t4+LIuuxQjqRrWw==",
637
+ "cpu": [
638
+ "x64"
639
+ ],
640
+ "dev": true,
641
+ "license": "Apache-2.0",
642
+ "optional": true,
643
+ "os": [
644
+ "darwin"
645
+ ],
646
+ "engines": {
647
+ "node": ">=20.9.0"
648
+ },
649
+ "funding": {
650
+ "url": "https://opencollective.com/libvips"
651
+ },
652
+ "optionalDependencies": {
653
+ "@img/sharp-libvips-darwin-x64": "1.3.1"
654
+ }
655
+ },
656
+ "node_modules/@img/sharp-freebsd-wasm32": {
657
+ "version": "0.35.2",
658
+ "resolved": "https://registry.npmjs.org/@img/sharp-freebsd-wasm32/-/sharp-freebsd-wasm32-0.35.2.tgz",
659
+ "integrity": "sha512-YoAxdnd8hPUkvLHd3bWY+YA8nw3xM/RyRopYucNsWHVSan8NLVM3X2volsfoRDcXdUJPg6tXahSd7HXPK7lRnw==",
660
+ "dev": true,
661
+ "license": "Apache-2.0",
662
+ "optional": true,
663
+ "os": [
664
+ "freebsd"
665
+ ],
666
+ "dependencies": {
667
+ "@img/sharp-wasm32": "0.35.2"
668
+ },
669
+ "engines": {
670
+ "node": ">=20.9.0"
671
+ },
672
+ "funding": {
673
+ "url": "https://opencollective.com/libvips"
674
+ }
675
+ },
676
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
677
+ "version": "1.3.1",
678
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.3.1.tgz",
679
+ "integrity": "sha512-4V/M3roRMTYjiwZY9IOVQOE8OyeCxFAkYmyZDrZl51uOKjibm3oeEJ4WAmLxutAfzFbC9jqUiPs2gbnGflH+7g==",
680
+ "cpu": [
681
+ "arm64"
682
+ ],
683
+ "dev": true,
684
+ "license": "LGPL-3.0-or-later",
685
+ "optional": true,
686
+ "os": [
687
+ "darwin"
688
+ ],
689
+ "funding": {
690
+ "url": "https://opencollective.com/libvips"
691
+ }
692
+ },
693
+ "node_modules/@img/sharp-libvips-darwin-x64": {
694
+ "version": "1.3.1",
695
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.3.1.tgz",
696
+ "integrity": "sha512-c0/DxItpJv2+dGhgycJBBgotdqruGYDvA79drdh0MD1dFpy7JzJ/PlXwi1H4rFf0eTy8tgbI91aHDnZIceY3jQ==",
697
+ "cpu": [
698
+ "x64"
699
+ ],
700
+ "dev": true,
701
+ "license": "LGPL-3.0-or-later",
702
+ "optional": true,
703
+ "os": [
704
+ "darwin"
705
+ ],
706
+ "funding": {
707
+ "url": "https://opencollective.com/libvips"
708
+ }
709
+ },
710
+ "node_modules/@img/sharp-libvips-linux-arm": {
711
+ "version": "1.3.1",
712
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.3.1.tgz",
713
+ "integrity": "sha512-aGGy9aWzXgHBG7HNyQPWorZthlp7+x6fDRoPAQbGO3ThcttuTyKIx3NuSHb6zb4gBNq6/yNn9f1cy9nFKS/Vmg==",
714
+ "cpu": [
715
+ "arm"
716
+ ],
717
+ "dev": true,
718
+ "libc": [
719
+ "glibc"
720
+ ],
721
+ "license": "LGPL-3.0-or-later",
722
+ "optional": true,
723
+ "os": [
724
+ "linux"
725
+ ],
726
+ "funding": {
727
+ "url": "https://opencollective.com/libvips"
728
+ }
729
+ },
730
+ "node_modules/@img/sharp-libvips-linux-arm64": {
731
+ "version": "1.3.1",
732
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.3.1.tgz",
733
+ "integrity": "sha512-JznefmcK9j1JKPz8AkQDh89kjojubyfOasWBPKfzMIhPwsgDy9evpE/naJTXXXmghS1iFwR8u/kTwh/I2/+GCw==",
734
+ "cpu": [
735
+ "arm64"
736
+ ],
737
+ "dev": true,
738
+ "libc": [
739
+ "glibc"
740
+ ],
741
+ "license": "LGPL-3.0-or-later",
742
+ "optional": true,
743
+ "os": [
744
+ "linux"
745
+ ],
746
+ "funding": {
747
+ "url": "https://opencollective.com/libvips"
748
+ }
749
+ },
750
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
751
+ "version": "1.3.1",
752
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.3.1.tgz",
753
+ "integrity": "sha512-1EkwGNCZk6iWNCMWqrvdJ+r1j0PT1zIz60CNPhYnJlK/zyeWqlsPZIe+ocBVqPF8k/Ssee/NCk+tE9Ryrko6ng==",
754
+ "cpu": [
755
+ "ppc64"
756
+ ],
757
+ "dev": true,
758
+ "libc": [
759
+ "glibc"
760
+ ],
761
+ "license": "LGPL-3.0-or-later",
762
+ "optional": true,
763
+ "os": [
764
+ "linux"
765
+ ],
766
+ "funding": {
767
+ "url": "https://opencollective.com/libvips"
768
+ }
769
+ },
770
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
771
+ "version": "1.3.1",
772
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.3.1.tgz",
773
+ "integrity": "sha512-Ilays+w2bXdnxzxtQdmXR62u8o8GYa3eL4+Gr+1KiE4xperMZUslRaVPJwwPkzlHEjGfXAfRVAa/7CYCtSqsBw==",
774
+ "cpu": [
775
+ "riscv64"
776
+ ],
777
+ "dev": true,
778
+ "libc": [
779
+ "glibc"
780
+ ],
781
+ "license": "LGPL-3.0-or-later",
782
+ "optional": true,
783
+ "os": [
784
+ "linux"
785
+ ],
786
+ "funding": {
787
+ "url": "https://opencollective.com/libvips"
788
+ }
789
+ },
790
+ "node_modules/@img/sharp-libvips-linux-s390x": {
791
+ "version": "1.3.1",
792
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.3.1.tgz",
793
+ "integrity": "sha512-VfBwVHQTbRoj4XlpA/KLZ7ltgMpz+4WSejFzQ+GnoImjo1PtEJ59QB2qR1xQEeRPYIkNrPIm2L4cICMvz4C2ew==",
794
+ "cpu": [
795
+ "s390x"
796
+ ],
797
+ "dev": true,
798
+ "libc": [
799
+ "glibc"
800
+ ],
801
+ "license": "LGPL-3.0-or-later",
802
+ "optional": true,
803
+ "os": [
804
+ "linux"
805
+ ],
806
+ "funding": {
807
+ "url": "https://opencollective.com/libvips"
808
+ }
809
+ },
810
+ "node_modules/@img/sharp-libvips-linux-x64": {
811
+ "version": "1.3.1",
812
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.3.1.tgz",
813
+ "integrity": "sha512-+c8ukgwU62DS54nCAjw7keOfHUkmr0B5QHEdcOqRnodF/MNXJbVI8Eopoj4B/0H8Asr65I+A4Amrn7a85/md6A==",
814
+ "cpu": [
815
+ "x64"
816
+ ],
817
+ "dev": true,
818
+ "libc": [
819
+ "glibc"
820
+ ],
821
+ "license": "LGPL-3.0-or-later",
822
+ "optional": true,
823
+ "os": [
824
+ "linux"
825
+ ],
826
+ "funding": {
827
+ "url": "https://opencollective.com/libvips"
828
+ }
829
+ },
830
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
831
+ "version": "1.3.1",
832
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.3.1.tgz",
833
+ "integrity": "sha512-qlKb/pwbkAi1WMsJrYHk7CuDrd12s27U2QnRhFYUoJNrRCmkosMTttuRFat/DDB3IlDm5qE1TJgZ4JDnHX8Ldw==",
834
+ "cpu": [
835
+ "arm64"
836
+ ],
837
+ "dev": true,
838
+ "libc": [
839
+ "musl"
840
+ ],
841
+ "license": "LGPL-3.0-or-later",
842
+ "optional": true,
843
+ "os": [
844
+ "linux"
845
+ ],
846
+ "funding": {
847
+ "url": "https://opencollective.com/libvips"
848
+ }
849
+ },
850
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
851
+ "version": "1.3.1",
852
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.3.1.tgz",
853
+ "integrity": "sha512-yO21HwoUVLN8Qa+/SBjQLMYwBWAVJjeGPNe+hc0OUeMeifEtJqu5a1c4HayE1nNpDih9y3/KkoltfkDodmKAlg==",
854
+ "cpu": [
855
+ "x64"
856
+ ],
857
+ "dev": true,
858
+ "libc": [
859
+ "musl"
860
+ ],
861
+ "license": "LGPL-3.0-or-later",
862
+ "optional": true,
863
+ "os": [
864
+ "linux"
865
+ ],
866
+ "funding": {
867
+ "url": "https://opencollective.com/libvips"
868
+ }
869
+ },
870
+ "node_modules/@img/sharp-linux-arm": {
871
+ "version": "0.35.2",
872
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.35.2.tgz",
873
+ "integrity": "sha512-SE4kzF2mepn6z+6E7L6lsV8FzuLL6IPQdyX8ZiwROAG/G8td+hP/m7FsFPwidtrF19gvajuC9l6TxAVcsA4S7A==",
874
+ "cpu": [
875
+ "arm"
876
+ ],
877
+ "dev": true,
878
+ "libc": [
879
+ "glibc"
880
+ ],
881
+ "license": "Apache-2.0",
882
+ "optional": true,
883
+ "os": [
884
+ "linux"
885
+ ],
886
+ "engines": {
887
+ "node": ">=20.9.0"
888
+ },
889
+ "funding": {
890
+ "url": "https://opencollective.com/libvips"
891
+ },
892
+ "optionalDependencies": {
893
+ "@img/sharp-libvips-linux-arm": "1.3.1"
894
+ }
895
+ },
896
+ "node_modules/@img/sharp-linux-arm64": {
897
+ "version": "0.35.2",
898
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.35.2.tgz",
899
+ "integrity": "sha512-af12Pnd0ZGu2HfP8NayB0kk6eC/lrfbQE6HlR4jD+34wdJ1Vw9TF6TMn6ZvffT+WgqVsl0hRbmNvz2u/23VmwA==",
900
+ "cpu": [
901
+ "arm64"
902
+ ],
903
+ "dev": true,
904
+ "libc": [
905
+ "glibc"
906
+ ],
907
+ "license": "Apache-2.0",
908
+ "optional": true,
909
+ "os": [
910
+ "linux"
911
+ ],
912
+ "engines": {
913
+ "node": ">=20.9.0"
914
+ },
915
+ "funding": {
916
+ "url": "https://opencollective.com/libvips"
917
+ },
918
+ "optionalDependencies": {
919
+ "@img/sharp-libvips-linux-arm64": "1.3.1"
920
+ }
921
+ },
922
+ "node_modules/@img/sharp-linux-ppc64": {
923
+ "version": "0.35.2",
924
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.35.2.tgz",
925
+ "integrity": "sha512-hYSBm7zcNtDCozCxQHYZJiu63b/bXsgRZuOxCIBZsStMM9Vap47iFHdbX4kCvQsblPB/k+clhELpdQJHQLSHvg==",
926
+ "cpu": [
927
+ "ppc64"
928
+ ],
929
+ "dev": true,
930
+ "libc": [
931
+ "glibc"
932
+ ],
933
+ "license": "Apache-2.0",
934
+ "optional": true,
935
+ "os": [
936
+ "linux"
937
+ ],
938
+ "engines": {
939
+ "node": ">=20.9.0"
940
+ },
941
+ "funding": {
942
+ "url": "https://opencollective.com/libvips"
943
+ },
944
+ "optionalDependencies": {
945
+ "@img/sharp-libvips-linux-ppc64": "1.3.1"
946
+ }
947
+ },
948
+ "node_modules/@img/sharp-linux-riscv64": {
949
+ "version": "0.35.2",
950
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.35.2.tgz",
951
+ "integrity": "sha512-qQt0Kc13+Hoan/Awq/qMSQw3L+RI1NCRPgD5cUJ/1WSSmIoysLOc72jlRM3E0OHN9Yr313jgeQ2T+zW+F03QFA==",
952
+ "cpu": [
953
+ "riscv64"
954
+ ],
955
+ "dev": true,
956
+ "libc": [
957
+ "glibc"
958
+ ],
959
+ "license": "Apache-2.0",
960
+ "optional": true,
961
+ "os": [
962
+ "linux"
963
+ ],
964
+ "engines": {
965
+ "node": ">=20.9.0"
966
+ },
967
+ "funding": {
968
+ "url": "https://opencollective.com/libvips"
969
+ },
970
+ "optionalDependencies": {
971
+ "@img/sharp-libvips-linux-riscv64": "1.3.1"
972
+ }
973
+ },
974
+ "node_modules/@img/sharp-linux-s390x": {
975
+ "version": "0.35.2",
976
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.35.2.tgz",
977
+ "integrity": "sha512-E4fLLfRPzDLlEeDaTzI98OFLcv++WL5ChLLMwPoVd0CIoZQqupBSNbOisPL5am9XsbQ9T84+iiMpUvbFtkunbA==",
978
+ "cpu": [
979
+ "s390x"
980
+ ],
981
+ "dev": true,
982
+ "libc": [
983
+ "glibc"
984
+ ],
985
+ "license": "Apache-2.0",
986
+ "optional": true,
987
+ "os": [
988
+ "linux"
989
+ ],
990
+ "engines": {
991
+ "node": ">=20.9.0"
992
+ },
993
+ "funding": {
994
+ "url": "https://opencollective.com/libvips"
995
+ },
996
+ "optionalDependencies": {
997
+ "@img/sharp-libvips-linux-s390x": "1.3.1"
998
+ }
999
+ },
1000
+ "node_modules/@img/sharp-linux-x64": {
1001
+ "version": "0.35.2",
1002
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.35.2.tgz",
1003
+ "integrity": "sha512-gi0zFJJRLswfCZmHtJdikXPOc5u7qamSOS3NHedLqLd4W8Q0NqjdBr6TTRIgsfFjqfTsHFgdfvJ9LwqSgcHiAA==",
1004
+ "cpu": [
1005
+ "x64"
1006
+ ],
1007
+ "dev": true,
1008
+ "libc": [
1009
+ "glibc"
1010
+ ],
1011
+ "license": "Apache-2.0",
1012
+ "optional": true,
1013
+ "os": [
1014
+ "linux"
1015
+ ],
1016
+ "engines": {
1017
+ "node": ">=20.9.0"
1018
+ },
1019
+ "funding": {
1020
+ "url": "https://opencollective.com/libvips"
1021
+ },
1022
+ "optionalDependencies": {
1023
+ "@img/sharp-libvips-linux-x64": "1.3.1"
1024
+ }
1025
+ },
1026
+ "node_modules/@img/sharp-linuxmusl-arm64": {
1027
+ "version": "0.35.2",
1028
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.35.2.tgz",
1029
+ "integrity": "sha512-siWbOW1u6HFnFLrp0waKyW7VEf7jYvcDWdrXEFa8AkdAQgEvuu5Fz8/Y70w9EeqAdwDtfU012BhEHHaDqvQNzg==",
1030
+ "cpu": [
1031
+ "arm64"
1032
+ ],
1033
+ "dev": true,
1034
+ "libc": [
1035
+ "musl"
1036
+ ],
1037
+ "license": "Apache-2.0",
1038
+ "optional": true,
1039
+ "os": [
1040
+ "linux"
1041
+ ],
1042
+ "engines": {
1043
+ "node": ">=20.9.0"
1044
+ },
1045
+ "funding": {
1046
+ "url": "https://opencollective.com/libvips"
1047
+ },
1048
+ "optionalDependencies": {
1049
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.1"
1050
+ }
1051
+ },
1052
+ "node_modules/@img/sharp-linuxmusl-x64": {
1053
+ "version": "0.35.2",
1054
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.35.2.tgz",
1055
+ "integrity": "sha512-YBqMMcjDi4QGYiSn4vNOYBhmlC4z5AXqkOUUqI2e0AFA4urNv4ESgOgwNl3K+4etQhha0twXlzeF20bbULm9Yg==",
1056
+ "cpu": [
1057
+ "x64"
1058
+ ],
1059
+ "dev": true,
1060
+ "libc": [
1061
+ "musl"
1062
+ ],
1063
+ "license": "Apache-2.0",
1064
+ "optional": true,
1065
+ "os": [
1066
+ "linux"
1067
+ ],
1068
+ "engines": {
1069
+ "node": ">=20.9.0"
1070
+ },
1071
+ "funding": {
1072
+ "url": "https://opencollective.com/libvips"
1073
+ },
1074
+ "optionalDependencies": {
1075
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.1"
1076
+ }
1077
+ },
1078
+ "node_modules/@img/sharp-wasm32": {
1079
+ "version": "0.35.2",
1080
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.35.2.tgz",
1081
+ "integrity": "sha512-Mrv4JQNYVQ94xH+jzZ9r+gowleN8mv2FTgKT+PI6bx5C0G8TdNYndu161pg2i7uoBwxy2ImPMHrJOM2LZef7Bw==",
1082
+ "dev": true,
1083
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
1084
+ "optional": true,
1085
+ "dependencies": {
1086
+ "@emnapi/runtime": "^1.11.1"
1087
+ },
1088
+ "engines": {
1089
+ "node": ">=20.9.0"
1090
+ },
1091
+ "funding": {
1092
+ "url": "https://opencollective.com/libvips"
1093
+ }
1094
+ },
1095
+ "node_modules/@img/sharp-webcontainers-wasm32": {
1096
+ "version": "0.35.2",
1097
+ "resolved": "https://registry.npmjs.org/@img/sharp-webcontainers-wasm32/-/sharp-webcontainers-wasm32-0.35.2.tgz",
1098
+ "integrity": "sha512-QNV27pxs9wpApEiCfvHM1RDoP1w1+2KrUWWDPEhEwg+latvOrfuhWrHWZKwdSFwU6jh3myjw/yOCRsUIuOft3g==",
1099
+ "cpu": [
1100
+ "wasm32"
1101
+ ],
1102
+ "dev": true,
1103
+ "license": "Apache-2.0",
1104
+ "optional": true,
1105
+ "dependencies": {
1106
+ "@img/sharp-wasm32": "0.35.2"
1107
+ },
1108
+ "engines": {
1109
+ "node": ">=20.9.0"
1110
+ },
1111
+ "funding": {
1112
+ "url": "https://opencollective.com/libvips"
1113
+ }
1114
+ },
1115
+ "node_modules/@img/sharp-win32-arm64": {
1116
+ "version": "0.35.2",
1117
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.35.2.tgz",
1118
+ "integrity": "sha512-BiVRYc/t6/Vl3e1hBx0hugG4oN9Pydf4fgMSpxTQJmwGUg/YoXTWHiFeRymHfCZzifxu4F4rpk/I67D0LQ20wQ==",
1119
+ "cpu": [
1120
+ "arm64"
1121
+ ],
1122
+ "dev": true,
1123
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1124
+ "optional": true,
1125
+ "os": [
1126
+ "win32"
1127
+ ],
1128
+ "engines": {
1129
+ "node": ">=20.9.0"
1130
+ },
1131
+ "funding": {
1132
+ "url": "https://opencollective.com/libvips"
1133
+ }
1134
+ },
1135
+ "node_modules/@img/sharp-win32-ia32": {
1136
+ "version": "0.35.2",
1137
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.35.2.tgz",
1138
+ "integrity": "sha512-YYEhx9PImCC7T0tI8JDMi4DB9LwLCXCU5OWNYEXAxh5Q1ShKkyC6byxzoBJ3gEFDnH2lQckWuDe70G7mB2XJog==",
1139
+ "cpu": [
1140
+ "ia32"
1141
+ ],
1142
+ "dev": true,
1143
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1144
+ "optional": true,
1145
+ "os": [
1146
+ "win32"
1147
+ ],
1148
+ "engines": {
1149
+ "node": "^20.9.0"
1150
+ },
1151
+ "funding": {
1152
+ "url": "https://opencollective.com/libvips"
1153
+ }
1154
+ },
1155
+ "node_modules/@img/sharp-win32-x64": {
1156
+ "version": "0.35.2",
1157
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.35.2.tgz",
1158
+ "integrity": "sha512-imoOyBcoM/iiUr4J6VPpCNjPnjvP/Gks95898yB8YqoGGYmHYbOyCuNv9FMhFgtaiHFGbHW8bxKqRV6VjtXThQ==",
1159
+ "cpu": [
1160
+ "x64"
1161
+ ],
1162
+ "dev": true,
1163
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
1164
+ "optional": true,
1165
+ "os": [
1166
+ "win32"
1167
+ ],
1168
+ "engines": {
1169
+ "node": ">=20.9.0"
1170
+ },
1171
+ "funding": {
1172
+ "url": "https://opencollective.com/libvips"
1173
+ }
1174
+ },
1175
+ "node_modules/@jridgewell/resolve-uri": {
1176
+ "version": "3.1.2",
1177
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1178
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1179
+ "dev": true,
1180
+ "license": "MIT",
1181
+ "engines": {
1182
+ "node": ">=6.0.0"
1183
+ }
1184
+ },
1185
+ "node_modules/@jridgewell/sourcemap-codec": {
1186
+ "version": "1.5.5",
1187
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1188
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1189
+ "dev": true,
1190
+ "license": "MIT"
1191
+ },
1192
+ "node_modules/@jridgewell/trace-mapping": {
1193
+ "version": "0.3.9",
1194
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
1195
+ "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
1196
+ "dev": true,
1197
+ "license": "MIT",
1198
+ "dependencies": {
1199
+ "@jridgewell/resolve-uri": "^3.0.3",
1200
+ "@jridgewell/sourcemap-codec": "^1.4.10"
1201
+ }
1202
+ },
1203
+ "node_modules/@poppinss/colors": {
1204
+ "version": "4.1.6",
1205
+ "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz",
1206
+ "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==",
1207
+ "dev": true,
1208
+ "license": "MIT",
1209
+ "dependencies": {
1210
+ "kleur": "^4.1.5"
1211
+ }
1212
+ },
1213
+ "node_modules/@poppinss/dumper": {
1214
+ "version": "0.6.5",
1215
+ "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz",
1216
+ "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==",
1217
+ "dev": true,
1218
+ "license": "MIT",
1219
+ "dependencies": {
1220
+ "@poppinss/colors": "^4.1.5",
1221
+ "@sindresorhus/is": "^7.0.2",
1222
+ "supports-color": "^10.0.0"
1223
+ }
1224
+ },
1225
+ "node_modules/@poppinss/exception": {
1226
+ "version": "1.2.3",
1227
+ "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz",
1228
+ "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==",
1229
+ "dev": true,
1230
+ "license": "MIT"
1231
+ },
1232
+ "node_modules/@sindresorhus/is": {
1233
+ "version": "7.2.0",
1234
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz",
1235
+ "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==",
1236
+ "dev": true,
1237
+ "license": "MIT",
1238
+ "engines": {
1239
+ "node": ">=18"
1240
+ },
1241
+ "funding": {
1242
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
1243
+ }
1244
+ },
1245
+ "node_modules/@speed-highlight/core": {
1246
+ "version": "1.2.24",
1247
+ "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.24.tgz",
1248
+ "integrity": "sha512-qeW2e1l78afw8VhRPfPQ1Gjj+KU5XFQ/OFV5ti6eTa9bruO7mJyZtA4vw0ofqmA3tKCkROE9xLk3VZoeRc98nw==",
1249
+ "dev": true,
1250
+ "license": "CC0-1.0"
1251
+ },
1252
+ "node_modules/@typescript/typescript-aix-ppc64": {
1253
+ "version": "7.0.2",
1254
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
1255
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
1256
+ "cpu": [
1257
+ "ppc64"
1258
+ ],
1259
+ "dev": true,
1260
+ "license": "Apache-2.0",
1261
+ "optional": true,
1262
+ "os": [
1263
+ "aix"
1264
+ ],
1265
+ "engines": {
1266
+ "node": ">=16.20.0"
1267
+ }
1268
+ },
1269
+ "node_modules/@typescript/typescript-darwin-arm64": {
1270
+ "version": "7.0.2",
1271
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
1272
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
1273
+ "cpu": [
1274
+ "arm64"
1275
+ ],
1276
+ "dev": true,
1277
+ "license": "Apache-2.0",
1278
+ "optional": true,
1279
+ "os": [
1280
+ "darwin"
1281
+ ],
1282
+ "engines": {
1283
+ "node": ">=16.20.0"
1284
+ }
1285
+ },
1286
+ "node_modules/@typescript/typescript-darwin-x64": {
1287
+ "version": "7.0.2",
1288
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
1289
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
1290
+ "cpu": [
1291
+ "x64"
1292
+ ],
1293
+ "dev": true,
1294
+ "license": "Apache-2.0",
1295
+ "optional": true,
1296
+ "os": [
1297
+ "darwin"
1298
+ ],
1299
+ "engines": {
1300
+ "node": ">=16.20.0"
1301
+ }
1302
+ },
1303
+ "node_modules/@typescript/typescript-freebsd-arm64": {
1304
+ "version": "7.0.2",
1305
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
1306
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
1307
+ "cpu": [
1308
+ "arm64"
1309
+ ],
1310
+ "dev": true,
1311
+ "license": "Apache-2.0",
1312
+ "optional": true,
1313
+ "os": [
1314
+ "freebsd"
1315
+ ],
1316
+ "engines": {
1317
+ "node": ">=16.20.0"
1318
+ }
1319
+ },
1320
+ "node_modules/@typescript/typescript-freebsd-x64": {
1321
+ "version": "7.0.2",
1322
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
1323
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
1324
+ "cpu": [
1325
+ "x64"
1326
+ ],
1327
+ "dev": true,
1328
+ "license": "Apache-2.0",
1329
+ "optional": true,
1330
+ "os": [
1331
+ "freebsd"
1332
+ ],
1333
+ "engines": {
1334
+ "node": ">=16.20.0"
1335
+ }
1336
+ },
1337
+ "node_modules/@typescript/typescript-linux-arm": {
1338
+ "version": "7.0.2",
1339
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
1340
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
1341
+ "cpu": [
1342
+ "arm"
1343
+ ],
1344
+ "dev": true,
1345
+ "license": "Apache-2.0",
1346
+ "optional": true,
1347
+ "os": [
1348
+ "linux"
1349
+ ],
1350
+ "engines": {
1351
+ "node": ">=16.20.0"
1352
+ }
1353
+ },
1354
+ "node_modules/@typescript/typescript-linux-arm64": {
1355
+ "version": "7.0.2",
1356
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
1357
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
1358
+ "cpu": [
1359
+ "arm64"
1360
+ ],
1361
+ "dev": true,
1362
+ "license": "Apache-2.0",
1363
+ "optional": true,
1364
+ "os": [
1365
+ "linux"
1366
+ ],
1367
+ "engines": {
1368
+ "node": ">=16.20.0"
1369
+ }
1370
+ },
1371
+ "node_modules/@typescript/typescript-linux-loong64": {
1372
+ "version": "7.0.2",
1373
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
1374
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
1375
+ "cpu": [
1376
+ "loong64"
1377
+ ],
1378
+ "dev": true,
1379
+ "license": "Apache-2.0",
1380
+ "optional": true,
1381
+ "os": [
1382
+ "linux"
1383
+ ],
1384
+ "engines": {
1385
+ "node": ">=16.20.0"
1386
+ }
1387
+ },
1388
+ "node_modules/@typescript/typescript-linux-mips64el": {
1389
+ "version": "7.0.2",
1390
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
1391
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
1392
+ "cpu": [
1393
+ "mips64el"
1394
+ ],
1395
+ "dev": true,
1396
+ "license": "Apache-2.0",
1397
+ "optional": true,
1398
+ "os": [
1399
+ "linux"
1400
+ ],
1401
+ "engines": {
1402
+ "node": ">=16.20.0"
1403
+ }
1404
+ },
1405
+ "node_modules/@typescript/typescript-linux-ppc64": {
1406
+ "version": "7.0.2",
1407
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
1408
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
1409
+ "cpu": [
1410
+ "ppc64"
1411
+ ],
1412
+ "dev": true,
1413
+ "license": "Apache-2.0",
1414
+ "optional": true,
1415
+ "os": [
1416
+ "linux"
1417
+ ],
1418
+ "engines": {
1419
+ "node": ">=16.20.0"
1420
+ }
1421
+ },
1422
+ "node_modules/@typescript/typescript-linux-riscv64": {
1423
+ "version": "7.0.2",
1424
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
1425
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
1426
+ "cpu": [
1427
+ "riscv64"
1428
+ ],
1429
+ "dev": true,
1430
+ "license": "Apache-2.0",
1431
+ "optional": true,
1432
+ "os": [
1433
+ "linux"
1434
+ ],
1435
+ "engines": {
1436
+ "node": ">=16.20.0"
1437
+ }
1438
+ },
1439
+ "node_modules/@typescript/typescript-linux-s390x": {
1440
+ "version": "7.0.2",
1441
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
1442
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
1443
+ "cpu": [
1444
+ "s390x"
1445
+ ],
1446
+ "dev": true,
1447
+ "license": "Apache-2.0",
1448
+ "optional": true,
1449
+ "os": [
1450
+ "linux"
1451
+ ],
1452
+ "engines": {
1453
+ "node": ">=16.20.0"
1454
+ }
1455
+ },
1456
+ "node_modules/@typescript/typescript-linux-x64": {
1457
+ "version": "7.0.2",
1458
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
1459
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
1460
+ "cpu": [
1461
+ "x64"
1462
+ ],
1463
+ "dev": true,
1464
+ "license": "Apache-2.0",
1465
+ "optional": true,
1466
+ "os": [
1467
+ "linux"
1468
+ ],
1469
+ "engines": {
1470
+ "node": ">=16.20.0"
1471
+ }
1472
+ },
1473
+ "node_modules/@typescript/typescript-netbsd-arm64": {
1474
+ "version": "7.0.2",
1475
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
1476
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
1477
+ "cpu": [
1478
+ "arm64"
1479
+ ],
1480
+ "dev": true,
1481
+ "license": "Apache-2.0",
1482
+ "optional": true,
1483
+ "os": [
1484
+ "netbsd"
1485
+ ],
1486
+ "engines": {
1487
+ "node": ">=16.20.0"
1488
+ }
1489
+ },
1490
+ "node_modules/@typescript/typescript-netbsd-x64": {
1491
+ "version": "7.0.2",
1492
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
1493
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
1494
+ "cpu": [
1495
+ "x64"
1496
+ ],
1497
+ "dev": true,
1498
+ "license": "Apache-2.0",
1499
+ "optional": true,
1500
+ "os": [
1501
+ "netbsd"
1502
+ ],
1503
+ "engines": {
1504
+ "node": ">=16.20.0"
1505
+ }
1506
+ },
1507
+ "node_modules/@typescript/typescript-openbsd-arm64": {
1508
+ "version": "7.0.2",
1509
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
1510
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
1511
+ "cpu": [
1512
+ "arm64"
1513
+ ],
1514
+ "dev": true,
1515
+ "license": "Apache-2.0",
1516
+ "optional": true,
1517
+ "os": [
1518
+ "openbsd"
1519
+ ],
1520
+ "engines": {
1521
+ "node": ">=16.20.0"
1522
+ }
1523
+ },
1524
+ "node_modules/@typescript/typescript-openbsd-x64": {
1525
+ "version": "7.0.2",
1526
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
1527
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
1528
+ "cpu": [
1529
+ "x64"
1530
+ ],
1531
+ "dev": true,
1532
+ "license": "Apache-2.0",
1533
+ "optional": true,
1534
+ "os": [
1535
+ "openbsd"
1536
+ ],
1537
+ "engines": {
1538
+ "node": ">=16.20.0"
1539
+ }
1540
+ },
1541
+ "node_modules/@typescript/typescript-sunos-x64": {
1542
+ "version": "7.0.2",
1543
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
1544
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
1545
+ "cpu": [
1546
+ "x64"
1547
+ ],
1548
+ "dev": true,
1549
+ "license": "Apache-2.0",
1550
+ "optional": true,
1551
+ "os": [
1552
+ "sunos"
1553
+ ],
1554
+ "engines": {
1555
+ "node": ">=16.20.0"
1556
+ }
1557
+ },
1558
+ "node_modules/@typescript/typescript-win32-arm64": {
1559
+ "version": "7.0.2",
1560
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
1561
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
1562
+ "cpu": [
1563
+ "arm64"
1564
+ ],
1565
+ "dev": true,
1566
+ "license": "Apache-2.0",
1567
+ "optional": true,
1568
+ "os": [
1569
+ "win32"
1570
+ ],
1571
+ "engines": {
1572
+ "node": ">=16.20.0"
1573
+ }
1574
+ },
1575
+ "node_modules/@typescript/typescript-win32-x64": {
1576
+ "version": "7.0.2",
1577
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
1578
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
1579
+ "cpu": [
1580
+ "x64"
1581
+ ],
1582
+ "dev": true,
1583
+ "license": "Apache-2.0",
1584
+ "optional": true,
1585
+ "os": [
1586
+ "win32"
1587
+ ],
1588
+ "engines": {
1589
+ "node": ">=16.20.0"
1590
+ }
1591
+ },
1592
+ "node_modules/blake3-wasm": {
1593
+ "version": "2.1.5",
1594
+ "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz",
1595
+ "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==",
1596
+ "dev": true,
1597
+ "license": "MIT"
1598
+ },
1599
+ "node_modules/cookie": {
1600
+ "version": "1.1.1",
1601
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
1602
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
1603
+ "dev": true,
1604
+ "license": "MIT",
1605
+ "engines": {
1606
+ "node": ">=18"
1607
+ },
1608
+ "funding": {
1609
+ "type": "opencollective",
1610
+ "url": "https://opencollective.com/express"
1611
+ }
1612
+ },
1613
+ "node_modules/detect-libc": {
1614
+ "version": "2.1.2",
1615
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1616
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1617
+ "dev": true,
1618
+ "license": "Apache-2.0",
1619
+ "engines": {
1620
+ "node": ">=8"
1621
+ }
1622
+ },
1623
+ "node_modules/error-stack-parser-es": {
1624
+ "version": "1.0.5",
1625
+ "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
1626
+ "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
1627
+ "dev": true,
1628
+ "license": "MIT",
1629
+ "funding": {
1630
+ "url": "https://github.com/sponsors/antfu"
1631
+ }
1632
+ },
1633
+ "node_modules/esbuild": {
1634
+ "version": "0.28.1",
1635
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
1636
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
1637
+ "dev": true,
1638
+ "hasInstallScript": true,
1639
+ "license": "MIT",
1640
+ "bin": {
1641
+ "esbuild": "bin/esbuild"
1642
+ },
1643
+ "engines": {
1644
+ "node": ">=18"
1645
+ },
1646
+ "optionalDependencies": {
1647
+ "@esbuild/aix-ppc64": "0.28.1",
1648
+ "@esbuild/android-arm": "0.28.1",
1649
+ "@esbuild/android-arm64": "0.28.1",
1650
+ "@esbuild/android-x64": "0.28.1",
1651
+ "@esbuild/darwin-arm64": "0.28.1",
1652
+ "@esbuild/darwin-x64": "0.28.1",
1653
+ "@esbuild/freebsd-arm64": "0.28.1",
1654
+ "@esbuild/freebsd-x64": "0.28.1",
1655
+ "@esbuild/linux-arm": "0.28.1",
1656
+ "@esbuild/linux-arm64": "0.28.1",
1657
+ "@esbuild/linux-ia32": "0.28.1",
1658
+ "@esbuild/linux-loong64": "0.28.1",
1659
+ "@esbuild/linux-mips64el": "0.28.1",
1660
+ "@esbuild/linux-ppc64": "0.28.1",
1661
+ "@esbuild/linux-riscv64": "0.28.1",
1662
+ "@esbuild/linux-s390x": "0.28.1",
1663
+ "@esbuild/linux-x64": "0.28.1",
1664
+ "@esbuild/netbsd-arm64": "0.28.1",
1665
+ "@esbuild/netbsd-x64": "0.28.1",
1666
+ "@esbuild/openbsd-arm64": "0.28.1",
1667
+ "@esbuild/openbsd-x64": "0.28.1",
1668
+ "@esbuild/openharmony-arm64": "0.28.1",
1669
+ "@esbuild/sunos-x64": "0.28.1",
1670
+ "@esbuild/win32-arm64": "0.28.1",
1671
+ "@esbuild/win32-ia32": "0.28.1",
1672
+ "@esbuild/win32-x64": "0.28.1"
1673
+ }
1674
+ },
1675
+ "node_modules/fsevents": {
1676
+ "version": "2.3.3",
1677
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1678
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1679
+ "dev": true,
1680
+ "hasInstallScript": true,
1681
+ "license": "MIT",
1682
+ "optional": true,
1683
+ "os": [
1684
+ "darwin"
1685
+ ],
1686
+ "engines": {
1687
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1688
+ }
1689
+ },
1690
+ "node_modules/kleur": {
1691
+ "version": "4.1.5",
1692
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
1693
+ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
1694
+ "dev": true,
1695
+ "license": "MIT",
1696
+ "engines": {
1697
+ "node": ">=6"
1698
+ }
1699
+ },
1700
+ "node_modules/miniflare": {
1701
+ "version": "5.20260825.0-alpha",
1702
+ "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-5.20260825.0-alpha.tgz",
1703
+ "integrity": "sha512-ZwlF6LuX43ilx9EwMRDKHenoGXiNdcKSyGx5aPaJhuozujVZasb2lRR7t3ojJZSnVzwDPsBBYCu8lLnc+/KIgQ==",
1704
+ "dev": true,
1705
+ "license": "MIT",
1706
+ "dependencies": {
1707
+ "@cspotcode/source-map-support": "0.8.1",
1708
+ "sharp": "0.35.2",
1709
+ "undici": "7.29.0",
1710
+ "workerd": "1.20260825.1",
1711
+ "ws": "8.21.0",
1712
+ "youch": "4.1.0-beta.10"
1713
+ },
1714
+ "engines": {
1715
+ "node": ">=22.0.0"
1716
+ }
1717
+ },
1718
+ "node_modules/path-to-regexp": {
1719
+ "version": "6.3.0",
1720
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
1721
+ "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
1722
+ "dev": true,
1723
+ "license": "MIT"
1724
+ },
1725
+ "node_modules/pathe": {
1726
+ "version": "2.0.3",
1727
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
1728
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
1729
+ "dev": true,
1730
+ "license": "MIT"
1731
+ },
1732
+ "node_modules/semver": {
1733
+ "version": "7.8.5",
1734
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
1735
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
1736
+ "dev": true,
1737
+ "license": "ISC",
1738
+ "bin": {
1739
+ "semver": "bin/semver.js"
1740
+ },
1741
+ "engines": {
1742
+ "node": ">=10"
1743
+ }
1744
+ },
1745
+ "node_modules/sharp": {
1746
+ "version": "0.35.2",
1747
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.35.2.tgz",
1748
+ "integrity": "sha512-FVtFjtBCMiJS6yb5CX7Sop45WFMpeGw6oRKuJnXYgf/f1ms/D7LE/ZUSNxnW7rZ/dbslQWYkoqFHGPaDBtaK4w==",
1749
+ "dev": true,
1750
+ "license": "Apache-2.0",
1751
+ "dependencies": {
1752
+ "@img/colour": "^1.1.0",
1753
+ "detect-libc": "^2.1.2",
1754
+ "semver": "^7.8.4"
1755
+ },
1756
+ "engines": {
1757
+ "node": ">=20.9.0"
1758
+ },
1759
+ "funding": {
1760
+ "url": "https://opencollective.com/libvips"
1761
+ },
1762
+ "optionalDependencies": {
1763
+ "@img/sharp-darwin-arm64": "0.35.2",
1764
+ "@img/sharp-darwin-x64": "0.35.2",
1765
+ "@img/sharp-freebsd-wasm32": "0.35.2",
1766
+ "@img/sharp-libvips-darwin-arm64": "1.3.1",
1767
+ "@img/sharp-libvips-darwin-x64": "1.3.1",
1768
+ "@img/sharp-libvips-linux-arm": "1.3.1",
1769
+ "@img/sharp-libvips-linux-arm64": "1.3.1",
1770
+ "@img/sharp-libvips-linux-ppc64": "1.3.1",
1771
+ "@img/sharp-libvips-linux-riscv64": "1.3.1",
1772
+ "@img/sharp-libvips-linux-s390x": "1.3.1",
1773
+ "@img/sharp-libvips-linux-x64": "1.3.1",
1774
+ "@img/sharp-libvips-linuxmusl-arm64": "1.3.1",
1775
+ "@img/sharp-libvips-linuxmusl-x64": "1.3.1",
1776
+ "@img/sharp-linux-arm": "0.35.2",
1777
+ "@img/sharp-linux-arm64": "0.35.2",
1778
+ "@img/sharp-linux-ppc64": "0.35.2",
1779
+ "@img/sharp-linux-riscv64": "0.35.2",
1780
+ "@img/sharp-linux-s390x": "0.35.2",
1781
+ "@img/sharp-linux-x64": "0.35.2",
1782
+ "@img/sharp-linuxmusl-arm64": "0.35.2",
1783
+ "@img/sharp-linuxmusl-x64": "0.35.2",
1784
+ "@img/sharp-webcontainers-wasm32": "0.35.2",
1785
+ "@img/sharp-win32-arm64": "0.35.2",
1786
+ "@img/sharp-win32-ia32": "0.35.2",
1787
+ "@img/sharp-win32-x64": "0.35.2"
1788
+ }
1789
+ },
1790
+ "node_modules/supports-color": {
1791
+ "version": "10.2.2",
1792
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz",
1793
+ "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==",
1794
+ "dev": true,
1795
+ "license": "MIT",
1796
+ "engines": {
1797
+ "node": ">=18"
1798
+ },
1799
+ "funding": {
1800
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
1801
+ }
1802
+ },
1803
+ "node_modules/tslib": {
1804
+ "version": "2.8.1",
1805
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1806
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1807
+ "dev": true,
1808
+ "license": "0BSD",
1809
+ "optional": true
1810
+ },
1811
+ "node_modules/typescript": {
1812
+ "version": "7.0.2",
1813
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
1814
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
1815
+ "dev": true,
1816
+ "license": "Apache-2.0",
1817
+ "bin": {
1818
+ "tsc": "bin/tsc"
1819
+ },
1820
+ "engines": {
1821
+ "node": ">=16.20.0"
1822
+ },
1823
+ "optionalDependencies": {
1824
+ "@typescript/typescript-aix-ppc64": "7.0.2",
1825
+ "@typescript/typescript-darwin-arm64": "7.0.2",
1826
+ "@typescript/typescript-darwin-x64": "7.0.2",
1827
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
1828
+ "@typescript/typescript-freebsd-x64": "7.0.2",
1829
+ "@typescript/typescript-linux-arm": "7.0.2",
1830
+ "@typescript/typescript-linux-arm64": "7.0.2",
1831
+ "@typescript/typescript-linux-loong64": "7.0.2",
1832
+ "@typescript/typescript-linux-mips64el": "7.0.2",
1833
+ "@typescript/typescript-linux-ppc64": "7.0.2",
1834
+ "@typescript/typescript-linux-riscv64": "7.0.2",
1835
+ "@typescript/typescript-linux-s390x": "7.0.2",
1836
+ "@typescript/typescript-linux-x64": "7.0.2",
1837
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
1838
+ "@typescript/typescript-netbsd-x64": "7.0.2",
1839
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
1840
+ "@typescript/typescript-openbsd-x64": "7.0.2",
1841
+ "@typescript/typescript-sunos-x64": "7.0.2",
1842
+ "@typescript/typescript-win32-arm64": "7.0.2",
1843
+ "@typescript/typescript-win32-x64": "7.0.2"
1844
+ }
1845
+ },
1846
+ "node_modules/undici": {
1847
+ "version": "7.29.0",
1848
+ "resolved": "https://registry.npmjs.org/undici/-/undici-7.29.0.tgz",
1849
+ "integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
1850
+ "dev": true,
1851
+ "license": "MIT",
1852
+ "engines": {
1853
+ "node": ">=20.18.1"
1854
+ }
1855
+ },
1856
+ "node_modules/unenv": {
1857
+ "version": "2.0.0-rc.24",
1858
+ "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz",
1859
+ "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==",
1860
+ "dev": true,
1861
+ "license": "MIT",
1862
+ "dependencies": {
1863
+ "pathe": "^2.0.3"
1864
+ }
1865
+ },
1866
+ "node_modules/workerd": {
1867
+ "version": "1.20260825.1",
1868
+ "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260825.1.tgz",
1869
+ "integrity": "sha512-ccS6TEaaRxgONKawiYGnFYUVGfr2pmN1b7mrNtw0ADVhFaYsEIVoCHnQ4UjhM9EJDzuaNgAWFY82nzVrjWpuOA==",
1870
+ "dev": true,
1871
+ "hasInstallScript": true,
1872
+ "license": "Apache-2.0",
1873
+ "bin": {
1874
+ "workerd": "bin/workerd"
1875
+ },
1876
+ "engines": {
1877
+ "node": ">=16"
1878
+ },
1879
+ "optionalDependencies": {
1880
+ "@cloudflare/workerd-darwin-64": "1.20260825.1",
1881
+ "@cloudflare/workerd-darwin-arm64": "1.20260825.1",
1882
+ "@cloudflare/workerd-linux-64": "1.20260825.1",
1883
+ "@cloudflare/workerd-linux-arm64": "1.20260825.1",
1884
+ "@cloudflare/workerd-windows-64": "1.20260825.1"
1885
+ }
1886
+ },
1887
+ "node_modules/wrangler": {
1888
+ "version": "4.126.0",
1889
+ "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.126.0.tgz",
1890
+ "integrity": "sha512-glDq/nxaeQwue0XMIeupfwlu2jVxnFs+wjDFT71DQuURN5LsVdCwu0Af/1ep10U5xr1rKPGhHDEDkKG9nxE/dg==",
1891
+ "dev": true,
1892
+ "license": "MIT OR Apache-2.0",
1893
+ "dependencies": {
1894
+ "@cloudflare/kv-asset-handler": "0.5.0",
1895
+ "@cloudflare/unenv-preset": "2.16.1",
1896
+ "blake3-wasm": "2.1.5",
1897
+ "esbuild": "0.28.1",
1898
+ "miniflare": "5.20260825.0-alpha",
1899
+ "path-to-regexp": "6.3.0",
1900
+ "unenv": "2.0.0-rc.24",
1901
+ "workerd": "1.20260825.1"
1902
+ },
1903
+ "bin": {
1904
+ "cf-wrangler": "bin/cf-wrangler.js",
1905
+ "wrangler": "bin/wrangler.js",
1906
+ "wrangler2": "bin/wrangler.js"
1907
+ },
1908
+ "engines": {
1909
+ "node": ">=22.0.0"
1910
+ },
1911
+ "optionalDependencies": {
1912
+ "fsevents": "2.3.3"
1913
+ },
1914
+ "peerDependencies": {
1915
+ "@cloudflare/workers-types": "^5.20260825.1"
1916
+ },
1917
+ "peerDependenciesMeta": {
1918
+ "@cloudflare/workers-types": {
1919
+ "optional": true
1920
+ }
1921
+ }
1922
+ },
1923
+ "node_modules/ws": {
1924
+ "version": "8.21.0",
1925
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
1926
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
1927
+ "dev": true,
1928
+ "license": "MIT",
1929
+ "engines": {
1930
+ "node": ">=10.0.0"
1931
+ },
1932
+ "peerDependencies": {
1933
+ "bufferutil": "^4.0.1",
1934
+ "utf-8-validate": ">=5.0.2"
1935
+ },
1936
+ "peerDependenciesMeta": {
1937
+ "bufferutil": {
1938
+ "optional": true
1939
+ },
1940
+ "utf-8-validate": {
1941
+ "optional": true
1942
+ }
1943
+ }
1944
+ },
1945
+ "node_modules/youch": {
1946
+ "version": "4.1.0-beta.10",
1947
+ "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz",
1948
+ "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==",
1949
+ "dev": true,
1950
+ "license": "MIT",
1951
+ "dependencies": {
1952
+ "@poppinss/colors": "^4.1.5",
1953
+ "@poppinss/dumper": "^0.6.4",
1954
+ "@speed-highlight/core": "^1.2.7",
1955
+ "cookie": "^1.0.2",
1956
+ "youch-core": "^0.3.3"
1957
+ }
1958
+ },
1959
+ "node_modules/youch-core": {
1960
+ "version": "0.3.3",
1961
+ "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz",
1962
+ "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==",
1963
+ "dev": true,
1964
+ "license": "MIT",
1965
+ "dependencies": {
1966
+ "@poppinss/exception": "^1.2.2",
1967
+ "error-stack-parser-es": "^1.0.5"
1968
+ }
1969
+ }
1970
+ }
1971
+ }