@openclaw/feishu 2026.7.2-beta.3 → 2026.7.2-beta.5

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 (159) hide show
  1. package/README.md +1 -1
  2. package/dist/{accounts-BDoGHJDk.js → accounts-CKhCa76b.js} +2 -19
  3. package/dist/api.js +65 -43
  4. package/dist/{app-registration-BzkyrVZu.js → app-registration-cN1bVV6s.js} +5 -5
  5. package/dist/{channel-BdnXYU6g.js → channel-CBNICmK9.js} +37 -75
  6. package/dist/channel-plugin-api.js +1 -1
  7. package/dist/{channel.runtime-CVIzo2dV.js → channel.runtime-CSlJVqy4.js} +7 -7
  8. package/dist/{client-87BmeMpj.js → client-Dee7cKsS.js} +62 -1
  9. package/dist/contract-api.js +2 -2
  10. package/dist/doctor-contract-BiD9tyIv.js +102 -0
  11. package/dist/doctor-contract-api.js +1 -1
  12. package/dist/{drive-BHv8WW9i.js → drive-DG6pKTPE.js} +23 -20
  13. package/dist/{send-DcrXbqqA.js → media-DOwcLJ1j.js} +1050 -1021
  14. package/dist/{monitor-BVQf7-Bl.js → monitor-DEHJlyWW.js} +6 -5
  15. package/dist/{monitor.account-Blbf2T6J.js → monitor.account-DEHl8Non.js} +1556 -592
  16. package/dist/monitor.startup-CSUPT_U1.js +143 -0
  17. package/dist/{probe-BgboTHIn.js → probe-Za1kgUvx.js} +70 -10
  18. package/dist/runtime-api.js +1 -2
  19. package/dist/{security-audit-BIeA3W3Q.js → security-audit-D7WK_BHh.js} +1 -1
  20. package/dist/{security-audit-shared-BIHeF-S_.js → security-audit-shared-BgpY7AiJ.js} +6 -11
  21. package/dist/security-contract-api.js +1 -1
  22. package/dist/{send-result-DfE5Fhz6.js → send-result-Bcofg0Vv.js} +1 -1
  23. package/dist/session-binding-contract-api.js +1 -1
  24. package/dist/setup-api.js +1 -1
  25. package/dist/{subagent-hooks-BKTOxB-T.js → subagent-hooks-DL2SC5zX.js} +1 -1
  26. package/dist/subagent-hooks-api.js +1 -1
  27. package/dist/{thread-bindings-V0bwk0A1.js → thread-bindings-Dqs_A0du.js} +2 -1
  28. package/node_modules/@larksuiteoapi/node-sdk/README.md +13 -0
  29. package/node_modules/@larksuiteoapi/node-sdk/README.zh.md +12 -0
  30. package/node_modules/@larksuiteoapi/node-sdk/es/index.js +8950 -3084
  31. package/node_modules/@larksuiteoapi/node-sdk/lib/index.js +8951 -3083
  32. package/node_modules/@larksuiteoapi/node-sdk/package.json +1 -1
  33. package/node_modules/@larksuiteoapi/node-sdk/types/index.d.ts +12522 -698
  34. package/node_modules/@protobufjs/utf8/CHANGELOG.md +8 -0
  35. package/node_modules/@protobufjs/utf8/index.js +29 -18
  36. package/node_modules/@protobufjs/utf8/package.json +2 -2
  37. package/node_modules/@protobufjs/utf8/tests/index.js +5 -0
  38. package/node_modules/@types/node/README.md +1 -1
  39. package/node_modules/@types/node/fs/promises.d.ts +16 -6
  40. package/node_modules/@types/node/package.json +2 -2
  41. package/node_modules/agent-base/README.md +145 -0
  42. package/node_modules/agent-base/dist/src/index.d.ts +78 -0
  43. package/node_modules/agent-base/dist/src/index.js +203 -0
  44. package/node_modules/agent-base/dist/src/index.js.map +1 -0
  45. package/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
  46. package/node_modules/agent-base/dist/src/promisify.js +18 -0
  47. package/node_modules/agent-base/dist/src/promisify.js.map +1 -0
  48. package/node_modules/agent-base/package.json +64 -0
  49. package/node_modules/agent-base/src/index.ts +345 -0
  50. package/node_modules/agent-base/src/promisify.ts +33 -0
  51. package/node_modules/axios/CHANGELOG.md +197 -1
  52. package/node_modules/axios/README.md +424 -256
  53. package/node_modules/axios/dist/axios.js +589 -204
  54. package/node_modules/axios/dist/axios.min.js +3 -3
  55. package/node_modules/axios/dist/axios.min.js.map +1 -1
  56. package/node_modules/axios/dist/browser/axios.cjs +630 -185
  57. package/node_modules/axios/dist/esm/axios.js +630 -185
  58. package/node_modules/axios/dist/esm/axios.min.js +2 -2
  59. package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
  60. package/node_modules/axios/dist/node/axios.cjs +949 -301
  61. package/node_modules/axios/index.d.cts +28 -5
  62. package/node_modules/axios/index.d.ts +24 -3
  63. package/node_modules/axios/lib/adapters/adapters.js +1 -1
  64. package/node_modules/axios/lib/adapters/fetch.js +223 -49
  65. package/node_modules/axios/lib/adapters/http.js +408 -193
  66. package/node_modules/axios/lib/adapters/xhr.js +3 -1
  67. package/node_modules/axios/lib/core/Axios.js +4 -2
  68. package/node_modules/axios/lib/core/AxiosError.js +13 -1
  69. package/node_modules/axios/lib/core/AxiosHeaders.js +13 -42
  70. package/node_modules/axios/lib/core/buildFullPath.js +29 -1
  71. package/node_modules/axios/lib/core/mergeConfig.js +35 -0
  72. package/node_modules/axios/lib/defaults/transitional.js +2 -0
  73. package/node_modules/axios/lib/env/data.js +1 -1
  74. package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +1 -3
  75. package/node_modules/axios/lib/helpers/Http2Sessions.js +119 -0
  76. package/node_modules/axios/lib/helpers/buildURL.js +7 -4
  77. package/node_modules/axios/lib/helpers/composeSignals.js +48 -47
  78. package/node_modules/axios/lib/helpers/cookies.js +5 -1
  79. package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +16 -11
  80. package/node_modules/axios/lib/helpers/formDataToJSON.js +26 -4
  81. package/node_modules/axios/lib/helpers/formDataToStream.js +2 -2
  82. package/node_modules/axios/lib/helpers/fromDataURI.js +20 -5
  83. package/node_modules/axios/lib/helpers/progressEventReducer.js +3 -0
  84. package/node_modules/axios/lib/helpers/resolveConfig.js +26 -13
  85. package/node_modules/axios/lib/helpers/sanitizeHeaderValue.js +60 -0
  86. package/node_modules/axios/lib/helpers/shouldBypassProxy.js +33 -1
  87. package/node_modules/axios/lib/helpers/toFormData.js +48 -12
  88. package/node_modules/axios/lib/helpers/validator.js +1 -1
  89. package/node_modules/axios/lib/utils.js +105 -19
  90. package/node_modules/axios/package.json +31 -13
  91. package/node_modules/https-proxy-agent/README.md +137 -0
  92. package/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
  93. package/node_modules/https-proxy-agent/dist/agent.js +177 -0
  94. package/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
  95. package/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
  96. package/node_modules/https-proxy-agent/dist/index.js +14 -0
  97. package/node_modules/https-proxy-agent/dist/index.js.map +1 -0
  98. package/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
  99. package/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
  100. package/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  101. package/node_modules/https-proxy-agent/package.json +56 -0
  102. package/node_modules/protobufjs/dist/light/protobuf.js +145 -188
  103. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  104. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  105. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  106. package/node_modules/protobufjs/dist/minimal/protobuf.js +33 -76
  107. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
  108. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
  109. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
  110. package/node_modules/protobufjs/dist/protobuf.js +168 -208
  111. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  112. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  113. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  114. package/node_modules/protobufjs/index.d.ts +0 -8
  115. package/node_modules/protobufjs/package.json +2 -3
  116. package/node_modules/protobufjs/src/parse.js +3 -0
  117. package/node_modules/protobufjs/src/util/minimal.js +0 -3
  118. package/node_modules/qs/CHANGELOG.md +11 -0
  119. package/node_modules/qs/dist/qs.js +17 -17
  120. package/node_modules/qs/lib/parse.js +19 -8
  121. package/node_modules/qs/lib/utils.js +47 -8
  122. package/node_modules/qs/package.json +6 -5
  123. package/node_modules/qs/test/parse.js +230 -0
  124. package/node_modules/qs/test/utils.js +194 -0
  125. package/node_modules/typebox/build/compile/validator.d.mts +1 -4
  126. package/node_modules/typebox/build/guard/guard.d.mts +1 -1
  127. package/node_modules/typebox/build/guard/guard.mjs +5 -2
  128. package/node_modules/typebox/build/guard/string.mjs +16 -4
  129. package/node_modules/typebox/build/schema/engine/_functions.mjs +34 -15
  130. package/node_modules/typebox/build/type/action/readonly_object.d.mts +5 -0
  131. package/node_modules/typebox/build/type/action/readonly_object.mjs +8 -0
  132. package/node_modules/typebox/build/typebox.d.mts +1 -1
  133. package/node_modules/typebox/build/typebox.mjs +1 -1
  134. package/node_modules/typebox/package.json +1 -1
  135. package/node_modules/typebox/readme.md +29 -32
  136. package/node_modules/ws/lib/receiver.js +15 -32
  137. package/node_modules/ws/lib/websocket-server.js +4 -4
  138. package/node_modules/ws/lib/websocket.js +4 -4
  139. package/node_modules/ws/package.json +5 -1
  140. package/openclaw.plugin.json +2 -16
  141. package/package.json +20 -8
  142. package/dist/doctor-contract-DXH5hux1.js +0 -97
  143. package/dist/monitor.startup-Cy8NPGAX.js +0 -43
  144. package/node_modules/@protobufjs/inquire/CHANGELOG.md +0 -8
  145. package/node_modules/@protobufjs/inquire/LICENSE +0 -26
  146. package/node_modules/@protobufjs/inquire/README.md +0 -13
  147. package/node_modules/@protobufjs/inquire/index.d.ts +0 -10
  148. package/node_modules/@protobufjs/inquire/index.js +0 -38
  149. package/node_modules/@protobufjs/inquire/package.json +0 -21
  150. package/node_modules/@protobufjs/inquire/tests/data/array.js +0 -1
  151. package/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +0 -1
  152. package/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +0 -1
  153. package/node_modules/@protobufjs/inquire/tests/data/object.js +0 -1
  154. package/node_modules/@protobufjs/inquire/tests/index.js +0 -20
  155. package/node_modules/axios/dist/axios.js.map +0 -1
  156. package/node_modules/axios/dist/browser/axios.cjs.map +0 -1
  157. package/node_modules/axios/dist/esm/axios.js.map +0 -1
  158. package/node_modules/axios/dist/node/axios.cjs.map +0 -1
  159. package/npm-shrinkwrap.json +0 -1354
@@ -1,1354 +0,0 @@
1
- {
2
- "name": "@openclaw/feishu",
3
- "version": "2026.7.2-beta.3",
4
- "lockfileVersion": 3,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "@openclaw/feishu",
9
- "version": "2026.7.2-beta.3",
10
- "dependencies": {
11
- "@larksuiteoapi/node-sdk": "1.68.0",
12
- "mdast-util-from-markdown": "2.0.3",
13
- "mdast-util-gfm-table": "2.0.0",
14
- "micromark-extension-gfm-table": "2.1.1",
15
- "typebox": "1.3.3",
16
- "zod": "4.4.3"
17
- },
18
- "peerDependencies": {
19
- "openclaw": ">=2026.7.2-beta.3"
20
- },
21
- "peerDependenciesMeta": {
22
- "openclaw": {
23
- "optional": true
24
- }
25
- }
26
- },
27
- "node_modules/@larksuiteoapi/node-sdk": {
28
- "version": "1.68.0",
29
- "resolved": "https://registry.npmjs.org/@larksuiteoapi/node-sdk/-/node-sdk-1.68.0.tgz",
30
- "integrity": "sha512-ip14+pWAv2La3bss4oDDtee2P5xBLDXuvmzhTvkxQMcPA5jCffFsler1TvNt4MyW6pexscj72AEWektyZwU9Yw==",
31
- "license": "MIT",
32
- "dependencies": {
33
- "axios": "~1.13.3",
34
- "lodash.identity": "^3.0.0",
35
- "lodash.merge": "^4.6.2",
36
- "lodash.pickby": "^4.6.0",
37
- "protobufjs": "^7.2.6",
38
- "qs": "^6.14.2",
39
- "ws": "^8.19.0"
40
- }
41
- },
42
- "node_modules/@protobufjs/aspromise": {
43
- "version": "1.1.2",
44
- "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
45
- "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
46
- "license": "BSD-3-Clause"
47
- },
48
- "node_modules/@protobufjs/base64": {
49
- "version": "1.1.2",
50
- "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
51
- "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
52
- "license": "BSD-3-Clause"
53
- },
54
- "node_modules/@protobufjs/codegen": {
55
- "version": "2.0.5",
56
- "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
57
- "integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
58
- "license": "BSD-3-Clause"
59
- },
60
- "node_modules/@protobufjs/eventemitter": {
61
- "version": "1.1.1",
62
- "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.1.tgz",
63
- "integrity": "sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==",
64
- "license": "BSD-3-Clause"
65
- },
66
- "node_modules/@protobufjs/fetch": {
67
- "version": "1.1.1",
68
- "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
69
- "integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
70
- "license": "BSD-3-Clause",
71
- "dependencies": {
72
- "@protobufjs/aspromise": "^1.1.1"
73
- }
74
- },
75
- "node_modules/@protobufjs/float": {
76
- "version": "1.0.2",
77
- "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
78
- "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
79
- "license": "BSD-3-Clause"
80
- },
81
- "node_modules/@protobufjs/inquire": {
82
- "version": "1.1.2",
83
- "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
84
- "integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
85
- "license": "BSD-3-Clause"
86
- },
87
- "node_modules/@protobufjs/path": {
88
- "version": "1.1.2",
89
- "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
90
- "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
91
- "license": "BSD-3-Clause"
92
- },
93
- "node_modules/@protobufjs/pool": {
94
- "version": "1.1.0",
95
- "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
96
- "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
97
- "license": "BSD-3-Clause"
98
- },
99
- "node_modules/@protobufjs/utf8": {
100
- "version": "1.1.1",
101
- "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
102
- "integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
103
- "license": "BSD-3-Clause"
104
- },
105
- "node_modules/@types/debug": {
106
- "version": "4.1.13",
107
- "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
108
- "integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
109
- "license": "MIT",
110
- "dependencies": {
111
- "@types/ms": "*"
112
- }
113
- },
114
- "node_modules/@types/mdast": {
115
- "version": "4.0.4",
116
- "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
117
- "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
118
- "license": "MIT",
119
- "dependencies": {
120
- "@types/unist": "*"
121
- }
122
- },
123
- "node_modules/@types/ms": {
124
- "version": "2.1.0",
125
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
126
- "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
127
- "license": "MIT"
128
- },
129
- "node_modules/@types/node": {
130
- "version": "26.1.0",
131
- "resolved": "https://registry.npmjs.org/@types/node/-/node-26.1.0.tgz",
132
- "integrity": "sha512-O0A1G3xPGy4w7AgQdAQYUlQ+BKk2Oovw8eRpofyp5KdBZULnbe+WqaOVNrm705SHphCiG4XHsACrSmPu1f+Kgw==",
133
- "license": "MIT",
134
- "dependencies": {
135
- "undici-types": "~8.3.0"
136
- }
137
- },
138
- "node_modules/@types/unist": {
139
- "version": "3.0.3",
140
- "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
141
- "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
142
- "license": "MIT"
143
- },
144
- "node_modules/asynckit": {
145
- "version": "0.4.0",
146
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
147
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
148
- "license": "MIT"
149
- },
150
- "node_modules/axios": {
151
- "version": "1.16.0",
152
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.16.0.tgz",
153
- "integrity": "sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==",
154
- "license": "MIT",
155
- "dependencies": {
156
- "follow-redirects": "^1.16.0",
157
- "form-data": "^4.0.5",
158
- "proxy-from-env": "^2.1.0"
159
- }
160
- },
161
- "node_modules/call-bind-apply-helpers": {
162
- "version": "1.0.2",
163
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
164
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
165
- "license": "MIT",
166
- "dependencies": {
167
- "es-errors": "^1.3.0",
168
- "function-bind": "^1.1.2"
169
- },
170
- "engines": {
171
- "node": ">= 0.4"
172
- }
173
- },
174
- "node_modules/call-bound": {
175
- "version": "1.0.4",
176
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
177
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
178
- "license": "MIT",
179
- "dependencies": {
180
- "call-bind-apply-helpers": "^1.0.2",
181
- "get-intrinsic": "^1.3.0"
182
- },
183
- "engines": {
184
- "node": ">= 0.4"
185
- },
186
- "funding": {
187
- "url": "https://github.com/sponsors/ljharb"
188
- }
189
- },
190
- "node_modules/character-entities": {
191
- "version": "2.0.2",
192
- "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
193
- "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
194
- "license": "MIT",
195
- "funding": {
196
- "type": "github",
197
- "url": "https://github.com/sponsors/wooorm"
198
- }
199
- },
200
- "node_modules/combined-stream": {
201
- "version": "1.0.8",
202
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
203
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
204
- "license": "MIT",
205
- "dependencies": {
206
- "delayed-stream": "~1.0.0"
207
- },
208
- "engines": {
209
- "node": ">= 0.8"
210
- }
211
- },
212
- "node_modules/debug": {
213
- "version": "4.4.3",
214
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
215
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
216
- "license": "MIT",
217
- "dependencies": {
218
- "ms": "^2.1.3"
219
- },
220
- "engines": {
221
- "node": ">=6.0"
222
- },
223
- "peerDependenciesMeta": {
224
- "supports-color": {
225
- "optional": true
226
- }
227
- }
228
- },
229
- "node_modules/decode-named-character-reference": {
230
- "version": "1.3.0",
231
- "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
232
- "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
233
- "license": "MIT",
234
- "dependencies": {
235
- "character-entities": "^2.0.0"
236
- },
237
- "funding": {
238
- "type": "github",
239
- "url": "https://github.com/sponsors/wooorm"
240
- }
241
- },
242
- "node_modules/delayed-stream": {
243
- "version": "1.0.0",
244
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
245
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
246
- "license": "MIT",
247
- "engines": {
248
- "node": ">=0.4.0"
249
- }
250
- },
251
- "node_modules/dequal": {
252
- "version": "2.0.3",
253
- "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
254
- "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
255
- "license": "MIT",
256
- "engines": {
257
- "node": ">=6"
258
- }
259
- },
260
- "node_modules/devlop": {
261
- "version": "1.1.0",
262
- "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
263
- "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
264
- "license": "MIT",
265
- "dependencies": {
266
- "dequal": "^2.0.0"
267
- },
268
- "funding": {
269
- "type": "github",
270
- "url": "https://github.com/sponsors/wooorm"
271
- }
272
- },
273
- "node_modules/dunder-proto": {
274
- "version": "1.0.1",
275
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
276
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
277
- "license": "MIT",
278
- "dependencies": {
279
- "call-bind-apply-helpers": "^1.0.1",
280
- "es-errors": "^1.3.0",
281
- "gopd": "^1.2.0"
282
- },
283
- "engines": {
284
- "node": ">= 0.4"
285
- }
286
- },
287
- "node_modules/es-define-property": {
288
- "version": "1.0.1",
289
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
290
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
291
- "license": "MIT",
292
- "engines": {
293
- "node": ">= 0.4"
294
- }
295
- },
296
- "node_modules/es-errors": {
297
- "version": "1.3.0",
298
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
299
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
300
- "license": "MIT",
301
- "engines": {
302
- "node": ">= 0.4"
303
- }
304
- },
305
- "node_modules/es-object-atoms": {
306
- "version": "1.1.2",
307
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
308
- "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
309
- "license": "MIT",
310
- "dependencies": {
311
- "es-errors": "^1.3.0"
312
- },
313
- "engines": {
314
- "node": ">= 0.4"
315
- }
316
- },
317
- "node_modules/es-set-tostringtag": {
318
- "version": "2.1.0",
319
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
320
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
321
- "license": "MIT",
322
- "dependencies": {
323
- "es-errors": "^1.3.0",
324
- "get-intrinsic": "^1.2.6",
325
- "has-tostringtag": "^1.0.2",
326
- "hasown": "^2.0.2"
327
- },
328
- "engines": {
329
- "node": ">= 0.4"
330
- }
331
- },
332
- "node_modules/follow-redirects": {
333
- "version": "1.16.0",
334
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
335
- "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
336
- "funding": [
337
- {
338
- "type": "individual",
339
- "url": "https://github.com/sponsors/RubenVerborgh"
340
- }
341
- ],
342
- "license": "MIT",
343
- "engines": {
344
- "node": ">=4.0"
345
- },
346
- "peerDependenciesMeta": {
347
- "debug": {
348
- "optional": true
349
- }
350
- }
351
- },
352
- "node_modules/form-data": {
353
- "version": "2.5.6",
354
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.6.tgz",
355
- "integrity": "sha512-Ogz/E85h9tlfJzpI6TuFpGcHZFhLrb9Gw8wq9v40CxSCPnv7ahKr6Xgtkn0KYCDQJ8DNn5VoMO8EXr9V5PadyA==",
356
- "license": "MIT",
357
- "dependencies": {
358
- "asynckit": "^0.4.0",
359
- "combined-stream": "^1.0.8",
360
- "es-set-tostringtag": "^2.1.0",
361
- "hasown": "^2.0.4",
362
- "mime-types": "^2.1.35",
363
- "safe-buffer": "^5.2.1"
364
- },
365
- "engines": {
366
- "node": ">= 0.12"
367
- }
368
- },
369
- "node_modules/function-bind": {
370
- "version": "1.1.2",
371
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
372
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
373
- "license": "MIT",
374
- "funding": {
375
- "url": "https://github.com/sponsors/ljharb"
376
- }
377
- },
378
- "node_modules/get-intrinsic": {
379
- "version": "1.3.0",
380
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
381
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
382
- "license": "MIT",
383
- "dependencies": {
384
- "call-bind-apply-helpers": "^1.0.2",
385
- "es-define-property": "^1.0.1",
386
- "es-errors": "^1.3.0",
387
- "es-object-atoms": "^1.1.1",
388
- "function-bind": "^1.1.2",
389
- "get-proto": "^1.0.1",
390
- "gopd": "^1.2.0",
391
- "has-symbols": "^1.1.0",
392
- "hasown": "^2.0.2",
393
- "math-intrinsics": "^1.1.0"
394
- },
395
- "engines": {
396
- "node": ">= 0.4"
397
- },
398
- "funding": {
399
- "url": "https://github.com/sponsors/ljharb"
400
- }
401
- },
402
- "node_modules/get-proto": {
403
- "version": "1.0.1",
404
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
405
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
406
- "license": "MIT",
407
- "dependencies": {
408
- "dunder-proto": "^1.0.1",
409
- "es-object-atoms": "^1.0.0"
410
- },
411
- "engines": {
412
- "node": ">= 0.4"
413
- }
414
- },
415
- "node_modules/gopd": {
416
- "version": "1.2.0",
417
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
418
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
419
- "license": "MIT",
420
- "engines": {
421
- "node": ">= 0.4"
422
- },
423
- "funding": {
424
- "url": "https://github.com/sponsors/ljharb"
425
- }
426
- },
427
- "node_modules/has-symbols": {
428
- "version": "1.1.0",
429
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
430
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
431
- "license": "MIT",
432
- "engines": {
433
- "node": ">= 0.4"
434
- },
435
- "funding": {
436
- "url": "https://github.com/sponsors/ljharb"
437
- }
438
- },
439
- "node_modules/has-tostringtag": {
440
- "version": "1.0.2",
441
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
442
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
443
- "license": "MIT",
444
- "dependencies": {
445
- "has-symbols": "^1.0.3"
446
- },
447
- "engines": {
448
- "node": ">= 0.4"
449
- },
450
- "funding": {
451
- "url": "https://github.com/sponsors/ljharb"
452
- }
453
- },
454
- "node_modules/hasown": {
455
- "version": "2.0.4",
456
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
457
- "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
458
- "license": "MIT",
459
- "dependencies": {
460
- "function-bind": "^1.1.2"
461
- },
462
- "engines": {
463
- "node": ">= 0.4"
464
- }
465
- },
466
- "node_modules/lodash.identity": {
467
- "version": "3.0.0",
468
- "resolved": "https://registry.npmjs.org/lodash.identity/-/lodash.identity-3.0.0.tgz",
469
- "integrity": "sha512-AupTIzdLQxJS5wIYUQlgGyk2XRTfGXA+MCghDHqZk0pzUNYvd3EESS6dkChNauNYVIutcb0dfHw1ri9Q1yPV8Q==",
470
- "license": "MIT"
471
- },
472
- "node_modules/lodash.merge": {
473
- "version": "4.6.2",
474
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
475
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
476
- "license": "MIT"
477
- },
478
- "node_modules/lodash.pickby": {
479
- "version": "4.6.0",
480
- "resolved": "https://registry.npmjs.org/lodash.pickby/-/lodash.pickby-4.6.0.tgz",
481
- "integrity": "sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==",
482
- "license": "MIT"
483
- },
484
- "node_modules/long": {
485
- "version": "5.3.2",
486
- "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
487
- "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
488
- "license": "Apache-2.0"
489
- },
490
- "node_modules/longest-streak": {
491
- "version": "3.1.0",
492
- "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
493
- "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
494
- "license": "MIT",
495
- "funding": {
496
- "type": "github",
497
- "url": "https://github.com/sponsors/wooorm"
498
- }
499
- },
500
- "node_modules/markdown-table": {
501
- "version": "3.0.4",
502
- "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
503
- "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
504
- "license": "MIT",
505
- "funding": {
506
- "type": "github",
507
- "url": "https://github.com/sponsors/wooorm"
508
- }
509
- },
510
- "node_modules/math-intrinsics": {
511
- "version": "1.1.0",
512
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
513
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
514
- "license": "MIT",
515
- "engines": {
516
- "node": ">= 0.4"
517
- }
518
- },
519
- "node_modules/mdast-util-from-markdown": {
520
- "version": "2.0.3",
521
- "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
522
- "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
523
- "license": "MIT",
524
- "dependencies": {
525
- "@types/mdast": "^4.0.0",
526
- "@types/unist": "^3.0.0",
527
- "decode-named-character-reference": "^1.0.0",
528
- "devlop": "^1.0.0",
529
- "mdast-util-to-string": "^4.0.0",
530
- "micromark": "^4.0.0",
531
- "micromark-util-decode-numeric-character-reference": "^2.0.0",
532
- "micromark-util-decode-string": "^2.0.0",
533
- "micromark-util-normalize-identifier": "^2.0.0",
534
- "micromark-util-symbol": "^2.0.0",
535
- "micromark-util-types": "^2.0.0",
536
- "unist-util-stringify-position": "^4.0.0"
537
- },
538
- "funding": {
539
- "type": "opencollective",
540
- "url": "https://opencollective.com/unified"
541
- }
542
- },
543
- "node_modules/mdast-util-gfm-table": {
544
- "version": "2.0.0",
545
- "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
546
- "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
547
- "license": "MIT",
548
- "dependencies": {
549
- "@types/mdast": "^4.0.0",
550
- "devlop": "^1.0.0",
551
- "markdown-table": "^3.0.0",
552
- "mdast-util-from-markdown": "^2.0.0",
553
- "mdast-util-to-markdown": "^2.0.0"
554
- },
555
- "funding": {
556
- "type": "opencollective",
557
- "url": "https://opencollective.com/unified"
558
- }
559
- },
560
- "node_modules/mdast-util-phrasing": {
561
- "version": "4.1.0",
562
- "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
563
- "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
564
- "license": "MIT",
565
- "dependencies": {
566
- "@types/mdast": "^4.0.0",
567
- "unist-util-is": "^6.0.0"
568
- },
569
- "funding": {
570
- "type": "opencollective",
571
- "url": "https://opencollective.com/unified"
572
- }
573
- },
574
- "node_modules/mdast-util-to-markdown": {
575
- "version": "2.1.2",
576
- "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
577
- "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
578
- "license": "MIT",
579
- "dependencies": {
580
- "@types/mdast": "^4.0.0",
581
- "@types/unist": "^3.0.0",
582
- "longest-streak": "^3.0.0",
583
- "mdast-util-phrasing": "^4.0.0",
584
- "mdast-util-to-string": "^4.0.0",
585
- "micromark-util-classify-character": "^2.0.0",
586
- "micromark-util-decode-string": "^2.0.0",
587
- "unist-util-visit": "^5.0.0",
588
- "zwitch": "^2.0.0"
589
- },
590
- "funding": {
591
- "type": "opencollective",
592
- "url": "https://opencollective.com/unified"
593
- }
594
- },
595
- "node_modules/mdast-util-to-string": {
596
- "version": "4.0.0",
597
- "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
598
- "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
599
- "license": "MIT",
600
- "dependencies": {
601
- "@types/mdast": "^4.0.0"
602
- },
603
- "funding": {
604
- "type": "opencollective",
605
- "url": "https://opencollective.com/unified"
606
- }
607
- },
608
- "node_modules/micromark": {
609
- "version": "4.0.2",
610
- "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
611
- "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
612
- "funding": [
613
- {
614
- "type": "GitHub Sponsors",
615
- "url": "https://github.com/sponsors/unifiedjs"
616
- },
617
- {
618
- "type": "OpenCollective",
619
- "url": "https://opencollective.com/unified"
620
- }
621
- ],
622
- "license": "MIT",
623
- "dependencies": {
624
- "@types/debug": "^4.0.0",
625
- "debug": "^4.0.0",
626
- "decode-named-character-reference": "^1.0.0",
627
- "devlop": "^1.0.0",
628
- "micromark-core-commonmark": "^2.0.0",
629
- "micromark-factory-space": "^2.0.0",
630
- "micromark-util-character": "^2.0.0",
631
- "micromark-util-chunked": "^2.0.0",
632
- "micromark-util-combine-extensions": "^2.0.0",
633
- "micromark-util-decode-numeric-character-reference": "^2.0.0",
634
- "micromark-util-encode": "^2.0.0",
635
- "micromark-util-normalize-identifier": "^2.0.0",
636
- "micromark-util-resolve-all": "^2.0.0",
637
- "micromark-util-sanitize-uri": "^2.0.0",
638
- "micromark-util-subtokenize": "^2.0.0",
639
- "micromark-util-symbol": "^2.0.0",
640
- "micromark-util-types": "^2.0.0"
641
- }
642
- },
643
- "node_modules/micromark-core-commonmark": {
644
- "version": "2.0.3",
645
- "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
646
- "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
647
- "funding": [
648
- {
649
- "type": "GitHub Sponsors",
650
- "url": "https://github.com/sponsors/unifiedjs"
651
- },
652
- {
653
- "type": "OpenCollective",
654
- "url": "https://opencollective.com/unified"
655
- }
656
- ],
657
- "license": "MIT",
658
- "dependencies": {
659
- "decode-named-character-reference": "^1.0.0",
660
- "devlop": "^1.0.0",
661
- "micromark-factory-destination": "^2.0.0",
662
- "micromark-factory-label": "^2.0.0",
663
- "micromark-factory-space": "^2.0.0",
664
- "micromark-factory-title": "^2.0.0",
665
- "micromark-factory-whitespace": "^2.0.0",
666
- "micromark-util-character": "^2.0.0",
667
- "micromark-util-chunked": "^2.0.0",
668
- "micromark-util-classify-character": "^2.0.0",
669
- "micromark-util-html-tag-name": "^2.0.0",
670
- "micromark-util-normalize-identifier": "^2.0.0",
671
- "micromark-util-resolve-all": "^2.0.0",
672
- "micromark-util-subtokenize": "^2.0.0",
673
- "micromark-util-symbol": "^2.0.0",
674
- "micromark-util-types": "^2.0.0"
675
- }
676
- },
677
- "node_modules/micromark-extension-gfm-table": {
678
- "version": "2.1.1",
679
- "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
680
- "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
681
- "license": "MIT",
682
- "dependencies": {
683
- "devlop": "^1.0.0",
684
- "micromark-factory-space": "^2.0.0",
685
- "micromark-util-character": "^2.0.0",
686
- "micromark-util-symbol": "^2.0.0",
687
- "micromark-util-types": "^2.0.0"
688
- },
689
- "funding": {
690
- "type": "opencollective",
691
- "url": "https://opencollective.com/unified"
692
- }
693
- },
694
- "node_modules/micromark-factory-destination": {
695
- "version": "2.0.1",
696
- "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
697
- "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
698
- "funding": [
699
- {
700
- "type": "GitHub Sponsors",
701
- "url": "https://github.com/sponsors/unifiedjs"
702
- },
703
- {
704
- "type": "OpenCollective",
705
- "url": "https://opencollective.com/unified"
706
- }
707
- ],
708
- "license": "MIT",
709
- "dependencies": {
710
- "micromark-util-character": "^2.0.0",
711
- "micromark-util-symbol": "^2.0.0",
712
- "micromark-util-types": "^2.0.0"
713
- }
714
- },
715
- "node_modules/micromark-factory-label": {
716
- "version": "2.0.1",
717
- "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
718
- "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
719
- "funding": [
720
- {
721
- "type": "GitHub Sponsors",
722
- "url": "https://github.com/sponsors/unifiedjs"
723
- },
724
- {
725
- "type": "OpenCollective",
726
- "url": "https://opencollective.com/unified"
727
- }
728
- ],
729
- "license": "MIT",
730
- "dependencies": {
731
- "devlop": "^1.0.0",
732
- "micromark-util-character": "^2.0.0",
733
- "micromark-util-symbol": "^2.0.0",
734
- "micromark-util-types": "^2.0.0"
735
- }
736
- },
737
- "node_modules/micromark-factory-space": {
738
- "version": "2.0.1",
739
- "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
740
- "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
741
- "funding": [
742
- {
743
- "type": "GitHub Sponsors",
744
- "url": "https://github.com/sponsors/unifiedjs"
745
- },
746
- {
747
- "type": "OpenCollective",
748
- "url": "https://opencollective.com/unified"
749
- }
750
- ],
751
- "license": "MIT",
752
- "dependencies": {
753
- "micromark-util-character": "^2.0.0",
754
- "micromark-util-types": "^2.0.0"
755
- }
756
- },
757
- "node_modules/micromark-factory-title": {
758
- "version": "2.0.1",
759
- "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
760
- "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
761
- "funding": [
762
- {
763
- "type": "GitHub Sponsors",
764
- "url": "https://github.com/sponsors/unifiedjs"
765
- },
766
- {
767
- "type": "OpenCollective",
768
- "url": "https://opencollective.com/unified"
769
- }
770
- ],
771
- "license": "MIT",
772
- "dependencies": {
773
- "micromark-factory-space": "^2.0.0",
774
- "micromark-util-character": "^2.0.0",
775
- "micromark-util-symbol": "^2.0.0",
776
- "micromark-util-types": "^2.0.0"
777
- }
778
- },
779
- "node_modules/micromark-factory-whitespace": {
780
- "version": "2.0.1",
781
- "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
782
- "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
783
- "funding": [
784
- {
785
- "type": "GitHub Sponsors",
786
- "url": "https://github.com/sponsors/unifiedjs"
787
- },
788
- {
789
- "type": "OpenCollective",
790
- "url": "https://opencollective.com/unified"
791
- }
792
- ],
793
- "license": "MIT",
794
- "dependencies": {
795
- "micromark-factory-space": "^2.0.0",
796
- "micromark-util-character": "^2.0.0",
797
- "micromark-util-symbol": "^2.0.0",
798
- "micromark-util-types": "^2.0.0"
799
- }
800
- },
801
- "node_modules/micromark-util-character": {
802
- "version": "2.1.1",
803
- "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
804
- "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
805
- "funding": [
806
- {
807
- "type": "GitHub Sponsors",
808
- "url": "https://github.com/sponsors/unifiedjs"
809
- },
810
- {
811
- "type": "OpenCollective",
812
- "url": "https://opencollective.com/unified"
813
- }
814
- ],
815
- "license": "MIT",
816
- "dependencies": {
817
- "micromark-util-symbol": "^2.0.0",
818
- "micromark-util-types": "^2.0.0"
819
- }
820
- },
821
- "node_modules/micromark-util-chunked": {
822
- "version": "2.0.1",
823
- "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
824
- "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
825
- "funding": [
826
- {
827
- "type": "GitHub Sponsors",
828
- "url": "https://github.com/sponsors/unifiedjs"
829
- },
830
- {
831
- "type": "OpenCollective",
832
- "url": "https://opencollective.com/unified"
833
- }
834
- ],
835
- "license": "MIT",
836
- "dependencies": {
837
- "micromark-util-symbol": "^2.0.0"
838
- }
839
- },
840
- "node_modules/micromark-util-classify-character": {
841
- "version": "2.0.1",
842
- "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
843
- "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
844
- "funding": [
845
- {
846
- "type": "GitHub Sponsors",
847
- "url": "https://github.com/sponsors/unifiedjs"
848
- },
849
- {
850
- "type": "OpenCollective",
851
- "url": "https://opencollective.com/unified"
852
- }
853
- ],
854
- "license": "MIT",
855
- "dependencies": {
856
- "micromark-util-character": "^2.0.0",
857
- "micromark-util-symbol": "^2.0.0",
858
- "micromark-util-types": "^2.0.0"
859
- }
860
- },
861
- "node_modules/micromark-util-combine-extensions": {
862
- "version": "2.0.1",
863
- "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
864
- "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
865
- "funding": [
866
- {
867
- "type": "GitHub Sponsors",
868
- "url": "https://github.com/sponsors/unifiedjs"
869
- },
870
- {
871
- "type": "OpenCollective",
872
- "url": "https://opencollective.com/unified"
873
- }
874
- ],
875
- "license": "MIT",
876
- "dependencies": {
877
- "micromark-util-chunked": "^2.0.0",
878
- "micromark-util-types": "^2.0.0"
879
- }
880
- },
881
- "node_modules/micromark-util-decode-numeric-character-reference": {
882
- "version": "2.0.2",
883
- "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
884
- "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
885
- "funding": [
886
- {
887
- "type": "GitHub Sponsors",
888
- "url": "https://github.com/sponsors/unifiedjs"
889
- },
890
- {
891
- "type": "OpenCollective",
892
- "url": "https://opencollective.com/unified"
893
- }
894
- ],
895
- "license": "MIT",
896
- "dependencies": {
897
- "micromark-util-symbol": "^2.0.0"
898
- }
899
- },
900
- "node_modules/micromark-util-decode-string": {
901
- "version": "2.0.1",
902
- "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
903
- "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
904
- "funding": [
905
- {
906
- "type": "GitHub Sponsors",
907
- "url": "https://github.com/sponsors/unifiedjs"
908
- },
909
- {
910
- "type": "OpenCollective",
911
- "url": "https://opencollective.com/unified"
912
- }
913
- ],
914
- "license": "MIT",
915
- "dependencies": {
916
- "decode-named-character-reference": "^1.0.0",
917
- "micromark-util-character": "^2.0.0",
918
- "micromark-util-decode-numeric-character-reference": "^2.0.0",
919
- "micromark-util-symbol": "^2.0.0"
920
- }
921
- },
922
- "node_modules/micromark-util-encode": {
923
- "version": "2.0.1",
924
- "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
925
- "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
926
- "funding": [
927
- {
928
- "type": "GitHub Sponsors",
929
- "url": "https://github.com/sponsors/unifiedjs"
930
- },
931
- {
932
- "type": "OpenCollective",
933
- "url": "https://opencollective.com/unified"
934
- }
935
- ],
936
- "license": "MIT"
937
- },
938
- "node_modules/micromark-util-html-tag-name": {
939
- "version": "2.0.1",
940
- "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
941
- "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
942
- "funding": [
943
- {
944
- "type": "GitHub Sponsors",
945
- "url": "https://github.com/sponsors/unifiedjs"
946
- },
947
- {
948
- "type": "OpenCollective",
949
- "url": "https://opencollective.com/unified"
950
- }
951
- ],
952
- "license": "MIT"
953
- },
954
- "node_modules/micromark-util-normalize-identifier": {
955
- "version": "2.0.1",
956
- "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
957
- "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
958
- "funding": [
959
- {
960
- "type": "GitHub Sponsors",
961
- "url": "https://github.com/sponsors/unifiedjs"
962
- },
963
- {
964
- "type": "OpenCollective",
965
- "url": "https://opencollective.com/unified"
966
- }
967
- ],
968
- "license": "MIT",
969
- "dependencies": {
970
- "micromark-util-symbol": "^2.0.0"
971
- }
972
- },
973
- "node_modules/micromark-util-resolve-all": {
974
- "version": "2.0.1",
975
- "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
976
- "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
977
- "funding": [
978
- {
979
- "type": "GitHub Sponsors",
980
- "url": "https://github.com/sponsors/unifiedjs"
981
- },
982
- {
983
- "type": "OpenCollective",
984
- "url": "https://opencollective.com/unified"
985
- }
986
- ],
987
- "license": "MIT",
988
- "dependencies": {
989
- "micromark-util-types": "^2.0.0"
990
- }
991
- },
992
- "node_modules/micromark-util-sanitize-uri": {
993
- "version": "2.0.1",
994
- "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
995
- "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
996
- "funding": [
997
- {
998
- "type": "GitHub Sponsors",
999
- "url": "https://github.com/sponsors/unifiedjs"
1000
- },
1001
- {
1002
- "type": "OpenCollective",
1003
- "url": "https://opencollective.com/unified"
1004
- }
1005
- ],
1006
- "license": "MIT",
1007
- "dependencies": {
1008
- "micromark-util-character": "^2.0.0",
1009
- "micromark-util-encode": "^2.0.0",
1010
- "micromark-util-symbol": "^2.0.0"
1011
- }
1012
- },
1013
- "node_modules/micromark-util-subtokenize": {
1014
- "version": "2.1.0",
1015
- "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
1016
- "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
1017
- "funding": [
1018
- {
1019
- "type": "GitHub Sponsors",
1020
- "url": "https://github.com/sponsors/unifiedjs"
1021
- },
1022
- {
1023
- "type": "OpenCollective",
1024
- "url": "https://opencollective.com/unified"
1025
- }
1026
- ],
1027
- "license": "MIT",
1028
- "dependencies": {
1029
- "devlop": "^1.0.0",
1030
- "micromark-util-chunked": "^2.0.0",
1031
- "micromark-util-symbol": "^2.0.0",
1032
- "micromark-util-types": "^2.0.0"
1033
- }
1034
- },
1035
- "node_modules/micromark-util-symbol": {
1036
- "version": "2.0.1",
1037
- "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
1038
- "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
1039
- "funding": [
1040
- {
1041
- "type": "GitHub Sponsors",
1042
- "url": "https://github.com/sponsors/unifiedjs"
1043
- },
1044
- {
1045
- "type": "OpenCollective",
1046
- "url": "https://opencollective.com/unified"
1047
- }
1048
- ],
1049
- "license": "MIT"
1050
- },
1051
- "node_modules/micromark-util-types": {
1052
- "version": "2.0.2",
1053
- "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
1054
- "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
1055
- "funding": [
1056
- {
1057
- "type": "GitHub Sponsors",
1058
- "url": "https://github.com/sponsors/unifiedjs"
1059
- },
1060
- {
1061
- "type": "OpenCollective",
1062
- "url": "https://opencollective.com/unified"
1063
- }
1064
- ],
1065
- "license": "MIT"
1066
- },
1067
- "node_modules/mime-db": {
1068
- "version": "1.52.0",
1069
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1070
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1071
- "license": "MIT",
1072
- "engines": {
1073
- "node": ">= 0.6"
1074
- }
1075
- },
1076
- "node_modules/mime-types": {
1077
- "version": "2.1.35",
1078
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1079
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1080
- "license": "MIT",
1081
- "dependencies": {
1082
- "mime-db": "1.52.0"
1083
- },
1084
- "engines": {
1085
- "node": ">= 0.6"
1086
- }
1087
- },
1088
- "node_modules/ms": {
1089
- "version": "2.1.3",
1090
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1091
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1092
- "license": "MIT"
1093
- },
1094
- "node_modules/object-inspect": {
1095
- "version": "1.13.4",
1096
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
1097
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
1098
- "license": "MIT",
1099
- "engines": {
1100
- "node": ">= 0.4"
1101
- },
1102
- "funding": {
1103
- "url": "https://github.com/sponsors/ljharb"
1104
- }
1105
- },
1106
- "node_modules/protobufjs": {
1107
- "version": "7.6.3",
1108
- "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.6.3.tgz",
1109
- "integrity": "sha512-+k0vdJKNdW+Vu+dYe8tZA/VvQb6XKNWexC6URwBFXxNnjLJz9nQJCemGyNgRAWD+B7+nGNc9qMPGwcD7s4nzUw==",
1110
- "hasInstallScript": true,
1111
- "license": "BSD-3-Clause",
1112
- "dependencies": {
1113
- "@protobufjs/aspromise": "^1.1.2",
1114
- "@protobufjs/base64": "^1.1.2",
1115
- "@protobufjs/codegen": "^2.0.5",
1116
- "@protobufjs/eventemitter": "^1.1.1",
1117
- "@protobufjs/fetch": "^1.1.1",
1118
- "@protobufjs/float": "^1.0.2",
1119
- "@protobufjs/inquire": "^1.1.2",
1120
- "@protobufjs/path": "^1.1.2",
1121
- "@protobufjs/pool": "^1.1.0",
1122
- "@protobufjs/utf8": "^1.1.1",
1123
- "@types/node": ">=13.7.0",
1124
- "long": "^5.3.2"
1125
- },
1126
- "engines": {
1127
- "node": ">=12.0.0"
1128
- }
1129
- },
1130
- "node_modules/proxy-from-env": {
1131
- "version": "2.1.0",
1132
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
1133
- "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
1134
- "license": "MIT",
1135
- "engines": {
1136
- "node": ">=10"
1137
- }
1138
- },
1139
- "node_modules/qs": {
1140
- "version": "6.15.2",
1141
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
1142
- "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
1143
- "license": "BSD-3-Clause",
1144
- "dependencies": {
1145
- "side-channel": "^1.1.0"
1146
- },
1147
- "engines": {
1148
- "node": ">=0.6"
1149
- },
1150
- "funding": {
1151
- "url": "https://github.com/sponsors/ljharb"
1152
- }
1153
- },
1154
- "node_modules/safe-buffer": {
1155
- "version": "5.2.1",
1156
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1157
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1158
- "funding": [
1159
- {
1160
- "type": "github",
1161
- "url": "https://github.com/sponsors/feross"
1162
- },
1163
- {
1164
- "type": "patreon",
1165
- "url": "https://www.patreon.com/feross"
1166
- },
1167
- {
1168
- "type": "consulting",
1169
- "url": "https://feross.org/support"
1170
- }
1171
- ],
1172
- "license": "MIT"
1173
- },
1174
- "node_modules/side-channel": {
1175
- "version": "1.1.1",
1176
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
1177
- "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
1178
- "license": "MIT",
1179
- "dependencies": {
1180
- "es-errors": "^1.3.0",
1181
- "object-inspect": "^1.13.4",
1182
- "side-channel-list": "^1.0.1",
1183
- "side-channel-map": "^1.0.1",
1184
- "side-channel-weakmap": "^1.0.2"
1185
- },
1186
- "engines": {
1187
- "node": ">= 0.4"
1188
- },
1189
- "funding": {
1190
- "url": "https://github.com/sponsors/ljharb"
1191
- }
1192
- },
1193
- "node_modules/side-channel-list": {
1194
- "version": "1.0.1",
1195
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
1196
- "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
1197
- "license": "MIT",
1198
- "dependencies": {
1199
- "es-errors": "^1.3.0",
1200
- "object-inspect": "^1.13.4"
1201
- },
1202
- "engines": {
1203
- "node": ">= 0.4"
1204
- },
1205
- "funding": {
1206
- "url": "https://github.com/sponsors/ljharb"
1207
- }
1208
- },
1209
- "node_modules/side-channel-map": {
1210
- "version": "1.0.1",
1211
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1212
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1213
- "license": "MIT",
1214
- "dependencies": {
1215
- "call-bound": "^1.0.2",
1216
- "es-errors": "^1.3.0",
1217
- "get-intrinsic": "^1.2.5",
1218
- "object-inspect": "^1.13.3"
1219
- },
1220
- "engines": {
1221
- "node": ">= 0.4"
1222
- },
1223
- "funding": {
1224
- "url": "https://github.com/sponsors/ljharb"
1225
- }
1226
- },
1227
- "node_modules/side-channel-weakmap": {
1228
- "version": "1.0.2",
1229
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1230
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1231
- "license": "MIT",
1232
- "dependencies": {
1233
- "call-bound": "^1.0.2",
1234
- "es-errors": "^1.3.0",
1235
- "get-intrinsic": "^1.2.5",
1236
- "object-inspect": "^1.13.3",
1237
- "side-channel-map": "^1.0.1"
1238
- },
1239
- "engines": {
1240
- "node": ">= 0.4"
1241
- },
1242
- "funding": {
1243
- "url": "https://github.com/sponsors/ljharb"
1244
- }
1245
- },
1246
- "node_modules/typebox": {
1247
- "version": "1.3.3",
1248
- "resolved": "https://registry.npmjs.org/typebox/-/typebox-1.3.3.tgz",
1249
- "integrity": "sha512-URXGUE31PJDQC+PtRMJeLdF4kmmOdFoVPikPCtV2oOIhUpNpppEdIz7W8bH8cFYPYHdDpaRvqwdegMTmHliudg==",
1250
- "license": "MIT"
1251
- },
1252
- "node_modules/undici-types": {
1253
- "version": "8.3.0",
1254
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-8.3.0.tgz",
1255
- "integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==",
1256
- "license": "MIT"
1257
- },
1258
- "node_modules/unist-util-is": {
1259
- "version": "6.0.1",
1260
- "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
1261
- "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
1262
- "license": "MIT",
1263
- "dependencies": {
1264
- "@types/unist": "^3.0.0"
1265
- },
1266
- "funding": {
1267
- "type": "opencollective",
1268
- "url": "https://opencollective.com/unified"
1269
- }
1270
- },
1271
- "node_modules/unist-util-stringify-position": {
1272
- "version": "4.0.0",
1273
- "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
1274
- "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
1275
- "license": "MIT",
1276
- "dependencies": {
1277
- "@types/unist": "^3.0.0"
1278
- },
1279
- "funding": {
1280
- "type": "opencollective",
1281
- "url": "https://opencollective.com/unified"
1282
- }
1283
- },
1284
- "node_modules/unist-util-visit": {
1285
- "version": "5.1.0",
1286
- "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
1287
- "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
1288
- "license": "MIT",
1289
- "dependencies": {
1290
- "@types/unist": "^3.0.0",
1291
- "unist-util-is": "^6.0.0",
1292
- "unist-util-visit-parents": "^6.0.0"
1293
- },
1294
- "funding": {
1295
- "type": "opencollective",
1296
- "url": "https://opencollective.com/unified"
1297
- }
1298
- },
1299
- "node_modules/unist-util-visit-parents": {
1300
- "version": "6.0.2",
1301
- "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
1302
- "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
1303
- "license": "MIT",
1304
- "dependencies": {
1305
- "@types/unist": "^3.0.0",
1306
- "unist-util-is": "^6.0.0"
1307
- },
1308
- "funding": {
1309
- "type": "opencollective",
1310
- "url": "https://opencollective.com/unified"
1311
- }
1312
- },
1313
- "node_modules/ws": {
1314
- "version": "8.21.0",
1315
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
1316
- "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
1317
- "license": "MIT",
1318
- "engines": {
1319
- "node": ">=10.0.0"
1320
- },
1321
- "peerDependencies": {
1322
- "bufferutil": "^4.0.1",
1323
- "utf-8-validate": ">=5.0.2"
1324
- },
1325
- "peerDependenciesMeta": {
1326
- "bufferutil": {
1327
- "optional": true
1328
- },
1329
- "utf-8-validate": {
1330
- "optional": true
1331
- }
1332
- }
1333
- },
1334
- "node_modules/zod": {
1335
- "version": "4.4.3",
1336
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
1337
- "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
1338
- "license": "MIT",
1339
- "funding": {
1340
- "url": "https://github.com/sponsors/colinhacks"
1341
- }
1342
- },
1343
- "node_modules/zwitch": {
1344
- "version": "2.0.4",
1345
- "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
1346
- "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
1347
- "license": "MIT",
1348
- "funding": {
1349
- "type": "github",
1350
- "url": "https://github.com/sponsors/wooorm"
1351
- }
1352
- }
1353
- }
1354
- }