@promptbook/cli 0.103.0-55 → 0.103.0-66

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 (91) hide show
  1. package/apps/agents-server/TODO.txt +5 -1
  2. package/apps/agents-server/package-lock.json +2336 -0
  3. package/apps/agents-server/package.json +9 -0
  4. package/apps/agents-server/src/app/actions.ts +3 -1
  5. package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +3 -1
  6. package/apps/agents-server/src/app/agents/[agentName]/AgentOptionsMenu.tsx +282 -0
  7. package/apps/agents-server/src/app/agents/[agentName]/AgentProfileChat.tsx +91 -0
  8. package/apps/agents-server/src/app/agents/[agentName]/AgentProfileWrapper.tsx +44 -0
  9. package/apps/agents-server/src/app/agents/[agentName]/CloneAgentButton.tsx +4 -4
  10. package/apps/agents-server/src/app/agents/[agentName]/InstallPwaButton.tsx +2 -2
  11. package/apps/agents-server/src/app/agents/[agentName]/agentLinks.tsx +80 -0
  12. package/apps/agents-server/src/app/agents/[agentName]/api/book/route.ts +3 -1
  13. package/apps/agents-server/src/app/agents/[agentName]/api/chat/route.ts +11 -1
  14. package/apps/agents-server/src/app/agents/[agentName]/api/openai/models/route.ts +93 -0
  15. package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/chat/completions/route.ts +10 -0
  16. package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/models/route.ts +93 -0
  17. package/apps/agents-server/src/app/agents/[agentName]/api/voice/route.ts +4 -0
  18. package/apps/agents-server/src/app/agents/[agentName]/chat/page.tsx +9 -2
  19. package/apps/agents-server/src/app/agents/[agentName]/generateAgentMetadata.ts +7 -3
  20. package/apps/agents-server/src/app/agents/[agentName]/integration/SdkCodeTabs.tsx +31 -0
  21. package/apps/agents-server/src/app/agents/[agentName]/integration/page.tsx +271 -30
  22. package/apps/agents-server/src/app/agents/[agentName]/layout.tsx +41 -0
  23. package/apps/agents-server/src/app/agents/[agentName]/links/page.tsx +61 -97
  24. package/apps/agents-server/src/app/agents/[agentName]/page.tsx +47 -157
  25. package/apps/agents-server/src/app/agents/[agentName]/website-integration/page.tsx +70 -0
  26. package/apps/agents-server/src/app/api/openai/v1/chat/completions/route.ts +6 -0
  27. package/apps/agents-server/src/app/api/openai/v1/models/route.ts +65 -0
  28. package/apps/agents-server/src/app/docs/[docId]/page.tsx +12 -32
  29. package/apps/agents-server/src/app/docs/page.tsx +42 -17
  30. package/apps/agents-server/src/app/embed/page.tsx +2 -2
  31. package/apps/agents-server/src/app/globals.css +129 -0
  32. package/apps/agents-server/src/app/layout.tsx +16 -26
  33. package/apps/agents-server/src/app/manifest.ts +9 -4
  34. package/apps/agents-server/src/components/AgentProfile/AgentProfile.tsx +334 -0
  35. package/apps/agents-server/src/components/AgentProfile/AgentProfileFromSource.tsx +23 -0
  36. package/apps/agents-server/src/{app/agents/[agentName] → components/AgentProfile}/AgentQrCode.tsx +8 -1
  37. package/apps/agents-server/src/components/AgentProfile/QrCodeModal.tsx +90 -0
  38. package/apps/agents-server/src/components/DocumentationContent/DocumentationContent.tsx +87 -0
  39. package/apps/agents-server/src/components/LayoutWrapper/LayoutWrapper.tsx +7 -6
  40. package/apps/agents-server/src/components/OpenMojiIcon/OpenMojiIcon.tsx +20 -0
  41. package/apps/agents-server/src/components/PrintButton/PrintButton.tsx +18 -0
  42. package/apps/agents-server/src/components/PrintHeader/PrintHeader.tsx +18 -0
  43. package/apps/agents-server/src/database/metadataDefaults.ts +6 -0
  44. package/apps/agents-server/src/database/migrations/2025-12-0070-chat-history-source.sql +2 -0
  45. package/apps/agents-server/src/database/schema.ts +6 -0
  46. package/apps/agents-server/src/utils/handleChatCompletion.ts +186 -14
  47. package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +13 -6
  48. package/apps/agents-server/src/utils/validateApiKey.ts +128 -0
  49. package/apps/agents-server/tailwind.config.ts +1 -1
  50. package/esm/index.es.js +953 -474
  51. package/esm/index.es.js.map +1 -1
  52. package/esm/typings/src/_packages/components.index.d.ts +2 -2
  53. package/esm/typings/src/_packages/core.index.d.ts +6 -8
  54. package/esm/typings/src/_packages/types.index.d.ts +7 -1
  55. package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +2 -1
  56. package/esm/typings/src/book-2.0/agent-source/createCommitmentRegex.d.ts +1 -1
  57. package/esm/typings/src/book-components/Chat/AgentChat/AgentChat.d.ts +3 -0
  58. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +6 -0
  59. package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +5 -0
  60. package/esm/typings/src/book-components/PromptbookAgent/PromptbookAgentIntegration.d.ts +52 -0
  61. package/esm/typings/src/book-components/PromptbookAgent/PromptbookAgentSeamlessIntegration.d.ts +14 -0
  62. package/esm/typings/src/book-components/icons/SendIcon.d.ts +3 -0
  63. package/esm/typings/src/commitments/CLOSED/CLOSED.d.ts +4 -0
  64. package/esm/typings/src/commitments/CLOSED/CLOSED.test.d.ts +4 -0
  65. package/esm/typings/src/commitments/META_COLOR/META_COLOR.d.ts +6 -0
  66. package/esm/typings/src/commitments/META_FONT/META_FONT.d.ts +42 -0
  67. package/esm/typings/src/commitments/USE/USE.d.ts +53 -0
  68. package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +42 -0
  69. package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts +1 -0
  70. package/esm/typings/src/commitments/{IMPORTANT/IMPORTANT.d.ts → USE_MCP/USE_MCP.d.ts} +16 -5
  71. package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +38 -0
  72. package/esm/typings/src/commitments/_base/BaseCommitmentDefinition.d.ts +6 -0
  73. package/esm/typings/src/commitments/index.d.ts +93 -1
  74. package/esm/typings/src/llm-providers/agent/Agent.d.ts +3 -1
  75. package/esm/typings/src/other/templates/getTemplatesPipelineCollection.d.ts +1 -1
  76. package/esm/typings/src/playground/playground.d.ts +3 -0
  77. package/esm/typings/src/types/typeAliases.d.ts +6 -0
  78. package/esm/typings/src/utils/color/Color.d.ts +9 -1
  79. package/esm/typings/src/utils/color/css-colors.d.ts +1 -0
  80. package/esm/typings/src/utils/random/$generateBookBoilerplate.d.ts +6 -0
  81. package/esm/typings/src/utils/random/CzechNamePool.d.ts +7 -0
  82. package/esm/typings/src/utils/random/EnglishNamePool.d.ts +7 -0
  83. package/esm/typings/src/utils/random/NamePool.d.ts +17 -0
  84. package/esm/typings/src/utils/random/getNamePool.d.ts +10 -0
  85. package/esm/typings/src/version.d.ts +1 -1
  86. package/package.json +2 -2
  87. package/umd/index.umd.js +902 -423
  88. package/umd/index.umd.js.map +1 -1
  89. package/esm/typings/src/book-components/PromptbookAgent/PromptbookAgent.d.ts +0 -29
  90. package/esm/typings/src/commitments/registry.d.ts +0 -68
  91. package/esm/typings/src/playground/playground1.d.ts +0 -2
@@ -0,0 +1,2336 @@
1
+ {
2
+ "name": "promptbook-agents-server",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "name": "promptbook-agents-server",
8
+ "hasInstallScript": true,
9
+ "dependencies": {
10
+ "remark-gfm": "^4.0.1"
11
+ },
12
+ "devDependencies": {
13
+ "@tailwindcss/typography": "^0.5.19",
14
+ "autoprefixer": "^10.4.21",
15
+ "postcss": "^8.5.6",
16
+ "tailwindcss": "^3.4.18"
17
+ }
18
+ },
19
+ "node_modules/@alloc/quick-lru": {
20
+ "version": "5.2.0",
21
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
22
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
23
+ "dev": true,
24
+ "license": "MIT",
25
+ "engines": {
26
+ "node": ">=10"
27
+ },
28
+ "funding": {
29
+ "url": "https://github.com/sponsors/sindresorhus"
30
+ }
31
+ },
32
+ "node_modules/@jridgewell/gen-mapping": {
33
+ "version": "0.3.13",
34
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
35
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
36
+ "dev": true,
37
+ "license": "MIT",
38
+ "dependencies": {
39
+ "@jridgewell/sourcemap-codec": "^1.5.0",
40
+ "@jridgewell/trace-mapping": "^0.3.24"
41
+ }
42
+ },
43
+ "node_modules/@jridgewell/resolve-uri": {
44
+ "version": "3.1.2",
45
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
46
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
47
+ "dev": true,
48
+ "license": "MIT",
49
+ "engines": {
50
+ "node": ">=6.0.0"
51
+ }
52
+ },
53
+ "node_modules/@jridgewell/sourcemap-codec": {
54
+ "version": "1.5.5",
55
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
56
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
57
+ "dev": true,
58
+ "license": "MIT"
59
+ },
60
+ "node_modules/@jridgewell/trace-mapping": {
61
+ "version": "0.3.31",
62
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
63
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
64
+ "dev": true,
65
+ "license": "MIT",
66
+ "dependencies": {
67
+ "@jridgewell/resolve-uri": "^3.1.0",
68
+ "@jridgewell/sourcemap-codec": "^1.4.14"
69
+ }
70
+ },
71
+ "node_modules/@nodelib/fs.scandir": {
72
+ "version": "2.1.5",
73
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
74
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
75
+ "dev": true,
76
+ "license": "MIT",
77
+ "dependencies": {
78
+ "@nodelib/fs.stat": "2.0.5",
79
+ "run-parallel": "^1.1.9"
80
+ },
81
+ "engines": {
82
+ "node": ">= 8"
83
+ }
84
+ },
85
+ "node_modules/@nodelib/fs.stat": {
86
+ "version": "2.0.5",
87
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
88
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
89
+ "dev": true,
90
+ "license": "MIT",
91
+ "engines": {
92
+ "node": ">= 8"
93
+ }
94
+ },
95
+ "node_modules/@nodelib/fs.walk": {
96
+ "version": "1.2.8",
97
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
98
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
99
+ "dev": true,
100
+ "license": "MIT",
101
+ "dependencies": {
102
+ "@nodelib/fs.scandir": "2.1.5",
103
+ "fastq": "^1.6.0"
104
+ },
105
+ "engines": {
106
+ "node": ">= 8"
107
+ }
108
+ },
109
+ "node_modules/@tailwindcss/typography": {
110
+ "version": "0.5.19",
111
+ "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
112
+ "integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
113
+ "dev": true,
114
+ "license": "MIT",
115
+ "dependencies": {
116
+ "postcss-selector-parser": "6.0.10"
117
+ },
118
+ "peerDependencies": {
119
+ "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
120
+ }
121
+ },
122
+ "node_modules/@types/debug": {
123
+ "version": "4.1.12",
124
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
125
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
126
+ "license": "MIT",
127
+ "dependencies": {
128
+ "@types/ms": "*"
129
+ }
130
+ },
131
+ "node_modules/@types/mdast": {
132
+ "version": "4.0.4",
133
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
134
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
135
+ "license": "MIT",
136
+ "dependencies": {
137
+ "@types/unist": "*"
138
+ }
139
+ },
140
+ "node_modules/@types/ms": {
141
+ "version": "2.1.0",
142
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
143
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
144
+ "license": "MIT"
145
+ },
146
+ "node_modules/@types/unist": {
147
+ "version": "3.0.3",
148
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
149
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
150
+ "license": "MIT"
151
+ },
152
+ "node_modules/any-promise": {
153
+ "version": "1.3.0",
154
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
155
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
156
+ "dev": true,
157
+ "license": "MIT"
158
+ },
159
+ "node_modules/anymatch": {
160
+ "version": "3.1.3",
161
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
162
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
163
+ "dev": true,
164
+ "license": "ISC",
165
+ "dependencies": {
166
+ "normalize-path": "^3.0.0",
167
+ "picomatch": "^2.0.4"
168
+ },
169
+ "engines": {
170
+ "node": ">= 8"
171
+ }
172
+ },
173
+ "node_modules/arg": {
174
+ "version": "5.0.2",
175
+ "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
176
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
177
+ "dev": true,
178
+ "license": "MIT"
179
+ },
180
+ "node_modules/autoprefixer": {
181
+ "version": "10.4.21",
182
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
183
+ "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
184
+ "dev": true,
185
+ "funding": [
186
+ {
187
+ "type": "opencollective",
188
+ "url": "https://opencollective.com/postcss/"
189
+ },
190
+ {
191
+ "type": "tidelift",
192
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
193
+ },
194
+ {
195
+ "type": "github",
196
+ "url": "https://github.com/sponsors/ai"
197
+ }
198
+ ],
199
+ "license": "MIT",
200
+ "dependencies": {
201
+ "browserslist": "^4.24.4",
202
+ "caniuse-lite": "^1.0.30001702",
203
+ "fraction.js": "^4.3.7",
204
+ "normalize-range": "^0.1.2",
205
+ "picocolors": "^1.1.1",
206
+ "postcss-value-parser": "^4.2.0"
207
+ },
208
+ "bin": {
209
+ "autoprefixer": "bin/autoprefixer"
210
+ },
211
+ "engines": {
212
+ "node": "^10 || ^12 || >=14"
213
+ },
214
+ "peerDependencies": {
215
+ "postcss": "^8.1.0"
216
+ }
217
+ },
218
+ "node_modules/bail": {
219
+ "version": "2.0.2",
220
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
221
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
222
+ "license": "MIT",
223
+ "funding": {
224
+ "type": "github",
225
+ "url": "https://github.com/sponsors/wooorm"
226
+ }
227
+ },
228
+ "node_modules/baseline-browser-mapping": {
229
+ "version": "2.9.5",
230
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.5.tgz",
231
+ "integrity": "sha512-D5vIoztZOq1XM54LUdttJVc96ggEsIfju2JBvht06pSzpckp3C7HReun67Bghzrtdsq9XdMGbSSB3v3GhMNmAA==",
232
+ "dev": true,
233
+ "license": "Apache-2.0",
234
+ "bin": {
235
+ "baseline-browser-mapping": "dist/cli.js"
236
+ }
237
+ },
238
+ "node_modules/binary-extensions": {
239
+ "version": "2.3.0",
240
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
241
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
242
+ "dev": true,
243
+ "license": "MIT",
244
+ "engines": {
245
+ "node": ">=8"
246
+ },
247
+ "funding": {
248
+ "url": "https://github.com/sponsors/sindresorhus"
249
+ }
250
+ },
251
+ "node_modules/braces": {
252
+ "version": "3.0.3",
253
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
254
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
255
+ "dev": true,
256
+ "license": "MIT",
257
+ "dependencies": {
258
+ "fill-range": "^7.1.1"
259
+ },
260
+ "engines": {
261
+ "node": ">=8"
262
+ }
263
+ },
264
+ "node_modules/browserslist": {
265
+ "version": "4.28.1",
266
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
267
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
268
+ "dev": true,
269
+ "funding": [
270
+ {
271
+ "type": "opencollective",
272
+ "url": "https://opencollective.com/browserslist"
273
+ },
274
+ {
275
+ "type": "tidelift",
276
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
277
+ },
278
+ {
279
+ "type": "github",
280
+ "url": "https://github.com/sponsors/ai"
281
+ }
282
+ ],
283
+ "license": "MIT",
284
+ "dependencies": {
285
+ "baseline-browser-mapping": "^2.9.0",
286
+ "caniuse-lite": "^1.0.30001759",
287
+ "electron-to-chromium": "^1.5.263",
288
+ "node-releases": "^2.0.27",
289
+ "update-browserslist-db": "^1.2.0"
290
+ },
291
+ "bin": {
292
+ "browserslist": "cli.js"
293
+ },
294
+ "engines": {
295
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
296
+ }
297
+ },
298
+ "node_modules/camelcase-css": {
299
+ "version": "2.0.1",
300
+ "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
301
+ "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
302
+ "dev": true,
303
+ "license": "MIT",
304
+ "engines": {
305
+ "node": ">= 6"
306
+ }
307
+ },
308
+ "node_modules/caniuse-lite": {
309
+ "version": "1.0.30001759",
310
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001759.tgz",
311
+ "integrity": "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==",
312
+ "dev": true,
313
+ "funding": [
314
+ {
315
+ "type": "opencollective",
316
+ "url": "https://opencollective.com/browserslist"
317
+ },
318
+ {
319
+ "type": "tidelift",
320
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
321
+ },
322
+ {
323
+ "type": "github",
324
+ "url": "https://github.com/sponsors/ai"
325
+ }
326
+ ],
327
+ "license": "CC-BY-4.0"
328
+ },
329
+ "node_modules/ccount": {
330
+ "version": "2.0.1",
331
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
332
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
333
+ "license": "MIT",
334
+ "funding": {
335
+ "type": "github",
336
+ "url": "https://github.com/sponsors/wooorm"
337
+ }
338
+ },
339
+ "node_modules/character-entities": {
340
+ "version": "2.0.2",
341
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
342
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
343
+ "license": "MIT",
344
+ "funding": {
345
+ "type": "github",
346
+ "url": "https://github.com/sponsors/wooorm"
347
+ }
348
+ },
349
+ "node_modules/chokidar": {
350
+ "version": "3.6.0",
351
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
352
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
353
+ "dev": true,
354
+ "license": "MIT",
355
+ "dependencies": {
356
+ "anymatch": "~3.1.2",
357
+ "braces": "~3.0.2",
358
+ "glob-parent": "~5.1.2",
359
+ "is-binary-path": "~2.1.0",
360
+ "is-glob": "~4.0.1",
361
+ "normalize-path": "~3.0.0",
362
+ "readdirp": "~3.6.0"
363
+ },
364
+ "engines": {
365
+ "node": ">= 8.10.0"
366
+ },
367
+ "funding": {
368
+ "url": "https://paulmillr.com/funding/"
369
+ },
370
+ "optionalDependencies": {
371
+ "fsevents": "~2.3.2"
372
+ }
373
+ },
374
+ "node_modules/chokidar/node_modules/glob-parent": {
375
+ "version": "5.1.2",
376
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
377
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
378
+ "dev": true,
379
+ "license": "ISC",
380
+ "dependencies": {
381
+ "is-glob": "^4.0.1"
382
+ },
383
+ "engines": {
384
+ "node": ">= 6"
385
+ }
386
+ },
387
+ "node_modules/commander": {
388
+ "version": "4.1.1",
389
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
390
+ "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
391
+ "dev": true,
392
+ "license": "MIT",
393
+ "engines": {
394
+ "node": ">= 6"
395
+ }
396
+ },
397
+ "node_modules/cssesc": {
398
+ "version": "3.0.0",
399
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
400
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
401
+ "dev": true,
402
+ "license": "MIT",
403
+ "bin": {
404
+ "cssesc": "bin/cssesc"
405
+ },
406
+ "engines": {
407
+ "node": ">=4"
408
+ }
409
+ },
410
+ "node_modules/debug": {
411
+ "version": "4.4.3",
412
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
413
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
414
+ "license": "MIT",
415
+ "dependencies": {
416
+ "ms": "^2.1.3"
417
+ },
418
+ "engines": {
419
+ "node": ">=6.0"
420
+ },
421
+ "peerDependenciesMeta": {
422
+ "supports-color": {
423
+ "optional": true
424
+ }
425
+ }
426
+ },
427
+ "node_modules/decode-named-character-reference": {
428
+ "version": "1.2.0",
429
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
430
+ "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
431
+ "license": "MIT",
432
+ "dependencies": {
433
+ "character-entities": "^2.0.0"
434
+ },
435
+ "funding": {
436
+ "type": "github",
437
+ "url": "https://github.com/sponsors/wooorm"
438
+ }
439
+ },
440
+ "node_modules/dequal": {
441
+ "version": "2.0.3",
442
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
443
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
444
+ "license": "MIT",
445
+ "engines": {
446
+ "node": ">=6"
447
+ }
448
+ },
449
+ "node_modules/devlop": {
450
+ "version": "1.1.0",
451
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
452
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
453
+ "license": "MIT",
454
+ "dependencies": {
455
+ "dequal": "^2.0.0"
456
+ },
457
+ "funding": {
458
+ "type": "github",
459
+ "url": "https://github.com/sponsors/wooorm"
460
+ }
461
+ },
462
+ "node_modules/didyoumean": {
463
+ "version": "1.2.2",
464
+ "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
465
+ "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
466
+ "dev": true,
467
+ "license": "Apache-2.0"
468
+ },
469
+ "node_modules/dlv": {
470
+ "version": "1.1.3",
471
+ "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
472
+ "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
473
+ "dev": true,
474
+ "license": "MIT"
475
+ },
476
+ "node_modules/electron-to-chromium": {
477
+ "version": "1.5.266",
478
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.266.tgz",
479
+ "integrity": "sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg==",
480
+ "dev": true,
481
+ "license": "ISC"
482
+ },
483
+ "node_modules/escalade": {
484
+ "version": "3.2.0",
485
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
486
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
487
+ "dev": true,
488
+ "license": "MIT",
489
+ "engines": {
490
+ "node": ">=6"
491
+ }
492
+ },
493
+ "node_modules/escape-string-regexp": {
494
+ "version": "5.0.0",
495
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
496
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
497
+ "license": "MIT",
498
+ "engines": {
499
+ "node": ">=12"
500
+ },
501
+ "funding": {
502
+ "url": "https://github.com/sponsors/sindresorhus"
503
+ }
504
+ },
505
+ "node_modules/extend": {
506
+ "version": "3.0.2",
507
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
508
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
509
+ "license": "MIT"
510
+ },
511
+ "node_modules/fast-glob": {
512
+ "version": "3.3.3",
513
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
514
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
515
+ "dev": true,
516
+ "license": "MIT",
517
+ "dependencies": {
518
+ "@nodelib/fs.stat": "^2.0.2",
519
+ "@nodelib/fs.walk": "^1.2.3",
520
+ "glob-parent": "^5.1.2",
521
+ "merge2": "^1.3.0",
522
+ "micromatch": "^4.0.8"
523
+ },
524
+ "engines": {
525
+ "node": ">=8.6.0"
526
+ }
527
+ },
528
+ "node_modules/fast-glob/node_modules/glob-parent": {
529
+ "version": "5.1.2",
530
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
531
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
532
+ "dev": true,
533
+ "license": "ISC",
534
+ "dependencies": {
535
+ "is-glob": "^4.0.1"
536
+ },
537
+ "engines": {
538
+ "node": ">= 6"
539
+ }
540
+ },
541
+ "node_modules/fastq": {
542
+ "version": "1.19.1",
543
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
544
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
545
+ "dev": true,
546
+ "license": "ISC",
547
+ "dependencies": {
548
+ "reusify": "^1.0.4"
549
+ }
550
+ },
551
+ "node_modules/fill-range": {
552
+ "version": "7.1.1",
553
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
554
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
555
+ "dev": true,
556
+ "license": "MIT",
557
+ "dependencies": {
558
+ "to-regex-range": "^5.0.1"
559
+ },
560
+ "engines": {
561
+ "node": ">=8"
562
+ }
563
+ },
564
+ "node_modules/fraction.js": {
565
+ "version": "4.3.7",
566
+ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
567
+ "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
568
+ "dev": true,
569
+ "license": "MIT",
570
+ "engines": {
571
+ "node": "*"
572
+ },
573
+ "funding": {
574
+ "type": "patreon",
575
+ "url": "https://github.com/sponsors/rawify"
576
+ }
577
+ },
578
+ "node_modules/fsevents": {
579
+ "version": "2.3.3",
580
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
581
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
582
+ "dev": true,
583
+ "hasInstallScript": true,
584
+ "license": "MIT",
585
+ "optional": true,
586
+ "os": [
587
+ "darwin"
588
+ ],
589
+ "engines": {
590
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
591
+ }
592
+ },
593
+ "node_modules/function-bind": {
594
+ "version": "1.1.2",
595
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
596
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
597
+ "dev": true,
598
+ "license": "MIT",
599
+ "funding": {
600
+ "url": "https://github.com/sponsors/ljharb"
601
+ }
602
+ },
603
+ "node_modules/glob-parent": {
604
+ "version": "6.0.2",
605
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
606
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
607
+ "dev": true,
608
+ "license": "ISC",
609
+ "dependencies": {
610
+ "is-glob": "^4.0.3"
611
+ },
612
+ "engines": {
613
+ "node": ">=10.13.0"
614
+ }
615
+ },
616
+ "node_modules/hasown": {
617
+ "version": "2.0.2",
618
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
619
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
620
+ "dev": true,
621
+ "license": "MIT",
622
+ "dependencies": {
623
+ "function-bind": "^1.1.2"
624
+ },
625
+ "engines": {
626
+ "node": ">= 0.4"
627
+ }
628
+ },
629
+ "node_modules/is-binary-path": {
630
+ "version": "2.1.0",
631
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
632
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
633
+ "dev": true,
634
+ "license": "MIT",
635
+ "dependencies": {
636
+ "binary-extensions": "^2.0.0"
637
+ },
638
+ "engines": {
639
+ "node": ">=8"
640
+ }
641
+ },
642
+ "node_modules/is-core-module": {
643
+ "version": "2.16.1",
644
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
645
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
646
+ "dev": true,
647
+ "license": "MIT",
648
+ "dependencies": {
649
+ "hasown": "^2.0.2"
650
+ },
651
+ "engines": {
652
+ "node": ">= 0.4"
653
+ },
654
+ "funding": {
655
+ "url": "https://github.com/sponsors/ljharb"
656
+ }
657
+ },
658
+ "node_modules/is-extglob": {
659
+ "version": "2.1.1",
660
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
661
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
662
+ "dev": true,
663
+ "license": "MIT",
664
+ "engines": {
665
+ "node": ">=0.10.0"
666
+ }
667
+ },
668
+ "node_modules/is-glob": {
669
+ "version": "4.0.3",
670
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
671
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
672
+ "dev": true,
673
+ "license": "MIT",
674
+ "dependencies": {
675
+ "is-extglob": "^2.1.1"
676
+ },
677
+ "engines": {
678
+ "node": ">=0.10.0"
679
+ }
680
+ },
681
+ "node_modules/is-number": {
682
+ "version": "7.0.0",
683
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
684
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
685
+ "dev": true,
686
+ "license": "MIT",
687
+ "engines": {
688
+ "node": ">=0.12.0"
689
+ }
690
+ },
691
+ "node_modules/is-plain-obj": {
692
+ "version": "4.1.0",
693
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
694
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
695
+ "license": "MIT",
696
+ "engines": {
697
+ "node": ">=12"
698
+ },
699
+ "funding": {
700
+ "url": "https://github.com/sponsors/sindresorhus"
701
+ }
702
+ },
703
+ "node_modules/jiti": {
704
+ "version": "1.21.7",
705
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
706
+ "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
707
+ "dev": true,
708
+ "license": "MIT",
709
+ "bin": {
710
+ "jiti": "bin/jiti.js"
711
+ }
712
+ },
713
+ "node_modules/lilconfig": {
714
+ "version": "3.1.3",
715
+ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
716
+ "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
717
+ "dev": true,
718
+ "license": "MIT",
719
+ "engines": {
720
+ "node": ">=14"
721
+ },
722
+ "funding": {
723
+ "url": "https://github.com/sponsors/antonk52"
724
+ }
725
+ },
726
+ "node_modules/lines-and-columns": {
727
+ "version": "1.2.4",
728
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
729
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
730
+ "dev": true,
731
+ "license": "MIT"
732
+ },
733
+ "node_modules/longest-streak": {
734
+ "version": "3.1.0",
735
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
736
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
737
+ "license": "MIT",
738
+ "funding": {
739
+ "type": "github",
740
+ "url": "https://github.com/sponsors/wooorm"
741
+ }
742
+ },
743
+ "node_modules/markdown-table": {
744
+ "version": "3.0.4",
745
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
746
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
747
+ "license": "MIT",
748
+ "funding": {
749
+ "type": "github",
750
+ "url": "https://github.com/sponsors/wooorm"
751
+ }
752
+ },
753
+ "node_modules/mdast-util-find-and-replace": {
754
+ "version": "3.0.2",
755
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
756
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
757
+ "license": "MIT",
758
+ "dependencies": {
759
+ "@types/mdast": "^4.0.0",
760
+ "escape-string-regexp": "^5.0.0",
761
+ "unist-util-is": "^6.0.0",
762
+ "unist-util-visit-parents": "^6.0.0"
763
+ },
764
+ "funding": {
765
+ "type": "opencollective",
766
+ "url": "https://opencollective.com/unified"
767
+ }
768
+ },
769
+ "node_modules/mdast-util-from-markdown": {
770
+ "version": "2.0.2",
771
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
772
+ "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
773
+ "license": "MIT",
774
+ "dependencies": {
775
+ "@types/mdast": "^4.0.0",
776
+ "@types/unist": "^3.0.0",
777
+ "decode-named-character-reference": "^1.0.0",
778
+ "devlop": "^1.0.0",
779
+ "mdast-util-to-string": "^4.0.0",
780
+ "micromark": "^4.0.0",
781
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
782
+ "micromark-util-decode-string": "^2.0.0",
783
+ "micromark-util-normalize-identifier": "^2.0.0",
784
+ "micromark-util-symbol": "^2.0.0",
785
+ "micromark-util-types": "^2.0.0",
786
+ "unist-util-stringify-position": "^4.0.0"
787
+ },
788
+ "funding": {
789
+ "type": "opencollective",
790
+ "url": "https://opencollective.com/unified"
791
+ }
792
+ },
793
+ "node_modules/mdast-util-gfm": {
794
+ "version": "3.1.0",
795
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
796
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
797
+ "license": "MIT",
798
+ "dependencies": {
799
+ "mdast-util-from-markdown": "^2.0.0",
800
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
801
+ "mdast-util-gfm-footnote": "^2.0.0",
802
+ "mdast-util-gfm-strikethrough": "^2.0.0",
803
+ "mdast-util-gfm-table": "^2.0.0",
804
+ "mdast-util-gfm-task-list-item": "^2.0.0",
805
+ "mdast-util-to-markdown": "^2.0.0"
806
+ },
807
+ "funding": {
808
+ "type": "opencollective",
809
+ "url": "https://opencollective.com/unified"
810
+ }
811
+ },
812
+ "node_modules/mdast-util-gfm-autolink-literal": {
813
+ "version": "2.0.1",
814
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
815
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
816
+ "license": "MIT",
817
+ "dependencies": {
818
+ "@types/mdast": "^4.0.0",
819
+ "ccount": "^2.0.0",
820
+ "devlop": "^1.0.0",
821
+ "mdast-util-find-and-replace": "^3.0.0",
822
+ "micromark-util-character": "^2.0.0"
823
+ },
824
+ "funding": {
825
+ "type": "opencollective",
826
+ "url": "https://opencollective.com/unified"
827
+ }
828
+ },
829
+ "node_modules/mdast-util-gfm-footnote": {
830
+ "version": "2.1.0",
831
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
832
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
833
+ "license": "MIT",
834
+ "dependencies": {
835
+ "@types/mdast": "^4.0.0",
836
+ "devlop": "^1.1.0",
837
+ "mdast-util-from-markdown": "^2.0.0",
838
+ "mdast-util-to-markdown": "^2.0.0",
839
+ "micromark-util-normalize-identifier": "^2.0.0"
840
+ },
841
+ "funding": {
842
+ "type": "opencollective",
843
+ "url": "https://opencollective.com/unified"
844
+ }
845
+ },
846
+ "node_modules/mdast-util-gfm-strikethrough": {
847
+ "version": "2.0.0",
848
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
849
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
850
+ "license": "MIT",
851
+ "dependencies": {
852
+ "@types/mdast": "^4.0.0",
853
+ "mdast-util-from-markdown": "^2.0.0",
854
+ "mdast-util-to-markdown": "^2.0.0"
855
+ },
856
+ "funding": {
857
+ "type": "opencollective",
858
+ "url": "https://opencollective.com/unified"
859
+ }
860
+ },
861
+ "node_modules/mdast-util-gfm-table": {
862
+ "version": "2.0.0",
863
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
864
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
865
+ "license": "MIT",
866
+ "dependencies": {
867
+ "@types/mdast": "^4.0.0",
868
+ "devlop": "^1.0.0",
869
+ "markdown-table": "^3.0.0",
870
+ "mdast-util-from-markdown": "^2.0.0",
871
+ "mdast-util-to-markdown": "^2.0.0"
872
+ },
873
+ "funding": {
874
+ "type": "opencollective",
875
+ "url": "https://opencollective.com/unified"
876
+ }
877
+ },
878
+ "node_modules/mdast-util-gfm-task-list-item": {
879
+ "version": "2.0.0",
880
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
881
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
882
+ "license": "MIT",
883
+ "dependencies": {
884
+ "@types/mdast": "^4.0.0",
885
+ "devlop": "^1.0.0",
886
+ "mdast-util-from-markdown": "^2.0.0",
887
+ "mdast-util-to-markdown": "^2.0.0"
888
+ },
889
+ "funding": {
890
+ "type": "opencollective",
891
+ "url": "https://opencollective.com/unified"
892
+ }
893
+ },
894
+ "node_modules/mdast-util-phrasing": {
895
+ "version": "4.1.0",
896
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
897
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
898
+ "license": "MIT",
899
+ "dependencies": {
900
+ "@types/mdast": "^4.0.0",
901
+ "unist-util-is": "^6.0.0"
902
+ },
903
+ "funding": {
904
+ "type": "opencollective",
905
+ "url": "https://opencollective.com/unified"
906
+ }
907
+ },
908
+ "node_modules/mdast-util-to-markdown": {
909
+ "version": "2.1.2",
910
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
911
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
912
+ "license": "MIT",
913
+ "dependencies": {
914
+ "@types/mdast": "^4.0.0",
915
+ "@types/unist": "^3.0.0",
916
+ "longest-streak": "^3.0.0",
917
+ "mdast-util-phrasing": "^4.0.0",
918
+ "mdast-util-to-string": "^4.0.0",
919
+ "micromark-util-classify-character": "^2.0.0",
920
+ "micromark-util-decode-string": "^2.0.0",
921
+ "unist-util-visit": "^5.0.0",
922
+ "zwitch": "^2.0.0"
923
+ },
924
+ "funding": {
925
+ "type": "opencollective",
926
+ "url": "https://opencollective.com/unified"
927
+ }
928
+ },
929
+ "node_modules/mdast-util-to-string": {
930
+ "version": "4.0.0",
931
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
932
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
933
+ "license": "MIT",
934
+ "dependencies": {
935
+ "@types/mdast": "^4.0.0"
936
+ },
937
+ "funding": {
938
+ "type": "opencollective",
939
+ "url": "https://opencollective.com/unified"
940
+ }
941
+ },
942
+ "node_modules/merge2": {
943
+ "version": "1.4.1",
944
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
945
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
946
+ "dev": true,
947
+ "license": "MIT",
948
+ "engines": {
949
+ "node": ">= 8"
950
+ }
951
+ },
952
+ "node_modules/micromark": {
953
+ "version": "4.0.2",
954
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
955
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
956
+ "funding": [
957
+ {
958
+ "type": "GitHub Sponsors",
959
+ "url": "https://github.com/sponsors/unifiedjs"
960
+ },
961
+ {
962
+ "type": "OpenCollective",
963
+ "url": "https://opencollective.com/unified"
964
+ }
965
+ ],
966
+ "license": "MIT",
967
+ "dependencies": {
968
+ "@types/debug": "^4.0.0",
969
+ "debug": "^4.0.0",
970
+ "decode-named-character-reference": "^1.0.0",
971
+ "devlop": "^1.0.0",
972
+ "micromark-core-commonmark": "^2.0.0",
973
+ "micromark-factory-space": "^2.0.0",
974
+ "micromark-util-character": "^2.0.0",
975
+ "micromark-util-chunked": "^2.0.0",
976
+ "micromark-util-combine-extensions": "^2.0.0",
977
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
978
+ "micromark-util-encode": "^2.0.0",
979
+ "micromark-util-normalize-identifier": "^2.0.0",
980
+ "micromark-util-resolve-all": "^2.0.0",
981
+ "micromark-util-sanitize-uri": "^2.0.0",
982
+ "micromark-util-subtokenize": "^2.0.0",
983
+ "micromark-util-symbol": "^2.0.0",
984
+ "micromark-util-types": "^2.0.0"
985
+ }
986
+ },
987
+ "node_modules/micromark-core-commonmark": {
988
+ "version": "2.0.3",
989
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
990
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
991
+ "funding": [
992
+ {
993
+ "type": "GitHub Sponsors",
994
+ "url": "https://github.com/sponsors/unifiedjs"
995
+ },
996
+ {
997
+ "type": "OpenCollective",
998
+ "url": "https://opencollective.com/unified"
999
+ }
1000
+ ],
1001
+ "license": "MIT",
1002
+ "dependencies": {
1003
+ "decode-named-character-reference": "^1.0.0",
1004
+ "devlop": "^1.0.0",
1005
+ "micromark-factory-destination": "^2.0.0",
1006
+ "micromark-factory-label": "^2.0.0",
1007
+ "micromark-factory-space": "^2.0.0",
1008
+ "micromark-factory-title": "^2.0.0",
1009
+ "micromark-factory-whitespace": "^2.0.0",
1010
+ "micromark-util-character": "^2.0.0",
1011
+ "micromark-util-chunked": "^2.0.0",
1012
+ "micromark-util-classify-character": "^2.0.0",
1013
+ "micromark-util-html-tag-name": "^2.0.0",
1014
+ "micromark-util-normalize-identifier": "^2.0.0",
1015
+ "micromark-util-resolve-all": "^2.0.0",
1016
+ "micromark-util-subtokenize": "^2.0.0",
1017
+ "micromark-util-symbol": "^2.0.0",
1018
+ "micromark-util-types": "^2.0.0"
1019
+ }
1020
+ },
1021
+ "node_modules/micromark-extension-gfm": {
1022
+ "version": "3.0.0",
1023
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
1024
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
1025
+ "license": "MIT",
1026
+ "dependencies": {
1027
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
1028
+ "micromark-extension-gfm-footnote": "^2.0.0",
1029
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
1030
+ "micromark-extension-gfm-table": "^2.0.0",
1031
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
1032
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
1033
+ "micromark-util-combine-extensions": "^2.0.0",
1034
+ "micromark-util-types": "^2.0.0"
1035
+ },
1036
+ "funding": {
1037
+ "type": "opencollective",
1038
+ "url": "https://opencollective.com/unified"
1039
+ }
1040
+ },
1041
+ "node_modules/micromark-extension-gfm-autolink-literal": {
1042
+ "version": "2.1.0",
1043
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
1044
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
1045
+ "license": "MIT",
1046
+ "dependencies": {
1047
+ "micromark-util-character": "^2.0.0",
1048
+ "micromark-util-sanitize-uri": "^2.0.0",
1049
+ "micromark-util-symbol": "^2.0.0",
1050
+ "micromark-util-types": "^2.0.0"
1051
+ },
1052
+ "funding": {
1053
+ "type": "opencollective",
1054
+ "url": "https://opencollective.com/unified"
1055
+ }
1056
+ },
1057
+ "node_modules/micromark-extension-gfm-footnote": {
1058
+ "version": "2.1.0",
1059
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
1060
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
1061
+ "license": "MIT",
1062
+ "dependencies": {
1063
+ "devlop": "^1.0.0",
1064
+ "micromark-core-commonmark": "^2.0.0",
1065
+ "micromark-factory-space": "^2.0.0",
1066
+ "micromark-util-character": "^2.0.0",
1067
+ "micromark-util-normalize-identifier": "^2.0.0",
1068
+ "micromark-util-sanitize-uri": "^2.0.0",
1069
+ "micromark-util-symbol": "^2.0.0",
1070
+ "micromark-util-types": "^2.0.0"
1071
+ },
1072
+ "funding": {
1073
+ "type": "opencollective",
1074
+ "url": "https://opencollective.com/unified"
1075
+ }
1076
+ },
1077
+ "node_modules/micromark-extension-gfm-strikethrough": {
1078
+ "version": "2.1.0",
1079
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
1080
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
1081
+ "license": "MIT",
1082
+ "dependencies": {
1083
+ "devlop": "^1.0.0",
1084
+ "micromark-util-chunked": "^2.0.0",
1085
+ "micromark-util-classify-character": "^2.0.0",
1086
+ "micromark-util-resolve-all": "^2.0.0",
1087
+ "micromark-util-symbol": "^2.0.0",
1088
+ "micromark-util-types": "^2.0.0"
1089
+ },
1090
+ "funding": {
1091
+ "type": "opencollective",
1092
+ "url": "https://opencollective.com/unified"
1093
+ }
1094
+ },
1095
+ "node_modules/micromark-extension-gfm-table": {
1096
+ "version": "2.1.1",
1097
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
1098
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
1099
+ "license": "MIT",
1100
+ "dependencies": {
1101
+ "devlop": "^1.0.0",
1102
+ "micromark-factory-space": "^2.0.0",
1103
+ "micromark-util-character": "^2.0.0",
1104
+ "micromark-util-symbol": "^2.0.0",
1105
+ "micromark-util-types": "^2.0.0"
1106
+ },
1107
+ "funding": {
1108
+ "type": "opencollective",
1109
+ "url": "https://opencollective.com/unified"
1110
+ }
1111
+ },
1112
+ "node_modules/micromark-extension-gfm-tagfilter": {
1113
+ "version": "2.0.0",
1114
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
1115
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
1116
+ "license": "MIT",
1117
+ "dependencies": {
1118
+ "micromark-util-types": "^2.0.0"
1119
+ },
1120
+ "funding": {
1121
+ "type": "opencollective",
1122
+ "url": "https://opencollective.com/unified"
1123
+ }
1124
+ },
1125
+ "node_modules/micromark-extension-gfm-task-list-item": {
1126
+ "version": "2.1.0",
1127
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
1128
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
1129
+ "license": "MIT",
1130
+ "dependencies": {
1131
+ "devlop": "^1.0.0",
1132
+ "micromark-factory-space": "^2.0.0",
1133
+ "micromark-util-character": "^2.0.0",
1134
+ "micromark-util-symbol": "^2.0.0",
1135
+ "micromark-util-types": "^2.0.0"
1136
+ },
1137
+ "funding": {
1138
+ "type": "opencollective",
1139
+ "url": "https://opencollective.com/unified"
1140
+ }
1141
+ },
1142
+ "node_modules/micromark-factory-destination": {
1143
+ "version": "2.0.1",
1144
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
1145
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
1146
+ "funding": [
1147
+ {
1148
+ "type": "GitHub Sponsors",
1149
+ "url": "https://github.com/sponsors/unifiedjs"
1150
+ },
1151
+ {
1152
+ "type": "OpenCollective",
1153
+ "url": "https://opencollective.com/unified"
1154
+ }
1155
+ ],
1156
+ "license": "MIT",
1157
+ "dependencies": {
1158
+ "micromark-util-character": "^2.0.0",
1159
+ "micromark-util-symbol": "^2.0.0",
1160
+ "micromark-util-types": "^2.0.0"
1161
+ }
1162
+ },
1163
+ "node_modules/micromark-factory-label": {
1164
+ "version": "2.0.1",
1165
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
1166
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
1167
+ "funding": [
1168
+ {
1169
+ "type": "GitHub Sponsors",
1170
+ "url": "https://github.com/sponsors/unifiedjs"
1171
+ },
1172
+ {
1173
+ "type": "OpenCollective",
1174
+ "url": "https://opencollective.com/unified"
1175
+ }
1176
+ ],
1177
+ "license": "MIT",
1178
+ "dependencies": {
1179
+ "devlop": "^1.0.0",
1180
+ "micromark-util-character": "^2.0.0",
1181
+ "micromark-util-symbol": "^2.0.0",
1182
+ "micromark-util-types": "^2.0.0"
1183
+ }
1184
+ },
1185
+ "node_modules/micromark-factory-space": {
1186
+ "version": "2.0.1",
1187
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
1188
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
1189
+ "funding": [
1190
+ {
1191
+ "type": "GitHub Sponsors",
1192
+ "url": "https://github.com/sponsors/unifiedjs"
1193
+ },
1194
+ {
1195
+ "type": "OpenCollective",
1196
+ "url": "https://opencollective.com/unified"
1197
+ }
1198
+ ],
1199
+ "license": "MIT",
1200
+ "dependencies": {
1201
+ "micromark-util-character": "^2.0.0",
1202
+ "micromark-util-types": "^2.0.0"
1203
+ }
1204
+ },
1205
+ "node_modules/micromark-factory-title": {
1206
+ "version": "2.0.1",
1207
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
1208
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
1209
+ "funding": [
1210
+ {
1211
+ "type": "GitHub Sponsors",
1212
+ "url": "https://github.com/sponsors/unifiedjs"
1213
+ },
1214
+ {
1215
+ "type": "OpenCollective",
1216
+ "url": "https://opencollective.com/unified"
1217
+ }
1218
+ ],
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "micromark-factory-space": "^2.0.0",
1222
+ "micromark-util-character": "^2.0.0",
1223
+ "micromark-util-symbol": "^2.0.0",
1224
+ "micromark-util-types": "^2.0.0"
1225
+ }
1226
+ },
1227
+ "node_modules/micromark-factory-whitespace": {
1228
+ "version": "2.0.1",
1229
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
1230
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
1231
+ "funding": [
1232
+ {
1233
+ "type": "GitHub Sponsors",
1234
+ "url": "https://github.com/sponsors/unifiedjs"
1235
+ },
1236
+ {
1237
+ "type": "OpenCollective",
1238
+ "url": "https://opencollective.com/unified"
1239
+ }
1240
+ ],
1241
+ "license": "MIT",
1242
+ "dependencies": {
1243
+ "micromark-factory-space": "^2.0.0",
1244
+ "micromark-util-character": "^2.0.0",
1245
+ "micromark-util-symbol": "^2.0.0",
1246
+ "micromark-util-types": "^2.0.0"
1247
+ }
1248
+ },
1249
+ "node_modules/micromark-util-character": {
1250
+ "version": "2.1.1",
1251
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
1252
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
1253
+ "funding": [
1254
+ {
1255
+ "type": "GitHub Sponsors",
1256
+ "url": "https://github.com/sponsors/unifiedjs"
1257
+ },
1258
+ {
1259
+ "type": "OpenCollective",
1260
+ "url": "https://opencollective.com/unified"
1261
+ }
1262
+ ],
1263
+ "license": "MIT",
1264
+ "dependencies": {
1265
+ "micromark-util-symbol": "^2.0.0",
1266
+ "micromark-util-types": "^2.0.0"
1267
+ }
1268
+ },
1269
+ "node_modules/micromark-util-chunked": {
1270
+ "version": "2.0.1",
1271
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
1272
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
1273
+ "funding": [
1274
+ {
1275
+ "type": "GitHub Sponsors",
1276
+ "url": "https://github.com/sponsors/unifiedjs"
1277
+ },
1278
+ {
1279
+ "type": "OpenCollective",
1280
+ "url": "https://opencollective.com/unified"
1281
+ }
1282
+ ],
1283
+ "license": "MIT",
1284
+ "dependencies": {
1285
+ "micromark-util-symbol": "^2.0.0"
1286
+ }
1287
+ },
1288
+ "node_modules/micromark-util-classify-character": {
1289
+ "version": "2.0.1",
1290
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
1291
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
1292
+ "funding": [
1293
+ {
1294
+ "type": "GitHub Sponsors",
1295
+ "url": "https://github.com/sponsors/unifiedjs"
1296
+ },
1297
+ {
1298
+ "type": "OpenCollective",
1299
+ "url": "https://opencollective.com/unified"
1300
+ }
1301
+ ],
1302
+ "license": "MIT",
1303
+ "dependencies": {
1304
+ "micromark-util-character": "^2.0.0",
1305
+ "micromark-util-symbol": "^2.0.0",
1306
+ "micromark-util-types": "^2.0.0"
1307
+ }
1308
+ },
1309
+ "node_modules/micromark-util-combine-extensions": {
1310
+ "version": "2.0.1",
1311
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
1312
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
1313
+ "funding": [
1314
+ {
1315
+ "type": "GitHub Sponsors",
1316
+ "url": "https://github.com/sponsors/unifiedjs"
1317
+ },
1318
+ {
1319
+ "type": "OpenCollective",
1320
+ "url": "https://opencollective.com/unified"
1321
+ }
1322
+ ],
1323
+ "license": "MIT",
1324
+ "dependencies": {
1325
+ "micromark-util-chunked": "^2.0.0",
1326
+ "micromark-util-types": "^2.0.0"
1327
+ }
1328
+ },
1329
+ "node_modules/micromark-util-decode-numeric-character-reference": {
1330
+ "version": "2.0.2",
1331
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
1332
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
1333
+ "funding": [
1334
+ {
1335
+ "type": "GitHub Sponsors",
1336
+ "url": "https://github.com/sponsors/unifiedjs"
1337
+ },
1338
+ {
1339
+ "type": "OpenCollective",
1340
+ "url": "https://opencollective.com/unified"
1341
+ }
1342
+ ],
1343
+ "license": "MIT",
1344
+ "dependencies": {
1345
+ "micromark-util-symbol": "^2.0.0"
1346
+ }
1347
+ },
1348
+ "node_modules/micromark-util-decode-string": {
1349
+ "version": "2.0.1",
1350
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
1351
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
1352
+ "funding": [
1353
+ {
1354
+ "type": "GitHub Sponsors",
1355
+ "url": "https://github.com/sponsors/unifiedjs"
1356
+ },
1357
+ {
1358
+ "type": "OpenCollective",
1359
+ "url": "https://opencollective.com/unified"
1360
+ }
1361
+ ],
1362
+ "license": "MIT",
1363
+ "dependencies": {
1364
+ "decode-named-character-reference": "^1.0.0",
1365
+ "micromark-util-character": "^2.0.0",
1366
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
1367
+ "micromark-util-symbol": "^2.0.0"
1368
+ }
1369
+ },
1370
+ "node_modules/micromark-util-encode": {
1371
+ "version": "2.0.1",
1372
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
1373
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
1374
+ "funding": [
1375
+ {
1376
+ "type": "GitHub Sponsors",
1377
+ "url": "https://github.com/sponsors/unifiedjs"
1378
+ },
1379
+ {
1380
+ "type": "OpenCollective",
1381
+ "url": "https://opencollective.com/unified"
1382
+ }
1383
+ ],
1384
+ "license": "MIT"
1385
+ },
1386
+ "node_modules/micromark-util-html-tag-name": {
1387
+ "version": "2.0.1",
1388
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
1389
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
1390
+ "funding": [
1391
+ {
1392
+ "type": "GitHub Sponsors",
1393
+ "url": "https://github.com/sponsors/unifiedjs"
1394
+ },
1395
+ {
1396
+ "type": "OpenCollective",
1397
+ "url": "https://opencollective.com/unified"
1398
+ }
1399
+ ],
1400
+ "license": "MIT"
1401
+ },
1402
+ "node_modules/micromark-util-normalize-identifier": {
1403
+ "version": "2.0.1",
1404
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
1405
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
1406
+ "funding": [
1407
+ {
1408
+ "type": "GitHub Sponsors",
1409
+ "url": "https://github.com/sponsors/unifiedjs"
1410
+ },
1411
+ {
1412
+ "type": "OpenCollective",
1413
+ "url": "https://opencollective.com/unified"
1414
+ }
1415
+ ],
1416
+ "license": "MIT",
1417
+ "dependencies": {
1418
+ "micromark-util-symbol": "^2.0.0"
1419
+ }
1420
+ },
1421
+ "node_modules/micromark-util-resolve-all": {
1422
+ "version": "2.0.1",
1423
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
1424
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
1425
+ "funding": [
1426
+ {
1427
+ "type": "GitHub Sponsors",
1428
+ "url": "https://github.com/sponsors/unifiedjs"
1429
+ },
1430
+ {
1431
+ "type": "OpenCollective",
1432
+ "url": "https://opencollective.com/unified"
1433
+ }
1434
+ ],
1435
+ "license": "MIT",
1436
+ "dependencies": {
1437
+ "micromark-util-types": "^2.0.0"
1438
+ }
1439
+ },
1440
+ "node_modules/micromark-util-sanitize-uri": {
1441
+ "version": "2.0.1",
1442
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
1443
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
1444
+ "funding": [
1445
+ {
1446
+ "type": "GitHub Sponsors",
1447
+ "url": "https://github.com/sponsors/unifiedjs"
1448
+ },
1449
+ {
1450
+ "type": "OpenCollective",
1451
+ "url": "https://opencollective.com/unified"
1452
+ }
1453
+ ],
1454
+ "license": "MIT",
1455
+ "dependencies": {
1456
+ "micromark-util-character": "^2.0.0",
1457
+ "micromark-util-encode": "^2.0.0",
1458
+ "micromark-util-symbol": "^2.0.0"
1459
+ }
1460
+ },
1461
+ "node_modules/micromark-util-subtokenize": {
1462
+ "version": "2.1.0",
1463
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
1464
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
1465
+ "funding": [
1466
+ {
1467
+ "type": "GitHub Sponsors",
1468
+ "url": "https://github.com/sponsors/unifiedjs"
1469
+ },
1470
+ {
1471
+ "type": "OpenCollective",
1472
+ "url": "https://opencollective.com/unified"
1473
+ }
1474
+ ],
1475
+ "license": "MIT",
1476
+ "dependencies": {
1477
+ "devlop": "^1.0.0",
1478
+ "micromark-util-chunked": "^2.0.0",
1479
+ "micromark-util-symbol": "^2.0.0",
1480
+ "micromark-util-types": "^2.0.0"
1481
+ }
1482
+ },
1483
+ "node_modules/micromark-util-symbol": {
1484
+ "version": "2.0.1",
1485
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
1486
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
1487
+ "funding": [
1488
+ {
1489
+ "type": "GitHub Sponsors",
1490
+ "url": "https://github.com/sponsors/unifiedjs"
1491
+ },
1492
+ {
1493
+ "type": "OpenCollective",
1494
+ "url": "https://opencollective.com/unified"
1495
+ }
1496
+ ],
1497
+ "license": "MIT"
1498
+ },
1499
+ "node_modules/micromark-util-types": {
1500
+ "version": "2.0.2",
1501
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
1502
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
1503
+ "funding": [
1504
+ {
1505
+ "type": "GitHub Sponsors",
1506
+ "url": "https://github.com/sponsors/unifiedjs"
1507
+ },
1508
+ {
1509
+ "type": "OpenCollective",
1510
+ "url": "https://opencollective.com/unified"
1511
+ }
1512
+ ],
1513
+ "license": "MIT"
1514
+ },
1515
+ "node_modules/micromatch": {
1516
+ "version": "4.0.8",
1517
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
1518
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
1519
+ "dev": true,
1520
+ "license": "MIT",
1521
+ "dependencies": {
1522
+ "braces": "^3.0.3",
1523
+ "picomatch": "^2.3.1"
1524
+ },
1525
+ "engines": {
1526
+ "node": ">=8.6"
1527
+ }
1528
+ },
1529
+ "node_modules/ms": {
1530
+ "version": "2.1.3",
1531
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1532
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1533
+ "license": "MIT"
1534
+ },
1535
+ "node_modules/mz": {
1536
+ "version": "2.7.0",
1537
+ "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
1538
+ "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
1539
+ "dev": true,
1540
+ "license": "MIT",
1541
+ "dependencies": {
1542
+ "any-promise": "^1.0.0",
1543
+ "object-assign": "^4.0.1",
1544
+ "thenify-all": "^1.0.0"
1545
+ }
1546
+ },
1547
+ "node_modules/nanoid": {
1548
+ "version": "3.3.11",
1549
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
1550
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
1551
+ "dev": true,
1552
+ "funding": [
1553
+ {
1554
+ "type": "github",
1555
+ "url": "https://github.com/sponsors/ai"
1556
+ }
1557
+ ],
1558
+ "license": "MIT",
1559
+ "bin": {
1560
+ "nanoid": "bin/nanoid.cjs"
1561
+ },
1562
+ "engines": {
1563
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1564
+ }
1565
+ },
1566
+ "node_modules/node-releases": {
1567
+ "version": "2.0.27",
1568
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
1569
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
1570
+ "dev": true,
1571
+ "license": "MIT"
1572
+ },
1573
+ "node_modules/normalize-path": {
1574
+ "version": "3.0.0",
1575
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1576
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1577
+ "dev": true,
1578
+ "license": "MIT",
1579
+ "engines": {
1580
+ "node": ">=0.10.0"
1581
+ }
1582
+ },
1583
+ "node_modules/normalize-range": {
1584
+ "version": "0.1.2",
1585
+ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
1586
+ "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
1587
+ "dev": true,
1588
+ "license": "MIT",
1589
+ "engines": {
1590
+ "node": ">=0.10.0"
1591
+ }
1592
+ },
1593
+ "node_modules/object-assign": {
1594
+ "version": "4.1.1",
1595
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1596
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1597
+ "dev": true,
1598
+ "license": "MIT",
1599
+ "engines": {
1600
+ "node": ">=0.10.0"
1601
+ }
1602
+ },
1603
+ "node_modules/object-hash": {
1604
+ "version": "3.0.0",
1605
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
1606
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
1607
+ "dev": true,
1608
+ "license": "MIT",
1609
+ "engines": {
1610
+ "node": ">= 6"
1611
+ }
1612
+ },
1613
+ "node_modules/path-parse": {
1614
+ "version": "1.0.7",
1615
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
1616
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
1617
+ "dev": true,
1618
+ "license": "MIT"
1619
+ },
1620
+ "node_modules/picocolors": {
1621
+ "version": "1.1.1",
1622
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
1623
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
1624
+ "dev": true,
1625
+ "license": "ISC"
1626
+ },
1627
+ "node_modules/picomatch": {
1628
+ "version": "2.3.1",
1629
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1630
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1631
+ "dev": true,
1632
+ "license": "MIT",
1633
+ "engines": {
1634
+ "node": ">=8.6"
1635
+ },
1636
+ "funding": {
1637
+ "url": "https://github.com/sponsors/jonschlinkert"
1638
+ }
1639
+ },
1640
+ "node_modules/pify": {
1641
+ "version": "2.3.0",
1642
+ "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
1643
+ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
1644
+ "dev": true,
1645
+ "license": "MIT",
1646
+ "engines": {
1647
+ "node": ">=0.10.0"
1648
+ }
1649
+ },
1650
+ "node_modules/pirates": {
1651
+ "version": "4.0.7",
1652
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
1653
+ "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
1654
+ "dev": true,
1655
+ "license": "MIT",
1656
+ "engines": {
1657
+ "node": ">= 6"
1658
+ }
1659
+ },
1660
+ "node_modules/postcss": {
1661
+ "version": "8.5.6",
1662
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
1663
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
1664
+ "dev": true,
1665
+ "funding": [
1666
+ {
1667
+ "type": "opencollective",
1668
+ "url": "https://opencollective.com/postcss/"
1669
+ },
1670
+ {
1671
+ "type": "tidelift",
1672
+ "url": "https://tidelift.com/funding/github/npm/postcss"
1673
+ },
1674
+ {
1675
+ "type": "github",
1676
+ "url": "https://github.com/sponsors/ai"
1677
+ }
1678
+ ],
1679
+ "license": "MIT",
1680
+ "dependencies": {
1681
+ "nanoid": "^3.3.11",
1682
+ "picocolors": "^1.1.1",
1683
+ "source-map-js": "^1.2.1"
1684
+ },
1685
+ "engines": {
1686
+ "node": "^10 || ^12 || >=14"
1687
+ }
1688
+ },
1689
+ "node_modules/postcss-import": {
1690
+ "version": "15.1.0",
1691
+ "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
1692
+ "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
1693
+ "dev": true,
1694
+ "license": "MIT",
1695
+ "dependencies": {
1696
+ "postcss-value-parser": "^4.0.0",
1697
+ "read-cache": "^1.0.0",
1698
+ "resolve": "^1.1.7"
1699
+ },
1700
+ "engines": {
1701
+ "node": ">=14.0.0"
1702
+ },
1703
+ "peerDependencies": {
1704
+ "postcss": "^8.0.0"
1705
+ }
1706
+ },
1707
+ "node_modules/postcss-js": {
1708
+ "version": "4.1.0",
1709
+ "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
1710
+ "integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
1711
+ "dev": true,
1712
+ "funding": [
1713
+ {
1714
+ "type": "opencollective",
1715
+ "url": "https://opencollective.com/postcss/"
1716
+ },
1717
+ {
1718
+ "type": "github",
1719
+ "url": "https://github.com/sponsors/ai"
1720
+ }
1721
+ ],
1722
+ "license": "MIT",
1723
+ "dependencies": {
1724
+ "camelcase-css": "^2.0.1"
1725
+ },
1726
+ "engines": {
1727
+ "node": "^12 || ^14 || >= 16"
1728
+ },
1729
+ "peerDependencies": {
1730
+ "postcss": "^8.4.21"
1731
+ }
1732
+ },
1733
+ "node_modules/postcss-load-config": {
1734
+ "version": "6.0.1",
1735
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
1736
+ "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
1737
+ "dev": true,
1738
+ "funding": [
1739
+ {
1740
+ "type": "opencollective",
1741
+ "url": "https://opencollective.com/postcss/"
1742
+ },
1743
+ {
1744
+ "type": "github",
1745
+ "url": "https://github.com/sponsors/ai"
1746
+ }
1747
+ ],
1748
+ "license": "MIT",
1749
+ "dependencies": {
1750
+ "lilconfig": "^3.1.1"
1751
+ },
1752
+ "engines": {
1753
+ "node": ">= 18"
1754
+ },
1755
+ "peerDependencies": {
1756
+ "jiti": ">=1.21.0",
1757
+ "postcss": ">=8.0.9",
1758
+ "tsx": "^4.8.1",
1759
+ "yaml": "^2.4.2"
1760
+ },
1761
+ "peerDependenciesMeta": {
1762
+ "jiti": {
1763
+ "optional": true
1764
+ },
1765
+ "postcss": {
1766
+ "optional": true
1767
+ },
1768
+ "tsx": {
1769
+ "optional": true
1770
+ },
1771
+ "yaml": {
1772
+ "optional": true
1773
+ }
1774
+ }
1775
+ },
1776
+ "node_modules/postcss-nested": {
1777
+ "version": "6.2.0",
1778
+ "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
1779
+ "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
1780
+ "dev": true,
1781
+ "funding": [
1782
+ {
1783
+ "type": "opencollective",
1784
+ "url": "https://opencollective.com/postcss/"
1785
+ },
1786
+ {
1787
+ "type": "github",
1788
+ "url": "https://github.com/sponsors/ai"
1789
+ }
1790
+ ],
1791
+ "license": "MIT",
1792
+ "dependencies": {
1793
+ "postcss-selector-parser": "^6.1.1"
1794
+ },
1795
+ "engines": {
1796
+ "node": ">=12.0"
1797
+ },
1798
+ "peerDependencies": {
1799
+ "postcss": "^8.2.14"
1800
+ }
1801
+ },
1802
+ "node_modules/postcss-nested/node_modules/postcss-selector-parser": {
1803
+ "version": "6.1.2",
1804
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
1805
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
1806
+ "dev": true,
1807
+ "license": "MIT",
1808
+ "dependencies": {
1809
+ "cssesc": "^3.0.0",
1810
+ "util-deprecate": "^1.0.2"
1811
+ },
1812
+ "engines": {
1813
+ "node": ">=4"
1814
+ }
1815
+ },
1816
+ "node_modules/postcss-selector-parser": {
1817
+ "version": "6.0.10",
1818
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
1819
+ "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
1820
+ "dev": true,
1821
+ "license": "MIT",
1822
+ "dependencies": {
1823
+ "cssesc": "^3.0.0",
1824
+ "util-deprecate": "^1.0.2"
1825
+ },
1826
+ "engines": {
1827
+ "node": ">=4"
1828
+ }
1829
+ },
1830
+ "node_modules/postcss-value-parser": {
1831
+ "version": "4.2.0",
1832
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
1833
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
1834
+ "dev": true,
1835
+ "license": "MIT"
1836
+ },
1837
+ "node_modules/queue-microtask": {
1838
+ "version": "1.2.3",
1839
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
1840
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
1841
+ "dev": true,
1842
+ "funding": [
1843
+ {
1844
+ "type": "github",
1845
+ "url": "https://github.com/sponsors/feross"
1846
+ },
1847
+ {
1848
+ "type": "patreon",
1849
+ "url": "https://www.patreon.com/feross"
1850
+ },
1851
+ {
1852
+ "type": "consulting",
1853
+ "url": "https://feross.org/support"
1854
+ }
1855
+ ],
1856
+ "license": "MIT"
1857
+ },
1858
+ "node_modules/read-cache": {
1859
+ "version": "1.0.0",
1860
+ "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
1861
+ "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
1862
+ "dev": true,
1863
+ "license": "MIT",
1864
+ "dependencies": {
1865
+ "pify": "^2.3.0"
1866
+ }
1867
+ },
1868
+ "node_modules/readdirp": {
1869
+ "version": "3.6.0",
1870
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1871
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1872
+ "dev": true,
1873
+ "license": "MIT",
1874
+ "dependencies": {
1875
+ "picomatch": "^2.2.1"
1876
+ },
1877
+ "engines": {
1878
+ "node": ">=8.10.0"
1879
+ }
1880
+ },
1881
+ "node_modules/remark-gfm": {
1882
+ "version": "4.0.1",
1883
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
1884
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
1885
+ "license": "MIT",
1886
+ "dependencies": {
1887
+ "@types/mdast": "^4.0.0",
1888
+ "mdast-util-gfm": "^3.0.0",
1889
+ "micromark-extension-gfm": "^3.0.0",
1890
+ "remark-parse": "^11.0.0",
1891
+ "remark-stringify": "^11.0.0",
1892
+ "unified": "^11.0.0"
1893
+ },
1894
+ "funding": {
1895
+ "type": "opencollective",
1896
+ "url": "https://opencollective.com/unified"
1897
+ }
1898
+ },
1899
+ "node_modules/remark-parse": {
1900
+ "version": "11.0.0",
1901
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
1902
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
1903
+ "license": "MIT",
1904
+ "dependencies": {
1905
+ "@types/mdast": "^4.0.0",
1906
+ "mdast-util-from-markdown": "^2.0.0",
1907
+ "micromark-util-types": "^2.0.0",
1908
+ "unified": "^11.0.0"
1909
+ },
1910
+ "funding": {
1911
+ "type": "opencollective",
1912
+ "url": "https://opencollective.com/unified"
1913
+ }
1914
+ },
1915
+ "node_modules/remark-stringify": {
1916
+ "version": "11.0.0",
1917
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
1918
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
1919
+ "license": "MIT",
1920
+ "dependencies": {
1921
+ "@types/mdast": "^4.0.0",
1922
+ "mdast-util-to-markdown": "^2.0.0",
1923
+ "unified": "^11.0.0"
1924
+ },
1925
+ "funding": {
1926
+ "type": "opencollective",
1927
+ "url": "https://opencollective.com/unified"
1928
+ }
1929
+ },
1930
+ "node_modules/resolve": {
1931
+ "version": "1.22.11",
1932
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
1933
+ "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
1934
+ "dev": true,
1935
+ "license": "MIT",
1936
+ "dependencies": {
1937
+ "is-core-module": "^2.16.1",
1938
+ "path-parse": "^1.0.7",
1939
+ "supports-preserve-symlinks-flag": "^1.0.0"
1940
+ },
1941
+ "bin": {
1942
+ "resolve": "bin/resolve"
1943
+ },
1944
+ "engines": {
1945
+ "node": ">= 0.4"
1946
+ },
1947
+ "funding": {
1948
+ "url": "https://github.com/sponsors/ljharb"
1949
+ }
1950
+ },
1951
+ "node_modules/reusify": {
1952
+ "version": "1.1.0",
1953
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
1954
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
1955
+ "dev": true,
1956
+ "license": "MIT",
1957
+ "engines": {
1958
+ "iojs": ">=1.0.0",
1959
+ "node": ">=0.10.0"
1960
+ }
1961
+ },
1962
+ "node_modules/run-parallel": {
1963
+ "version": "1.2.0",
1964
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
1965
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
1966
+ "dev": true,
1967
+ "funding": [
1968
+ {
1969
+ "type": "github",
1970
+ "url": "https://github.com/sponsors/feross"
1971
+ },
1972
+ {
1973
+ "type": "patreon",
1974
+ "url": "https://www.patreon.com/feross"
1975
+ },
1976
+ {
1977
+ "type": "consulting",
1978
+ "url": "https://feross.org/support"
1979
+ }
1980
+ ],
1981
+ "license": "MIT",
1982
+ "dependencies": {
1983
+ "queue-microtask": "^1.2.2"
1984
+ }
1985
+ },
1986
+ "node_modules/source-map-js": {
1987
+ "version": "1.2.1",
1988
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
1989
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
1990
+ "dev": true,
1991
+ "license": "BSD-3-Clause",
1992
+ "engines": {
1993
+ "node": ">=0.10.0"
1994
+ }
1995
+ },
1996
+ "node_modules/sucrase": {
1997
+ "version": "3.35.1",
1998
+ "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
1999
+ "integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
2000
+ "dev": true,
2001
+ "license": "MIT",
2002
+ "dependencies": {
2003
+ "@jridgewell/gen-mapping": "^0.3.2",
2004
+ "commander": "^4.0.0",
2005
+ "lines-and-columns": "^1.1.6",
2006
+ "mz": "^2.7.0",
2007
+ "pirates": "^4.0.1",
2008
+ "tinyglobby": "^0.2.11",
2009
+ "ts-interface-checker": "^0.1.9"
2010
+ },
2011
+ "bin": {
2012
+ "sucrase": "bin/sucrase",
2013
+ "sucrase-node": "bin/sucrase-node"
2014
+ },
2015
+ "engines": {
2016
+ "node": ">=16 || 14 >=14.17"
2017
+ }
2018
+ },
2019
+ "node_modules/supports-preserve-symlinks-flag": {
2020
+ "version": "1.0.0",
2021
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
2022
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
2023
+ "dev": true,
2024
+ "license": "MIT",
2025
+ "engines": {
2026
+ "node": ">= 0.4"
2027
+ },
2028
+ "funding": {
2029
+ "url": "https://github.com/sponsors/ljharb"
2030
+ }
2031
+ },
2032
+ "node_modules/tailwindcss": {
2033
+ "version": "3.4.18",
2034
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz",
2035
+ "integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==",
2036
+ "dev": true,
2037
+ "license": "MIT",
2038
+ "dependencies": {
2039
+ "@alloc/quick-lru": "^5.2.0",
2040
+ "arg": "^5.0.2",
2041
+ "chokidar": "^3.6.0",
2042
+ "didyoumean": "^1.2.2",
2043
+ "dlv": "^1.1.3",
2044
+ "fast-glob": "^3.3.2",
2045
+ "glob-parent": "^6.0.2",
2046
+ "is-glob": "^4.0.3",
2047
+ "jiti": "^1.21.7",
2048
+ "lilconfig": "^3.1.3",
2049
+ "micromatch": "^4.0.8",
2050
+ "normalize-path": "^3.0.0",
2051
+ "object-hash": "^3.0.0",
2052
+ "picocolors": "^1.1.1",
2053
+ "postcss": "^8.4.47",
2054
+ "postcss-import": "^15.1.0",
2055
+ "postcss-js": "^4.0.1",
2056
+ "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
2057
+ "postcss-nested": "^6.2.0",
2058
+ "postcss-selector-parser": "^6.1.2",
2059
+ "resolve": "^1.22.8",
2060
+ "sucrase": "^3.35.0"
2061
+ },
2062
+ "bin": {
2063
+ "tailwind": "lib/cli.js",
2064
+ "tailwindcss": "lib/cli.js"
2065
+ },
2066
+ "engines": {
2067
+ "node": ">=14.0.0"
2068
+ }
2069
+ },
2070
+ "node_modules/tailwindcss/node_modules/postcss-selector-parser": {
2071
+ "version": "6.1.2",
2072
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
2073
+ "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
2074
+ "dev": true,
2075
+ "license": "MIT",
2076
+ "dependencies": {
2077
+ "cssesc": "^3.0.0",
2078
+ "util-deprecate": "^1.0.2"
2079
+ },
2080
+ "engines": {
2081
+ "node": ">=4"
2082
+ }
2083
+ },
2084
+ "node_modules/thenify": {
2085
+ "version": "3.3.1",
2086
+ "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
2087
+ "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
2088
+ "dev": true,
2089
+ "license": "MIT",
2090
+ "dependencies": {
2091
+ "any-promise": "^1.0.0"
2092
+ }
2093
+ },
2094
+ "node_modules/thenify-all": {
2095
+ "version": "1.6.0",
2096
+ "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
2097
+ "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
2098
+ "dev": true,
2099
+ "license": "MIT",
2100
+ "dependencies": {
2101
+ "thenify": ">= 3.1.0 < 4"
2102
+ },
2103
+ "engines": {
2104
+ "node": ">=0.8"
2105
+ }
2106
+ },
2107
+ "node_modules/tinyglobby": {
2108
+ "version": "0.2.15",
2109
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
2110
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
2111
+ "dev": true,
2112
+ "license": "MIT",
2113
+ "dependencies": {
2114
+ "fdir": "^6.5.0",
2115
+ "picomatch": "^4.0.3"
2116
+ },
2117
+ "engines": {
2118
+ "node": ">=12.0.0"
2119
+ },
2120
+ "funding": {
2121
+ "url": "https://github.com/sponsors/SuperchupuDev"
2122
+ }
2123
+ },
2124
+ "node_modules/tinyglobby/node_modules/fdir": {
2125
+ "version": "6.5.0",
2126
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
2127
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
2128
+ "dev": true,
2129
+ "license": "MIT",
2130
+ "engines": {
2131
+ "node": ">=12.0.0"
2132
+ },
2133
+ "peerDependencies": {
2134
+ "picomatch": "^3 || ^4"
2135
+ },
2136
+ "peerDependenciesMeta": {
2137
+ "picomatch": {
2138
+ "optional": true
2139
+ }
2140
+ }
2141
+ },
2142
+ "node_modules/tinyglobby/node_modules/picomatch": {
2143
+ "version": "4.0.3",
2144
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
2145
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
2146
+ "dev": true,
2147
+ "license": "MIT",
2148
+ "engines": {
2149
+ "node": ">=12"
2150
+ },
2151
+ "funding": {
2152
+ "url": "https://github.com/sponsors/jonschlinkert"
2153
+ }
2154
+ },
2155
+ "node_modules/to-regex-range": {
2156
+ "version": "5.0.1",
2157
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2158
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2159
+ "dev": true,
2160
+ "license": "MIT",
2161
+ "dependencies": {
2162
+ "is-number": "^7.0.0"
2163
+ },
2164
+ "engines": {
2165
+ "node": ">=8.0"
2166
+ }
2167
+ },
2168
+ "node_modules/trough": {
2169
+ "version": "2.2.0",
2170
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
2171
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
2172
+ "license": "MIT",
2173
+ "funding": {
2174
+ "type": "github",
2175
+ "url": "https://github.com/sponsors/wooorm"
2176
+ }
2177
+ },
2178
+ "node_modules/ts-interface-checker": {
2179
+ "version": "0.1.13",
2180
+ "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
2181
+ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
2182
+ "dev": true,
2183
+ "license": "Apache-2.0"
2184
+ },
2185
+ "node_modules/unified": {
2186
+ "version": "11.0.5",
2187
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
2188
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
2189
+ "license": "MIT",
2190
+ "dependencies": {
2191
+ "@types/unist": "^3.0.0",
2192
+ "bail": "^2.0.0",
2193
+ "devlop": "^1.0.0",
2194
+ "extend": "^3.0.0",
2195
+ "is-plain-obj": "^4.0.0",
2196
+ "trough": "^2.0.0",
2197
+ "vfile": "^6.0.0"
2198
+ },
2199
+ "funding": {
2200
+ "type": "opencollective",
2201
+ "url": "https://opencollective.com/unified"
2202
+ }
2203
+ },
2204
+ "node_modules/unist-util-is": {
2205
+ "version": "6.0.1",
2206
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
2207
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
2208
+ "license": "MIT",
2209
+ "dependencies": {
2210
+ "@types/unist": "^3.0.0"
2211
+ },
2212
+ "funding": {
2213
+ "type": "opencollective",
2214
+ "url": "https://opencollective.com/unified"
2215
+ }
2216
+ },
2217
+ "node_modules/unist-util-stringify-position": {
2218
+ "version": "4.0.0",
2219
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
2220
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
2221
+ "license": "MIT",
2222
+ "dependencies": {
2223
+ "@types/unist": "^3.0.0"
2224
+ },
2225
+ "funding": {
2226
+ "type": "opencollective",
2227
+ "url": "https://opencollective.com/unified"
2228
+ }
2229
+ },
2230
+ "node_modules/unist-util-visit": {
2231
+ "version": "5.0.0",
2232
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
2233
+ "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
2234
+ "license": "MIT",
2235
+ "dependencies": {
2236
+ "@types/unist": "^3.0.0",
2237
+ "unist-util-is": "^6.0.0",
2238
+ "unist-util-visit-parents": "^6.0.0"
2239
+ },
2240
+ "funding": {
2241
+ "type": "opencollective",
2242
+ "url": "https://opencollective.com/unified"
2243
+ }
2244
+ },
2245
+ "node_modules/unist-util-visit-parents": {
2246
+ "version": "6.0.2",
2247
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
2248
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
2249
+ "license": "MIT",
2250
+ "dependencies": {
2251
+ "@types/unist": "^3.0.0",
2252
+ "unist-util-is": "^6.0.0"
2253
+ },
2254
+ "funding": {
2255
+ "type": "opencollective",
2256
+ "url": "https://opencollective.com/unified"
2257
+ }
2258
+ },
2259
+ "node_modules/update-browserslist-db": {
2260
+ "version": "1.2.2",
2261
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz",
2262
+ "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==",
2263
+ "dev": true,
2264
+ "funding": [
2265
+ {
2266
+ "type": "opencollective",
2267
+ "url": "https://opencollective.com/browserslist"
2268
+ },
2269
+ {
2270
+ "type": "tidelift",
2271
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2272
+ },
2273
+ {
2274
+ "type": "github",
2275
+ "url": "https://github.com/sponsors/ai"
2276
+ }
2277
+ ],
2278
+ "license": "MIT",
2279
+ "dependencies": {
2280
+ "escalade": "^3.2.0",
2281
+ "picocolors": "^1.1.1"
2282
+ },
2283
+ "bin": {
2284
+ "update-browserslist-db": "cli.js"
2285
+ },
2286
+ "peerDependencies": {
2287
+ "browserslist": ">= 4.21.0"
2288
+ }
2289
+ },
2290
+ "node_modules/util-deprecate": {
2291
+ "version": "1.0.2",
2292
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
2293
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2294
+ "dev": true,
2295
+ "license": "MIT"
2296
+ },
2297
+ "node_modules/vfile": {
2298
+ "version": "6.0.3",
2299
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
2300
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
2301
+ "license": "MIT",
2302
+ "dependencies": {
2303
+ "@types/unist": "^3.0.0",
2304
+ "vfile-message": "^4.0.0"
2305
+ },
2306
+ "funding": {
2307
+ "type": "opencollective",
2308
+ "url": "https://opencollective.com/unified"
2309
+ }
2310
+ },
2311
+ "node_modules/vfile-message": {
2312
+ "version": "4.0.3",
2313
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
2314
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
2315
+ "license": "MIT",
2316
+ "dependencies": {
2317
+ "@types/unist": "^3.0.0",
2318
+ "unist-util-stringify-position": "^4.0.0"
2319
+ },
2320
+ "funding": {
2321
+ "type": "opencollective",
2322
+ "url": "https://opencollective.com/unified"
2323
+ }
2324
+ },
2325
+ "node_modules/zwitch": {
2326
+ "version": "2.0.4",
2327
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
2328
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
2329
+ "license": "MIT",
2330
+ "funding": {
2331
+ "type": "github",
2332
+ "url": "https://github.com/sponsors/wooorm"
2333
+ }
2334
+ }
2335
+ }
2336
+ }