@promptbook/cli 0.103.0-55 → 0.103.0-56
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.
- package/apps/agents-server/package-lock.json +1163 -0
- package/apps/agents-server/package.json +6 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +3 -1
- package/apps/agents-server/src/app/agents/[agentName]/AgentOptionsMenu.tsx +216 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentProfileChat.tsx +78 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentProfileView.tsx +233 -0
- package/apps/agents-server/src/app/agents/[agentName]/CloneAgentButton.tsx +4 -4
- package/apps/agents-server/src/app/agents/[agentName]/InstallPwaButton.tsx +2 -2
- package/apps/agents-server/src/app/agents/[agentName]/QrCodeModal.tsx +90 -0
- package/apps/agents-server/src/app/agents/[agentName]/agentLinks.tsx +80 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/book/route.ts +3 -1
- package/apps/agents-server/src/app/agents/[agentName]/api/chat/route.ts +11 -1
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/models/route.ts +93 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/chat/completions/route.ts +10 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/models/route.ts +93 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/voice/route.ts +4 -0
- package/apps/agents-server/src/app/agents/[agentName]/chat/page.tsx +9 -2
- package/apps/agents-server/src/app/agents/[agentName]/integration/SdkCodeTabs.tsx +31 -0
- package/apps/agents-server/src/app/agents/[agentName]/integration/page.tsx +271 -30
- package/apps/agents-server/src/app/agents/[agentName]/links/page.tsx +61 -97
- package/apps/agents-server/src/app/agents/[agentName]/page.tsx +108 -165
- package/apps/agents-server/src/app/agents/[agentName]/website-integration/page.tsx +61 -0
- package/apps/agents-server/src/app/api/openai/v1/chat/completions/route.ts +6 -0
- package/apps/agents-server/src/app/api/openai/v1/models/route.ts +65 -0
- package/apps/agents-server/src/app/docs/[docId]/page.tsx +12 -32
- package/apps/agents-server/src/app/docs/page.tsx +42 -17
- package/apps/agents-server/src/app/globals.css +129 -0
- package/apps/agents-server/src/app/layout.tsx +8 -2
- package/apps/agents-server/src/app/manifest.ts +1 -1
- package/apps/agents-server/src/components/DocumentationContent/DocumentationContent.tsx +87 -0
- package/apps/agents-server/src/components/OpenMojiIcon/OpenMojiIcon.tsx +20 -0
- package/apps/agents-server/src/components/PrintButton/PrintButton.tsx +18 -0
- package/apps/agents-server/src/components/PrintHeader/PrintHeader.tsx +18 -0
- package/apps/agents-server/src/database/migrations/2025-12-0070-chat-history-source.sql +2 -0
- package/apps/agents-server/src/database/schema.ts +6 -0
- package/apps/agents-server/src/utils/handleChatCompletion.ts +186 -14
- package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +13 -6
- package/apps/agents-server/src/utils/validateApiKey.ts +128 -0
- package/apps/agents-server/tailwind.config.ts +1 -1
- package/esm/index.es.js +865 -441
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +6 -8
- package/esm/typings/src/_packages/types.index.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +5 -0
- package/esm/typings/src/commitments/META_COLOR/META_COLOR.d.ts +6 -0
- package/esm/typings/src/commitments/META_FONT/META_FONT.d.ts +42 -0
- package/esm/typings/src/commitments/USE/USE.d.ts +53 -0
- package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +38 -0
- package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts +1 -0
- package/esm/typings/src/commitments/{IMPORTANT/IMPORTANT.d.ts → USE_MCP/USE_MCP.d.ts} +16 -5
- package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +38 -0
- package/esm/typings/src/commitments/index.d.ts +93 -1
- package/esm/typings/src/playground/playground.d.ts +3 -0
- package/esm/typings/src/utils/color/Color.d.ts +8 -0
- package/esm/typings/src/utils/color/css-colors.d.ts +1 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/umd/index.umd.js +861 -437
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/commitments/registry.d.ts +0 -68
- package/esm/typings/src/playground/playground1.d.ts +0 -2
|
@@ -0,0 +1,1163 @@
|
|
|
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
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"node_modules/@tailwindcss/typography": {
|
|
17
|
+
"version": "0.5.19",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz",
|
|
19
|
+
"integrity": "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==",
|
|
20
|
+
"dev": true,
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"postcss-selector-parser": "6.0.10"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"node_modules/@types/debug": {
|
|
30
|
+
"version": "4.1.12",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
32
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@types/ms": "*"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/@types/mdast": {
|
|
39
|
+
"version": "4.0.4",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
|
|
41
|
+
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@types/unist": "*"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"node_modules/@types/ms": {
|
|
48
|
+
"version": "2.1.0",
|
|
49
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
|
|
50
|
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
|
51
|
+
"license": "MIT"
|
|
52
|
+
},
|
|
53
|
+
"node_modules/@types/unist": {
|
|
54
|
+
"version": "3.0.3",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
|
56
|
+
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
|
|
57
|
+
"license": "MIT"
|
|
58
|
+
},
|
|
59
|
+
"node_modules/bail": {
|
|
60
|
+
"version": "2.0.2",
|
|
61
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
62
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"funding": {
|
|
65
|
+
"type": "github",
|
|
66
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"node_modules/ccount": {
|
|
70
|
+
"version": "2.0.1",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
|
|
72
|
+
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"funding": {
|
|
75
|
+
"type": "github",
|
|
76
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"node_modules/character-entities": {
|
|
80
|
+
"version": "2.0.2",
|
|
81
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
82
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"funding": {
|
|
85
|
+
"type": "github",
|
|
86
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"node_modules/cssesc": {
|
|
90
|
+
"version": "3.0.0",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
92
|
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
|
93
|
+
"dev": true,
|
|
94
|
+
"license": "MIT",
|
|
95
|
+
"bin": {
|
|
96
|
+
"cssesc": "bin/cssesc"
|
|
97
|
+
},
|
|
98
|
+
"engines": {
|
|
99
|
+
"node": ">=4"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"node_modules/debug": {
|
|
103
|
+
"version": "4.4.3",
|
|
104
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
105
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
106
|
+
"license": "MIT",
|
|
107
|
+
"dependencies": {
|
|
108
|
+
"ms": "^2.1.3"
|
|
109
|
+
},
|
|
110
|
+
"engines": {
|
|
111
|
+
"node": ">=6.0"
|
|
112
|
+
},
|
|
113
|
+
"peerDependenciesMeta": {
|
|
114
|
+
"supports-color": {
|
|
115
|
+
"optional": true
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"node_modules/decode-named-character-reference": {
|
|
120
|
+
"version": "1.2.0",
|
|
121
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
|
|
122
|
+
"integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
|
|
123
|
+
"license": "MIT",
|
|
124
|
+
"dependencies": {
|
|
125
|
+
"character-entities": "^2.0.0"
|
|
126
|
+
},
|
|
127
|
+
"funding": {
|
|
128
|
+
"type": "github",
|
|
129
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"node_modules/dequal": {
|
|
133
|
+
"version": "2.0.3",
|
|
134
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
135
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"engines": {
|
|
138
|
+
"node": ">=6"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/devlop": {
|
|
142
|
+
"version": "1.1.0",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
144
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
145
|
+
"license": "MIT",
|
|
146
|
+
"dependencies": {
|
|
147
|
+
"dequal": "^2.0.0"
|
|
148
|
+
},
|
|
149
|
+
"funding": {
|
|
150
|
+
"type": "github",
|
|
151
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"node_modules/escape-string-regexp": {
|
|
155
|
+
"version": "5.0.0",
|
|
156
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
|
|
157
|
+
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
|
|
158
|
+
"license": "MIT",
|
|
159
|
+
"engines": {
|
|
160
|
+
"node": ">=12"
|
|
161
|
+
},
|
|
162
|
+
"funding": {
|
|
163
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"node_modules/extend": {
|
|
167
|
+
"version": "3.0.2",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
169
|
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
170
|
+
"license": "MIT"
|
|
171
|
+
},
|
|
172
|
+
"node_modules/is-plain-obj": {
|
|
173
|
+
"version": "4.1.0",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
175
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
176
|
+
"license": "MIT",
|
|
177
|
+
"engines": {
|
|
178
|
+
"node": ">=12"
|
|
179
|
+
},
|
|
180
|
+
"funding": {
|
|
181
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/longest-streak": {
|
|
185
|
+
"version": "3.1.0",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
|
|
187
|
+
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
|
|
188
|
+
"license": "MIT",
|
|
189
|
+
"funding": {
|
|
190
|
+
"type": "github",
|
|
191
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/markdown-table": {
|
|
195
|
+
"version": "3.0.4",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
|
|
197
|
+
"integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
|
|
198
|
+
"license": "MIT",
|
|
199
|
+
"funding": {
|
|
200
|
+
"type": "github",
|
|
201
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"node_modules/mdast-util-find-and-replace": {
|
|
205
|
+
"version": "3.0.2",
|
|
206
|
+
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
|
|
207
|
+
"integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
|
|
208
|
+
"license": "MIT",
|
|
209
|
+
"dependencies": {
|
|
210
|
+
"@types/mdast": "^4.0.0",
|
|
211
|
+
"escape-string-regexp": "^5.0.0",
|
|
212
|
+
"unist-util-is": "^6.0.0",
|
|
213
|
+
"unist-util-visit-parents": "^6.0.0"
|
|
214
|
+
},
|
|
215
|
+
"funding": {
|
|
216
|
+
"type": "opencollective",
|
|
217
|
+
"url": "https://opencollective.com/unified"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"node_modules/mdast-util-from-markdown": {
|
|
221
|
+
"version": "2.0.2",
|
|
222
|
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
|
|
223
|
+
"integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
|
|
224
|
+
"license": "MIT",
|
|
225
|
+
"dependencies": {
|
|
226
|
+
"@types/mdast": "^4.0.0",
|
|
227
|
+
"@types/unist": "^3.0.0",
|
|
228
|
+
"decode-named-character-reference": "^1.0.0",
|
|
229
|
+
"devlop": "^1.0.0",
|
|
230
|
+
"mdast-util-to-string": "^4.0.0",
|
|
231
|
+
"micromark": "^4.0.0",
|
|
232
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
233
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
234
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
235
|
+
"micromark-util-symbol": "^2.0.0",
|
|
236
|
+
"micromark-util-types": "^2.0.0",
|
|
237
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
238
|
+
},
|
|
239
|
+
"funding": {
|
|
240
|
+
"type": "opencollective",
|
|
241
|
+
"url": "https://opencollective.com/unified"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/mdast-util-gfm": {
|
|
245
|
+
"version": "3.1.0",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
|
|
247
|
+
"integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
|
|
248
|
+
"license": "MIT",
|
|
249
|
+
"dependencies": {
|
|
250
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
251
|
+
"mdast-util-gfm-autolink-literal": "^2.0.0",
|
|
252
|
+
"mdast-util-gfm-footnote": "^2.0.0",
|
|
253
|
+
"mdast-util-gfm-strikethrough": "^2.0.0",
|
|
254
|
+
"mdast-util-gfm-table": "^2.0.0",
|
|
255
|
+
"mdast-util-gfm-task-list-item": "^2.0.0",
|
|
256
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
257
|
+
},
|
|
258
|
+
"funding": {
|
|
259
|
+
"type": "opencollective",
|
|
260
|
+
"url": "https://opencollective.com/unified"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"node_modules/mdast-util-gfm-autolink-literal": {
|
|
264
|
+
"version": "2.0.1",
|
|
265
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
|
|
266
|
+
"integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
|
|
267
|
+
"license": "MIT",
|
|
268
|
+
"dependencies": {
|
|
269
|
+
"@types/mdast": "^4.0.0",
|
|
270
|
+
"ccount": "^2.0.0",
|
|
271
|
+
"devlop": "^1.0.0",
|
|
272
|
+
"mdast-util-find-and-replace": "^3.0.0",
|
|
273
|
+
"micromark-util-character": "^2.0.0"
|
|
274
|
+
},
|
|
275
|
+
"funding": {
|
|
276
|
+
"type": "opencollective",
|
|
277
|
+
"url": "https://opencollective.com/unified"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/mdast-util-gfm-footnote": {
|
|
281
|
+
"version": "2.1.0",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
|
|
283
|
+
"integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
|
|
284
|
+
"license": "MIT",
|
|
285
|
+
"dependencies": {
|
|
286
|
+
"@types/mdast": "^4.0.0",
|
|
287
|
+
"devlop": "^1.1.0",
|
|
288
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
289
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
290
|
+
"micromark-util-normalize-identifier": "^2.0.0"
|
|
291
|
+
},
|
|
292
|
+
"funding": {
|
|
293
|
+
"type": "opencollective",
|
|
294
|
+
"url": "https://opencollective.com/unified"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"node_modules/mdast-util-gfm-strikethrough": {
|
|
298
|
+
"version": "2.0.0",
|
|
299
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
|
|
300
|
+
"integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
|
|
301
|
+
"license": "MIT",
|
|
302
|
+
"dependencies": {
|
|
303
|
+
"@types/mdast": "^4.0.0",
|
|
304
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
305
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
306
|
+
},
|
|
307
|
+
"funding": {
|
|
308
|
+
"type": "opencollective",
|
|
309
|
+
"url": "https://opencollective.com/unified"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/mdast-util-gfm-table": {
|
|
313
|
+
"version": "2.0.0",
|
|
314
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
|
|
315
|
+
"integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
|
|
316
|
+
"license": "MIT",
|
|
317
|
+
"dependencies": {
|
|
318
|
+
"@types/mdast": "^4.0.0",
|
|
319
|
+
"devlop": "^1.0.0",
|
|
320
|
+
"markdown-table": "^3.0.0",
|
|
321
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
322
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
323
|
+
},
|
|
324
|
+
"funding": {
|
|
325
|
+
"type": "opencollective",
|
|
326
|
+
"url": "https://opencollective.com/unified"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"node_modules/mdast-util-gfm-task-list-item": {
|
|
330
|
+
"version": "2.0.0",
|
|
331
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
|
|
332
|
+
"integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
|
|
333
|
+
"license": "MIT",
|
|
334
|
+
"dependencies": {
|
|
335
|
+
"@types/mdast": "^4.0.0",
|
|
336
|
+
"devlop": "^1.0.0",
|
|
337
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
338
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
339
|
+
},
|
|
340
|
+
"funding": {
|
|
341
|
+
"type": "opencollective",
|
|
342
|
+
"url": "https://opencollective.com/unified"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/mdast-util-phrasing": {
|
|
346
|
+
"version": "4.1.0",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
|
|
348
|
+
"integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
|
|
349
|
+
"license": "MIT",
|
|
350
|
+
"dependencies": {
|
|
351
|
+
"@types/mdast": "^4.0.0",
|
|
352
|
+
"unist-util-is": "^6.0.0"
|
|
353
|
+
},
|
|
354
|
+
"funding": {
|
|
355
|
+
"type": "opencollective",
|
|
356
|
+
"url": "https://opencollective.com/unified"
|
|
357
|
+
}
|
|
358
|
+
},
|
|
359
|
+
"node_modules/mdast-util-to-markdown": {
|
|
360
|
+
"version": "2.1.2",
|
|
361
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
|
|
362
|
+
"integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
|
|
363
|
+
"license": "MIT",
|
|
364
|
+
"dependencies": {
|
|
365
|
+
"@types/mdast": "^4.0.0",
|
|
366
|
+
"@types/unist": "^3.0.0",
|
|
367
|
+
"longest-streak": "^3.0.0",
|
|
368
|
+
"mdast-util-phrasing": "^4.0.0",
|
|
369
|
+
"mdast-util-to-string": "^4.0.0",
|
|
370
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
371
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
372
|
+
"unist-util-visit": "^5.0.0",
|
|
373
|
+
"zwitch": "^2.0.0"
|
|
374
|
+
},
|
|
375
|
+
"funding": {
|
|
376
|
+
"type": "opencollective",
|
|
377
|
+
"url": "https://opencollective.com/unified"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"node_modules/mdast-util-to-string": {
|
|
381
|
+
"version": "4.0.0",
|
|
382
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
|
|
383
|
+
"integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
|
|
384
|
+
"license": "MIT",
|
|
385
|
+
"dependencies": {
|
|
386
|
+
"@types/mdast": "^4.0.0"
|
|
387
|
+
},
|
|
388
|
+
"funding": {
|
|
389
|
+
"type": "opencollective",
|
|
390
|
+
"url": "https://opencollective.com/unified"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"node_modules/micromark": {
|
|
394
|
+
"version": "4.0.2",
|
|
395
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
|
|
396
|
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
|
|
397
|
+
"funding": [
|
|
398
|
+
{
|
|
399
|
+
"type": "GitHub Sponsors",
|
|
400
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"type": "OpenCollective",
|
|
404
|
+
"url": "https://opencollective.com/unified"
|
|
405
|
+
}
|
|
406
|
+
],
|
|
407
|
+
"license": "MIT",
|
|
408
|
+
"dependencies": {
|
|
409
|
+
"@types/debug": "^4.0.0",
|
|
410
|
+
"debug": "^4.0.0",
|
|
411
|
+
"decode-named-character-reference": "^1.0.0",
|
|
412
|
+
"devlop": "^1.0.0",
|
|
413
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
414
|
+
"micromark-factory-space": "^2.0.0",
|
|
415
|
+
"micromark-util-character": "^2.0.0",
|
|
416
|
+
"micromark-util-chunked": "^2.0.0",
|
|
417
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
418
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
419
|
+
"micromark-util-encode": "^2.0.0",
|
|
420
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
421
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
422
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
423
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
424
|
+
"micromark-util-symbol": "^2.0.0",
|
|
425
|
+
"micromark-util-types": "^2.0.0"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"node_modules/micromark-core-commonmark": {
|
|
429
|
+
"version": "2.0.3",
|
|
430
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
|
|
431
|
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
|
|
432
|
+
"funding": [
|
|
433
|
+
{
|
|
434
|
+
"type": "GitHub Sponsors",
|
|
435
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"type": "OpenCollective",
|
|
439
|
+
"url": "https://opencollective.com/unified"
|
|
440
|
+
}
|
|
441
|
+
],
|
|
442
|
+
"license": "MIT",
|
|
443
|
+
"dependencies": {
|
|
444
|
+
"decode-named-character-reference": "^1.0.0",
|
|
445
|
+
"devlop": "^1.0.0",
|
|
446
|
+
"micromark-factory-destination": "^2.0.0",
|
|
447
|
+
"micromark-factory-label": "^2.0.0",
|
|
448
|
+
"micromark-factory-space": "^2.0.0",
|
|
449
|
+
"micromark-factory-title": "^2.0.0",
|
|
450
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
451
|
+
"micromark-util-character": "^2.0.0",
|
|
452
|
+
"micromark-util-chunked": "^2.0.0",
|
|
453
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
454
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
455
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
456
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
457
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
458
|
+
"micromark-util-symbol": "^2.0.0",
|
|
459
|
+
"micromark-util-types": "^2.0.0"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"node_modules/micromark-extension-gfm": {
|
|
463
|
+
"version": "3.0.0",
|
|
464
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
|
|
465
|
+
"integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
|
|
466
|
+
"license": "MIT",
|
|
467
|
+
"dependencies": {
|
|
468
|
+
"micromark-extension-gfm-autolink-literal": "^2.0.0",
|
|
469
|
+
"micromark-extension-gfm-footnote": "^2.0.0",
|
|
470
|
+
"micromark-extension-gfm-strikethrough": "^2.0.0",
|
|
471
|
+
"micromark-extension-gfm-table": "^2.0.0",
|
|
472
|
+
"micromark-extension-gfm-tagfilter": "^2.0.0",
|
|
473
|
+
"micromark-extension-gfm-task-list-item": "^2.0.0",
|
|
474
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
475
|
+
"micromark-util-types": "^2.0.0"
|
|
476
|
+
},
|
|
477
|
+
"funding": {
|
|
478
|
+
"type": "opencollective",
|
|
479
|
+
"url": "https://opencollective.com/unified"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"node_modules/micromark-extension-gfm-autolink-literal": {
|
|
483
|
+
"version": "2.1.0",
|
|
484
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
|
|
485
|
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
|
|
486
|
+
"license": "MIT",
|
|
487
|
+
"dependencies": {
|
|
488
|
+
"micromark-util-character": "^2.0.0",
|
|
489
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
490
|
+
"micromark-util-symbol": "^2.0.0",
|
|
491
|
+
"micromark-util-types": "^2.0.0"
|
|
492
|
+
},
|
|
493
|
+
"funding": {
|
|
494
|
+
"type": "opencollective",
|
|
495
|
+
"url": "https://opencollective.com/unified"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"node_modules/micromark-extension-gfm-footnote": {
|
|
499
|
+
"version": "2.1.0",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
|
|
501
|
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
|
|
502
|
+
"license": "MIT",
|
|
503
|
+
"dependencies": {
|
|
504
|
+
"devlop": "^1.0.0",
|
|
505
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
506
|
+
"micromark-factory-space": "^2.0.0",
|
|
507
|
+
"micromark-util-character": "^2.0.0",
|
|
508
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
509
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
510
|
+
"micromark-util-symbol": "^2.0.0",
|
|
511
|
+
"micromark-util-types": "^2.0.0"
|
|
512
|
+
},
|
|
513
|
+
"funding": {
|
|
514
|
+
"type": "opencollective",
|
|
515
|
+
"url": "https://opencollective.com/unified"
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"node_modules/micromark-extension-gfm-strikethrough": {
|
|
519
|
+
"version": "2.1.0",
|
|
520
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
|
|
521
|
+
"integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
|
|
522
|
+
"license": "MIT",
|
|
523
|
+
"dependencies": {
|
|
524
|
+
"devlop": "^1.0.0",
|
|
525
|
+
"micromark-util-chunked": "^2.0.0",
|
|
526
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
527
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
528
|
+
"micromark-util-symbol": "^2.0.0",
|
|
529
|
+
"micromark-util-types": "^2.0.0"
|
|
530
|
+
},
|
|
531
|
+
"funding": {
|
|
532
|
+
"type": "opencollective",
|
|
533
|
+
"url": "https://opencollective.com/unified"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"node_modules/micromark-extension-gfm-table": {
|
|
537
|
+
"version": "2.1.1",
|
|
538
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
|
|
539
|
+
"integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
|
|
540
|
+
"license": "MIT",
|
|
541
|
+
"dependencies": {
|
|
542
|
+
"devlop": "^1.0.0",
|
|
543
|
+
"micromark-factory-space": "^2.0.0",
|
|
544
|
+
"micromark-util-character": "^2.0.0",
|
|
545
|
+
"micromark-util-symbol": "^2.0.0",
|
|
546
|
+
"micromark-util-types": "^2.0.0"
|
|
547
|
+
},
|
|
548
|
+
"funding": {
|
|
549
|
+
"type": "opencollective",
|
|
550
|
+
"url": "https://opencollective.com/unified"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"node_modules/micromark-extension-gfm-tagfilter": {
|
|
554
|
+
"version": "2.0.0",
|
|
555
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
|
|
556
|
+
"integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
|
|
557
|
+
"license": "MIT",
|
|
558
|
+
"dependencies": {
|
|
559
|
+
"micromark-util-types": "^2.0.0"
|
|
560
|
+
},
|
|
561
|
+
"funding": {
|
|
562
|
+
"type": "opencollective",
|
|
563
|
+
"url": "https://opencollective.com/unified"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"node_modules/micromark-extension-gfm-task-list-item": {
|
|
567
|
+
"version": "2.1.0",
|
|
568
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
|
|
569
|
+
"integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
|
|
570
|
+
"license": "MIT",
|
|
571
|
+
"dependencies": {
|
|
572
|
+
"devlop": "^1.0.0",
|
|
573
|
+
"micromark-factory-space": "^2.0.0",
|
|
574
|
+
"micromark-util-character": "^2.0.0",
|
|
575
|
+
"micromark-util-symbol": "^2.0.0",
|
|
576
|
+
"micromark-util-types": "^2.0.0"
|
|
577
|
+
},
|
|
578
|
+
"funding": {
|
|
579
|
+
"type": "opencollective",
|
|
580
|
+
"url": "https://opencollective.com/unified"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"node_modules/micromark-factory-destination": {
|
|
584
|
+
"version": "2.0.1",
|
|
585
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
586
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
587
|
+
"funding": [
|
|
588
|
+
{
|
|
589
|
+
"type": "GitHub Sponsors",
|
|
590
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"type": "OpenCollective",
|
|
594
|
+
"url": "https://opencollective.com/unified"
|
|
595
|
+
}
|
|
596
|
+
],
|
|
597
|
+
"license": "MIT",
|
|
598
|
+
"dependencies": {
|
|
599
|
+
"micromark-util-character": "^2.0.0",
|
|
600
|
+
"micromark-util-symbol": "^2.0.0",
|
|
601
|
+
"micromark-util-types": "^2.0.0"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"node_modules/micromark-factory-label": {
|
|
605
|
+
"version": "2.0.1",
|
|
606
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
607
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
608
|
+
"funding": [
|
|
609
|
+
{
|
|
610
|
+
"type": "GitHub Sponsors",
|
|
611
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"type": "OpenCollective",
|
|
615
|
+
"url": "https://opencollective.com/unified"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"license": "MIT",
|
|
619
|
+
"dependencies": {
|
|
620
|
+
"devlop": "^1.0.0",
|
|
621
|
+
"micromark-util-character": "^2.0.0",
|
|
622
|
+
"micromark-util-symbol": "^2.0.0",
|
|
623
|
+
"micromark-util-types": "^2.0.0"
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"node_modules/micromark-factory-space": {
|
|
627
|
+
"version": "2.0.1",
|
|
628
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
629
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
630
|
+
"funding": [
|
|
631
|
+
{
|
|
632
|
+
"type": "GitHub Sponsors",
|
|
633
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"type": "OpenCollective",
|
|
637
|
+
"url": "https://opencollective.com/unified"
|
|
638
|
+
}
|
|
639
|
+
],
|
|
640
|
+
"license": "MIT",
|
|
641
|
+
"dependencies": {
|
|
642
|
+
"micromark-util-character": "^2.0.0",
|
|
643
|
+
"micromark-util-types": "^2.0.0"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"node_modules/micromark-factory-title": {
|
|
647
|
+
"version": "2.0.1",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
649
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
650
|
+
"funding": [
|
|
651
|
+
{
|
|
652
|
+
"type": "GitHub Sponsors",
|
|
653
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"type": "OpenCollective",
|
|
657
|
+
"url": "https://opencollective.com/unified"
|
|
658
|
+
}
|
|
659
|
+
],
|
|
660
|
+
"license": "MIT",
|
|
661
|
+
"dependencies": {
|
|
662
|
+
"micromark-factory-space": "^2.0.0",
|
|
663
|
+
"micromark-util-character": "^2.0.0",
|
|
664
|
+
"micromark-util-symbol": "^2.0.0",
|
|
665
|
+
"micromark-util-types": "^2.0.0"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"node_modules/micromark-factory-whitespace": {
|
|
669
|
+
"version": "2.0.1",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
671
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
672
|
+
"funding": [
|
|
673
|
+
{
|
|
674
|
+
"type": "GitHub Sponsors",
|
|
675
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"type": "OpenCollective",
|
|
679
|
+
"url": "https://opencollective.com/unified"
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"license": "MIT",
|
|
683
|
+
"dependencies": {
|
|
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
|
+
},
|
|
690
|
+
"node_modules/micromark-util-character": {
|
|
691
|
+
"version": "2.1.1",
|
|
692
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
693
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
694
|
+
"funding": [
|
|
695
|
+
{
|
|
696
|
+
"type": "GitHub Sponsors",
|
|
697
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"type": "OpenCollective",
|
|
701
|
+
"url": "https://opencollective.com/unified"
|
|
702
|
+
}
|
|
703
|
+
],
|
|
704
|
+
"license": "MIT",
|
|
705
|
+
"dependencies": {
|
|
706
|
+
"micromark-util-symbol": "^2.0.0",
|
|
707
|
+
"micromark-util-types": "^2.0.0"
|
|
708
|
+
}
|
|
709
|
+
},
|
|
710
|
+
"node_modules/micromark-util-chunked": {
|
|
711
|
+
"version": "2.0.1",
|
|
712
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
713
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
714
|
+
"funding": [
|
|
715
|
+
{
|
|
716
|
+
"type": "GitHub Sponsors",
|
|
717
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"type": "OpenCollective",
|
|
721
|
+
"url": "https://opencollective.com/unified"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"license": "MIT",
|
|
725
|
+
"dependencies": {
|
|
726
|
+
"micromark-util-symbol": "^2.0.0"
|
|
727
|
+
}
|
|
728
|
+
},
|
|
729
|
+
"node_modules/micromark-util-classify-character": {
|
|
730
|
+
"version": "2.0.1",
|
|
731
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
732
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
733
|
+
"funding": [
|
|
734
|
+
{
|
|
735
|
+
"type": "GitHub Sponsors",
|
|
736
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"type": "OpenCollective",
|
|
740
|
+
"url": "https://opencollective.com/unified"
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
"license": "MIT",
|
|
744
|
+
"dependencies": {
|
|
745
|
+
"micromark-util-character": "^2.0.0",
|
|
746
|
+
"micromark-util-symbol": "^2.0.0",
|
|
747
|
+
"micromark-util-types": "^2.0.0"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
751
|
+
"version": "2.0.1",
|
|
752
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
753
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
754
|
+
"funding": [
|
|
755
|
+
{
|
|
756
|
+
"type": "GitHub Sponsors",
|
|
757
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"type": "OpenCollective",
|
|
761
|
+
"url": "https://opencollective.com/unified"
|
|
762
|
+
}
|
|
763
|
+
],
|
|
764
|
+
"license": "MIT",
|
|
765
|
+
"dependencies": {
|
|
766
|
+
"micromark-util-chunked": "^2.0.0",
|
|
767
|
+
"micromark-util-types": "^2.0.0"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
771
|
+
"version": "2.0.2",
|
|
772
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
773
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
774
|
+
"funding": [
|
|
775
|
+
{
|
|
776
|
+
"type": "GitHub Sponsors",
|
|
777
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"type": "OpenCollective",
|
|
781
|
+
"url": "https://opencollective.com/unified"
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
"license": "MIT",
|
|
785
|
+
"dependencies": {
|
|
786
|
+
"micromark-util-symbol": "^2.0.0"
|
|
787
|
+
}
|
|
788
|
+
},
|
|
789
|
+
"node_modules/micromark-util-decode-string": {
|
|
790
|
+
"version": "2.0.1",
|
|
791
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
|
|
792
|
+
"integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
|
|
793
|
+
"funding": [
|
|
794
|
+
{
|
|
795
|
+
"type": "GitHub Sponsors",
|
|
796
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"type": "OpenCollective",
|
|
800
|
+
"url": "https://opencollective.com/unified"
|
|
801
|
+
}
|
|
802
|
+
],
|
|
803
|
+
"license": "MIT",
|
|
804
|
+
"dependencies": {
|
|
805
|
+
"decode-named-character-reference": "^1.0.0",
|
|
806
|
+
"micromark-util-character": "^2.0.0",
|
|
807
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
808
|
+
"micromark-util-symbol": "^2.0.0"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"node_modules/micromark-util-encode": {
|
|
812
|
+
"version": "2.0.1",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
814
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
815
|
+
"funding": [
|
|
816
|
+
{
|
|
817
|
+
"type": "GitHub Sponsors",
|
|
818
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"type": "OpenCollective",
|
|
822
|
+
"url": "https://opencollective.com/unified"
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"license": "MIT"
|
|
826
|
+
},
|
|
827
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
828
|
+
"version": "2.0.1",
|
|
829
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
830
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
831
|
+
"funding": [
|
|
832
|
+
{
|
|
833
|
+
"type": "GitHub Sponsors",
|
|
834
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"type": "OpenCollective",
|
|
838
|
+
"url": "https://opencollective.com/unified"
|
|
839
|
+
}
|
|
840
|
+
],
|
|
841
|
+
"license": "MIT"
|
|
842
|
+
},
|
|
843
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
844
|
+
"version": "2.0.1",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
846
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
847
|
+
"funding": [
|
|
848
|
+
{
|
|
849
|
+
"type": "GitHub Sponsors",
|
|
850
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"type": "OpenCollective",
|
|
854
|
+
"url": "https://opencollective.com/unified"
|
|
855
|
+
}
|
|
856
|
+
],
|
|
857
|
+
"license": "MIT",
|
|
858
|
+
"dependencies": {
|
|
859
|
+
"micromark-util-symbol": "^2.0.0"
|
|
860
|
+
}
|
|
861
|
+
},
|
|
862
|
+
"node_modules/micromark-util-resolve-all": {
|
|
863
|
+
"version": "2.0.1",
|
|
864
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
865
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
866
|
+
"funding": [
|
|
867
|
+
{
|
|
868
|
+
"type": "GitHub Sponsors",
|
|
869
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"type": "OpenCollective",
|
|
873
|
+
"url": "https://opencollective.com/unified"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"license": "MIT",
|
|
877
|
+
"dependencies": {
|
|
878
|
+
"micromark-util-types": "^2.0.0"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
882
|
+
"version": "2.0.1",
|
|
883
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
884
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
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-character": "^2.0.0",
|
|
898
|
+
"micromark-util-encode": "^2.0.0",
|
|
899
|
+
"micromark-util-symbol": "^2.0.0"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"node_modules/micromark-util-subtokenize": {
|
|
903
|
+
"version": "2.1.0",
|
|
904
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
|
|
905
|
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
|
|
906
|
+
"funding": [
|
|
907
|
+
{
|
|
908
|
+
"type": "GitHub Sponsors",
|
|
909
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"type": "OpenCollective",
|
|
913
|
+
"url": "https://opencollective.com/unified"
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
"license": "MIT",
|
|
917
|
+
"dependencies": {
|
|
918
|
+
"devlop": "^1.0.0",
|
|
919
|
+
"micromark-util-chunked": "^2.0.0",
|
|
920
|
+
"micromark-util-symbol": "^2.0.0",
|
|
921
|
+
"micromark-util-types": "^2.0.0"
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
"node_modules/micromark-util-symbol": {
|
|
925
|
+
"version": "2.0.1",
|
|
926
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
927
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
928
|
+
"funding": [
|
|
929
|
+
{
|
|
930
|
+
"type": "GitHub Sponsors",
|
|
931
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"type": "OpenCollective",
|
|
935
|
+
"url": "https://opencollective.com/unified"
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"license": "MIT"
|
|
939
|
+
},
|
|
940
|
+
"node_modules/micromark-util-types": {
|
|
941
|
+
"version": "2.0.2",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
|
|
943
|
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
|
|
944
|
+
"funding": [
|
|
945
|
+
{
|
|
946
|
+
"type": "GitHub Sponsors",
|
|
947
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"type": "OpenCollective",
|
|
951
|
+
"url": "https://opencollective.com/unified"
|
|
952
|
+
}
|
|
953
|
+
],
|
|
954
|
+
"license": "MIT"
|
|
955
|
+
},
|
|
956
|
+
"node_modules/ms": {
|
|
957
|
+
"version": "2.1.3",
|
|
958
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
959
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
960
|
+
"license": "MIT"
|
|
961
|
+
},
|
|
962
|
+
"node_modules/postcss-selector-parser": {
|
|
963
|
+
"version": "6.0.10",
|
|
964
|
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz",
|
|
965
|
+
"integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==",
|
|
966
|
+
"dev": true,
|
|
967
|
+
"license": "MIT",
|
|
968
|
+
"dependencies": {
|
|
969
|
+
"cssesc": "^3.0.0",
|
|
970
|
+
"util-deprecate": "^1.0.2"
|
|
971
|
+
},
|
|
972
|
+
"engines": {
|
|
973
|
+
"node": ">=4"
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
"node_modules/remark-gfm": {
|
|
977
|
+
"version": "4.0.1",
|
|
978
|
+
"resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
|
|
979
|
+
"integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
|
|
980
|
+
"license": "MIT",
|
|
981
|
+
"dependencies": {
|
|
982
|
+
"@types/mdast": "^4.0.0",
|
|
983
|
+
"mdast-util-gfm": "^3.0.0",
|
|
984
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
985
|
+
"remark-parse": "^11.0.0",
|
|
986
|
+
"remark-stringify": "^11.0.0",
|
|
987
|
+
"unified": "^11.0.0"
|
|
988
|
+
},
|
|
989
|
+
"funding": {
|
|
990
|
+
"type": "opencollective",
|
|
991
|
+
"url": "https://opencollective.com/unified"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"node_modules/remark-parse": {
|
|
995
|
+
"version": "11.0.0",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
|
|
997
|
+
"integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
|
|
998
|
+
"license": "MIT",
|
|
999
|
+
"dependencies": {
|
|
1000
|
+
"@types/mdast": "^4.0.0",
|
|
1001
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
1002
|
+
"micromark-util-types": "^2.0.0",
|
|
1003
|
+
"unified": "^11.0.0"
|
|
1004
|
+
},
|
|
1005
|
+
"funding": {
|
|
1006
|
+
"type": "opencollective",
|
|
1007
|
+
"url": "https://opencollective.com/unified"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
"node_modules/remark-stringify": {
|
|
1011
|
+
"version": "11.0.0",
|
|
1012
|
+
"resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
|
|
1013
|
+
"integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
|
|
1014
|
+
"license": "MIT",
|
|
1015
|
+
"dependencies": {
|
|
1016
|
+
"@types/mdast": "^4.0.0",
|
|
1017
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
1018
|
+
"unified": "^11.0.0"
|
|
1019
|
+
},
|
|
1020
|
+
"funding": {
|
|
1021
|
+
"type": "opencollective",
|
|
1022
|
+
"url": "https://opencollective.com/unified"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"node_modules/tailwindcss": {
|
|
1026
|
+
"version": "4.1.17",
|
|
1027
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.17.tgz",
|
|
1028
|
+
"integrity": "sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==",
|
|
1029
|
+
"dev": true,
|
|
1030
|
+
"license": "MIT",
|
|
1031
|
+
"peer": true
|
|
1032
|
+
},
|
|
1033
|
+
"node_modules/trough": {
|
|
1034
|
+
"version": "2.2.0",
|
|
1035
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
|
|
1036
|
+
"integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
|
|
1037
|
+
"license": "MIT",
|
|
1038
|
+
"funding": {
|
|
1039
|
+
"type": "github",
|
|
1040
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"node_modules/unified": {
|
|
1044
|
+
"version": "11.0.5",
|
|
1045
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
|
|
1046
|
+
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
|
|
1047
|
+
"license": "MIT",
|
|
1048
|
+
"dependencies": {
|
|
1049
|
+
"@types/unist": "^3.0.0",
|
|
1050
|
+
"bail": "^2.0.0",
|
|
1051
|
+
"devlop": "^1.0.0",
|
|
1052
|
+
"extend": "^3.0.0",
|
|
1053
|
+
"is-plain-obj": "^4.0.0",
|
|
1054
|
+
"trough": "^2.0.0",
|
|
1055
|
+
"vfile": "^6.0.0"
|
|
1056
|
+
},
|
|
1057
|
+
"funding": {
|
|
1058
|
+
"type": "opencollective",
|
|
1059
|
+
"url": "https://opencollective.com/unified"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"node_modules/unist-util-is": {
|
|
1063
|
+
"version": "6.0.1",
|
|
1064
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
|
|
1065
|
+
"integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
|
|
1066
|
+
"license": "MIT",
|
|
1067
|
+
"dependencies": {
|
|
1068
|
+
"@types/unist": "^3.0.0"
|
|
1069
|
+
},
|
|
1070
|
+
"funding": {
|
|
1071
|
+
"type": "opencollective",
|
|
1072
|
+
"url": "https://opencollective.com/unified"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"node_modules/unist-util-stringify-position": {
|
|
1076
|
+
"version": "4.0.0",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
|
|
1078
|
+
"integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
|
|
1079
|
+
"license": "MIT",
|
|
1080
|
+
"dependencies": {
|
|
1081
|
+
"@types/unist": "^3.0.0"
|
|
1082
|
+
},
|
|
1083
|
+
"funding": {
|
|
1084
|
+
"type": "opencollective",
|
|
1085
|
+
"url": "https://opencollective.com/unified"
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"node_modules/unist-util-visit": {
|
|
1089
|
+
"version": "5.0.0",
|
|
1090
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
|
|
1091
|
+
"integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
|
|
1092
|
+
"license": "MIT",
|
|
1093
|
+
"dependencies": {
|
|
1094
|
+
"@types/unist": "^3.0.0",
|
|
1095
|
+
"unist-util-is": "^6.0.0",
|
|
1096
|
+
"unist-util-visit-parents": "^6.0.0"
|
|
1097
|
+
},
|
|
1098
|
+
"funding": {
|
|
1099
|
+
"type": "opencollective",
|
|
1100
|
+
"url": "https://opencollective.com/unified"
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"node_modules/unist-util-visit-parents": {
|
|
1104
|
+
"version": "6.0.2",
|
|
1105
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
|
|
1106
|
+
"integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
|
|
1107
|
+
"license": "MIT",
|
|
1108
|
+
"dependencies": {
|
|
1109
|
+
"@types/unist": "^3.0.0",
|
|
1110
|
+
"unist-util-is": "^6.0.0"
|
|
1111
|
+
},
|
|
1112
|
+
"funding": {
|
|
1113
|
+
"type": "opencollective",
|
|
1114
|
+
"url": "https://opencollective.com/unified"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"node_modules/util-deprecate": {
|
|
1118
|
+
"version": "1.0.2",
|
|
1119
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
1120
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
1121
|
+
"dev": true,
|
|
1122
|
+
"license": "MIT"
|
|
1123
|
+
},
|
|
1124
|
+
"node_modules/vfile": {
|
|
1125
|
+
"version": "6.0.3",
|
|
1126
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
|
|
1127
|
+
"integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
|
|
1128
|
+
"license": "MIT",
|
|
1129
|
+
"dependencies": {
|
|
1130
|
+
"@types/unist": "^3.0.0",
|
|
1131
|
+
"vfile-message": "^4.0.0"
|
|
1132
|
+
},
|
|
1133
|
+
"funding": {
|
|
1134
|
+
"type": "opencollective",
|
|
1135
|
+
"url": "https://opencollective.com/unified"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
"node_modules/vfile-message": {
|
|
1139
|
+
"version": "4.0.3",
|
|
1140
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
|
|
1141
|
+
"integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
|
|
1142
|
+
"license": "MIT",
|
|
1143
|
+
"dependencies": {
|
|
1144
|
+
"@types/unist": "^3.0.0",
|
|
1145
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
1146
|
+
},
|
|
1147
|
+
"funding": {
|
|
1148
|
+
"type": "opencollective",
|
|
1149
|
+
"url": "https://opencollective.com/unified"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
"node_modules/zwitch": {
|
|
1153
|
+
"version": "2.0.4",
|
|
1154
|
+
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
|
|
1155
|
+
"integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
|
|
1156
|
+
"license": "MIT",
|
|
1157
|
+
"funding": {
|
|
1158
|
+
"type": "github",
|
|
1159
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
}
|