@adminforth/agent 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.woodpecker/buildRelease.sh +13 -0
- package/.woodpecker/buildSlackNotify.sh +46 -0
- package/.woodpecker/release.yml +57 -0
- package/agent/middleware/apiBasedTools.ts +109 -0
- package/agent/middleware/sequenceDebug.ts +302 -0
- package/agent/simpleAgent.ts +291 -0
- package/agent/skills/registry.ts +135 -0
- package/agent/systemPrompt.ts +69 -0
- package/agent/toolCallEvents.ts +17 -0
- package/agent/tools/apiTool.ts +99 -0
- package/agent/tools/fetchSkill.ts +58 -0
- package/agent/tools/fetchToolSchema.ts +50 -0
- package/agent/tools/index.ts +26 -0
- package/apiBasedTools.ts +625 -0
- package/build.log +30 -0
- package/custom/ChatSurface.vue +184 -0
- package/custom/ConversationArea.vue +175 -0
- package/custom/Message.vue +206 -0
- package/custom/SessionsHistory.vue +93 -0
- package/custom/ToolRenderer.vue +131 -0
- package/custom/ToolsGroup.vue +67 -0
- package/custom/incremark_code_renderers/IncremarkShikiCodeBlock.vue +301 -0
- package/custom/incremark_code_renderers/incremarkCodeHighlight.ts +285 -0
- package/custom/incremark_code_renderers/incremarkRenderer.ts +653 -0
- package/custom/incremark_code_renderers/renderIncremarkMarkdown.ts +118 -0
- package/custom/package.json +26 -0
- package/custom/pnpm-lock.yaml +1467 -0
- package/custom/skills/fetch_data/SKILL.md +15 -0
- package/custom/skills/mutate_data/SKILL.md +108 -0
- package/custom/tsconfig.json +16 -0
- package/custom/types.ts +34 -0
- package/custom/useAgentStore.ts +349 -0
- package/dist/agent/middleware/apiBasedTools.js +91 -0
- package/dist/agent/middleware/sequenceDebug.js +210 -0
- package/dist/agent/simpleAgent.js +173 -0
- package/dist/agent/skills/registry.js +108 -0
- package/dist/agent/systemPrompt.js +64 -0
- package/dist/agent/toolCallEvents.js +1 -0
- package/dist/agent/tools/apiTool.js +93 -0
- package/dist/agent/tools/fetchSkill.js +51 -0
- package/dist/agent/tools/fetchToolSchema.js +36 -0
- package/dist/agent/tools/index.js +28 -0
- package/dist/apiBasedTools.js +412 -0
- package/dist/custom/ChatSurface.vue +184 -0
- package/dist/custom/ConversationArea.vue +175 -0
- package/dist/custom/Message.vue +206 -0
- package/dist/custom/SessionsHistory.vue +93 -0
- package/dist/custom/ToolRenderer.vue +131 -0
- package/dist/custom/ToolsGroup.vue +67 -0
- package/dist/custom/incremark_code_renderers/IncremarkShikiCodeBlock.vue +301 -0
- package/dist/custom/incremark_code_renderers/incremarkCodeHighlight.ts +285 -0
- package/dist/custom/incremark_code_renderers/incremarkRenderer.ts +653 -0
- package/dist/custom/incremark_code_renderers/renderIncremarkMarkdown.ts +118 -0
- package/dist/custom/package.json +26 -0
- package/dist/custom/pnpm-lock.yaml +1467 -0
- package/dist/custom/skills/fetch_data/SKILL.md +15 -0
- package/dist/custom/skills/mutate_data/SKILL.md +108 -0
- package/dist/custom/tsconfig.json +16 -0
- package/dist/custom/types.ts +34 -0
- package/dist/custom/useAgentStore.ts +349 -0
- package/dist/index.js +415 -0
- package/dist/types.js +1 -0
- package/index.ts +457 -0
- package/package.json +58 -0
- package/tsconfig.json +13 -0
- package/types.ts +45 -0
|
@@ -0,0 +1,1467 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@ai-sdk/vue':
|
|
12
|
+
specifier: ^3.0.158
|
|
13
|
+
version: 3.0.158(vue@3.5.32)(zod@4.3.6)
|
|
14
|
+
'@incremark/core':
|
|
15
|
+
specifier: ^1.0.2
|
|
16
|
+
version: 1.0.2
|
|
17
|
+
'@incremark/theme':
|
|
18
|
+
specifier: ^1.0.2
|
|
19
|
+
version: 1.0.2
|
|
20
|
+
'@incremark/vue':
|
|
21
|
+
specifier: ^1.0.2
|
|
22
|
+
version: 1.0.2(katex@0.16.45)(vue@3.5.32)
|
|
23
|
+
'@shikijs/langs':
|
|
24
|
+
specifier: ^4.0.2
|
|
25
|
+
version: 4.0.2
|
|
26
|
+
'@shikijs/themes':
|
|
27
|
+
specifier: ^4.0.2
|
|
28
|
+
version: 4.0.2
|
|
29
|
+
'@vueuse/core':
|
|
30
|
+
specifier: ^14.2.1
|
|
31
|
+
version: 14.2.1(vue@3.5.32)
|
|
32
|
+
ai:
|
|
33
|
+
specifier: ^6.0.158
|
|
34
|
+
version: 6.0.158(zod@4.3.6)
|
|
35
|
+
dompurify:
|
|
36
|
+
specifier: ^3.3.3
|
|
37
|
+
version: 3.3.3
|
|
38
|
+
katex:
|
|
39
|
+
specifier: ^0.16.45
|
|
40
|
+
version: 0.16.45
|
|
41
|
+
marked:
|
|
42
|
+
specifier: ^18.0.0
|
|
43
|
+
version: 18.0.0
|
|
44
|
+
|
|
45
|
+
packages:
|
|
46
|
+
|
|
47
|
+
'@ai-sdk/gateway@3.0.95':
|
|
48
|
+
resolution: {integrity: sha512-ZmUNNbZl3V42xwQzPaNUi+s8eqR2lnrxf0bvB6YbLXpLjHYv0k2Y78t12cNOfY0bxGeuVVTLyk856uLuQIuXEQ==}
|
|
49
|
+
engines: {node: '>=18'}
|
|
50
|
+
peerDependencies:
|
|
51
|
+
zod: ^3.25.76 || ^4.1.8
|
|
52
|
+
|
|
53
|
+
'@ai-sdk/provider-utils@4.0.23':
|
|
54
|
+
resolution: {integrity: sha512-z8GlDaCmRSDlqkMF2f4/RFgWxdarvIbyuk+m6WXT1LYgsnGiXRJGTD2Z1+SDl3LqtFuRtGX1aghYvQLoHL/9pg==}
|
|
55
|
+
engines: {node: '>=18'}
|
|
56
|
+
peerDependencies:
|
|
57
|
+
zod: ^3.25.76 || ^4.1.8
|
|
58
|
+
|
|
59
|
+
'@ai-sdk/provider@3.0.8':
|
|
60
|
+
resolution: {integrity: sha512-oGMAgGoQdBXbZqNG0Ze56CHjDZ1IDYOwGYxYjO5KLSlz5HiNQ9udIXsPZ61VWaHGZ5XW/jyjmr6t2xz2jGVwbQ==}
|
|
61
|
+
engines: {node: '>=18'}
|
|
62
|
+
|
|
63
|
+
'@ai-sdk/vue@3.0.158':
|
|
64
|
+
resolution: {integrity: sha512-1uOXnekM9/V8vOhKfEkFOrZYHJKiDmf20FaQJAJK/9tRBEclVCm6L4yOyVqqWhVVodaHrUSpYbAKWVKeP8iatA==}
|
|
65
|
+
engines: {node: '>=18'}
|
|
66
|
+
peerDependencies:
|
|
67
|
+
vue: ^3.3.4
|
|
68
|
+
|
|
69
|
+
'@antfu/utils@9.3.0':
|
|
70
|
+
resolution: {integrity: sha512-9hFT4RauhcUzqOE4f1+frMKLZrgNog5b06I7VmZQV1BkvwvqrbC8EBZf3L1eEL2AKb6rNKjER0sEvJiSP1FXEA==}
|
|
71
|
+
|
|
72
|
+
'@babel/helper-string-parser@7.27.1':
|
|
73
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
74
|
+
engines: {node: '>=6.9.0'}
|
|
75
|
+
|
|
76
|
+
'@babel/helper-validator-identifier@7.28.5':
|
|
77
|
+
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
|
|
78
|
+
engines: {node: '>=6.9.0'}
|
|
79
|
+
|
|
80
|
+
'@babel/parser@7.29.2':
|
|
81
|
+
resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
|
|
82
|
+
engines: {node: '>=6.0.0'}
|
|
83
|
+
hasBin: true
|
|
84
|
+
|
|
85
|
+
'@babel/types@7.29.0':
|
|
86
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
87
|
+
engines: {node: '>=6.9.0'}
|
|
88
|
+
|
|
89
|
+
'@floating-ui/core@1.7.5':
|
|
90
|
+
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
|
|
91
|
+
|
|
92
|
+
'@floating-ui/dom@1.7.6':
|
|
93
|
+
resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
|
|
94
|
+
|
|
95
|
+
'@floating-ui/utils@0.2.11':
|
|
96
|
+
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
|
|
97
|
+
|
|
98
|
+
'@incremark/colors@1.0.2':
|
|
99
|
+
resolution: {integrity: sha512-WYj1ITAnkvLFYSioTk1W2/7HFo+eXwSwVpBZuH/IUyf1UExaRo3/xc+GhZwcuet7X8rZCu36qeD3xBg5XGtlyA==}
|
|
100
|
+
|
|
101
|
+
'@incremark/core@1.0.2':
|
|
102
|
+
resolution: {integrity: sha512-87adubRCGpnV60O9sr6yYYPhvRePT7zxw63gqoFXkcsTkbsUGjUlvgyj/hnpv4g7nZqmmRlLd/Ln9EnIO+05Lg==}
|
|
103
|
+
|
|
104
|
+
'@incremark/devtools@1.0.2':
|
|
105
|
+
resolution: {integrity: sha512-JUkiLGirATiWbAU/8y24MiA20gJZ9UItF7BMSNlKiqBxeX6ILRdoT/PWTNIPF6mKnTYNAxCUBZyin5xDo/WmGw==}
|
|
106
|
+
peerDependencies:
|
|
107
|
+
'@incremark/core': 1.0.2
|
|
108
|
+
|
|
109
|
+
'@incremark/icons@1.0.2':
|
|
110
|
+
resolution: {integrity: sha512-GNlDFk3GRFl0GBje6naqU9foToEknaFiZL+NwLkZJ8epHomswNjLq53CSx2StxUSGv9Y2Ap5tgGMtGxa+qcCIg==}
|
|
111
|
+
|
|
112
|
+
'@incremark/shared@1.0.2':
|
|
113
|
+
resolution: {integrity: sha512-BsfZXx9nmXANBlFUGNoM1GpGKG9J8bEhzabp23GMxDvmYnLIlpUZb7QrmqNAwWJgG//z4Rg6fL5V7tlZgH7ToQ==}
|
|
114
|
+
peerDependencies:
|
|
115
|
+
'@incremark/core': 1.0.2
|
|
116
|
+
|
|
117
|
+
'@incremark/theme@1.0.2':
|
|
118
|
+
resolution: {integrity: sha512-Mc8E6fmd+wRGzxQcHg2gmaLWjjc5MUhfgrLiLJ3m1olnVm3VNc4R6fTLGx/1ht5e2EyOAvpLbMfdLhuLINYDgQ==}
|
|
119
|
+
|
|
120
|
+
'@incremark/vue@1.0.2':
|
|
121
|
+
resolution: {integrity: sha512-SxHq/IbsknPwKOsg+9DPUWfhDCMZ9R44k1l6W2y/JJapwfSkyQ5lExPVAmr2du24RntaYc4O43IivLMqMLzTfA==}
|
|
122
|
+
peerDependencies:
|
|
123
|
+
katex: ^0.16.0
|
|
124
|
+
mermaid: ^10.0.0 || ^11.0.0
|
|
125
|
+
vue: ^3.5.26
|
|
126
|
+
peerDependenciesMeta:
|
|
127
|
+
katex:
|
|
128
|
+
optional: true
|
|
129
|
+
mermaid:
|
|
130
|
+
optional: true
|
|
131
|
+
|
|
132
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
133
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
134
|
+
|
|
135
|
+
'@opentelemetry/api@1.9.0':
|
|
136
|
+
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
|
|
137
|
+
engines: {node: '>=8.0.0'}
|
|
138
|
+
|
|
139
|
+
'@shikijs/core@3.23.0':
|
|
140
|
+
resolution: {integrity: sha512-NSWQz0riNb67xthdm5br6lAkvpDJRTgB36fxlo37ZzM2yq0PQFFzbd8psqC2XMPgCzo1fW6cVi18+ArJ44wqgA==}
|
|
141
|
+
|
|
142
|
+
'@shikijs/engine-javascript@3.23.0':
|
|
143
|
+
resolution: {integrity: sha512-aHt9eiGFobmWR5uqJUViySI1bHMqrAgamWE1TYSUoftkAeCCAiGawPMwM+VCadylQtF4V3VNOZ5LmfItH5f3yA==}
|
|
144
|
+
|
|
145
|
+
'@shikijs/engine-oniguruma@3.23.0':
|
|
146
|
+
resolution: {integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==}
|
|
147
|
+
|
|
148
|
+
'@shikijs/langs@3.23.0':
|
|
149
|
+
resolution: {integrity: sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==}
|
|
150
|
+
|
|
151
|
+
'@shikijs/langs@4.0.2':
|
|
152
|
+
resolution: {integrity: sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==}
|
|
153
|
+
engines: {node: '>=20'}
|
|
154
|
+
|
|
155
|
+
'@shikijs/themes@3.23.0':
|
|
156
|
+
resolution: {integrity: sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==}
|
|
157
|
+
|
|
158
|
+
'@shikijs/themes@4.0.2':
|
|
159
|
+
resolution: {integrity: sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==}
|
|
160
|
+
engines: {node: '>=20'}
|
|
161
|
+
|
|
162
|
+
'@shikijs/types@3.23.0':
|
|
163
|
+
resolution: {integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==}
|
|
164
|
+
|
|
165
|
+
'@shikijs/types@4.0.2':
|
|
166
|
+
resolution: {integrity: sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==}
|
|
167
|
+
engines: {node: '>=20'}
|
|
168
|
+
|
|
169
|
+
'@shikijs/vscode-textmate@10.0.2':
|
|
170
|
+
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
|
|
171
|
+
|
|
172
|
+
'@standard-schema/spec@1.1.0':
|
|
173
|
+
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
|
|
174
|
+
|
|
175
|
+
'@types/debug@4.1.13':
|
|
176
|
+
resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==}
|
|
177
|
+
|
|
178
|
+
'@types/hast@3.0.4':
|
|
179
|
+
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
|
|
180
|
+
|
|
181
|
+
'@types/katex@0.16.8':
|
|
182
|
+
resolution: {integrity: sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==}
|
|
183
|
+
|
|
184
|
+
'@types/lodash-es@4.17.12':
|
|
185
|
+
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
|
|
186
|
+
|
|
187
|
+
'@types/lodash@4.17.24':
|
|
188
|
+
resolution: {integrity: sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==}
|
|
189
|
+
|
|
190
|
+
'@types/mdast@4.0.4':
|
|
191
|
+
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
|
|
192
|
+
|
|
193
|
+
'@types/ms@2.1.0':
|
|
194
|
+
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
|
|
195
|
+
|
|
196
|
+
'@types/trusted-types@2.0.7':
|
|
197
|
+
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
|
|
198
|
+
|
|
199
|
+
'@types/unist@2.0.11':
|
|
200
|
+
resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
|
|
201
|
+
|
|
202
|
+
'@types/unist@3.0.3':
|
|
203
|
+
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
204
|
+
|
|
205
|
+
'@types/web-bluetooth@0.0.21':
|
|
206
|
+
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
|
|
207
|
+
|
|
208
|
+
'@ungap/structured-clone@1.3.0':
|
|
209
|
+
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
|
|
210
|
+
|
|
211
|
+
'@vercel/oidc@3.1.0':
|
|
212
|
+
resolution: {integrity: sha512-Fw28YZpRnA3cAHHDlkt7xQHiJ0fcL+NRcIqsocZQUSmbzeIKRpwttJjik5ZGanXP+vlA4SbTg+AbA3bP363l+w==}
|
|
213
|
+
engines: {node: '>= 20'}
|
|
214
|
+
|
|
215
|
+
'@vue/compiler-core@3.5.32':
|
|
216
|
+
resolution: {integrity: sha512-4x74Tbtqnda8s/NSD6e1Dr5p1c8HdMU5RWSjMSUzb8RTcUQqevDCxVAitcLBKT+ie3o0Dl9crc/S/opJM7qBGQ==}
|
|
217
|
+
|
|
218
|
+
'@vue/compiler-dom@3.5.32':
|
|
219
|
+
resolution: {integrity: sha512-ybHAu70NtiEI1fvAUz3oXZqkUYEe5J98GjMDpTGl5iHb0T15wQYLR4wE3h9xfuTNA+Cm2f4czfe8B4s+CCH57Q==}
|
|
220
|
+
|
|
221
|
+
'@vue/compiler-sfc@3.5.32':
|
|
222
|
+
resolution: {integrity: sha512-8UYUYo71cP/0YHMO814TRZlPuUUw3oifHuMR7Wp9SNoRSrxRQnhMLNlCeaODNn6kNTJsjFoQ/kqIj4qGvya4Xg==}
|
|
223
|
+
|
|
224
|
+
'@vue/compiler-ssr@3.5.32':
|
|
225
|
+
resolution: {integrity: sha512-Gp4gTs22T3DgRotZ8aA/6m2jMR+GMztvBXUBEUOYOcST+giyGWJ4WvFd7QLHBkzTxkfOt8IELKNdpzITLbA2rw==}
|
|
226
|
+
|
|
227
|
+
'@vue/reactivity@3.5.32':
|
|
228
|
+
resolution: {integrity: sha512-/ORasxSGvZ6MN5gc+uE364SxFdJ0+WqVG0CENXaGW58TOCdrAW76WWaplDtECeS1qphvtBZtR+3/o1g1zL4xPQ==}
|
|
229
|
+
|
|
230
|
+
'@vue/runtime-core@3.5.32':
|
|
231
|
+
resolution: {integrity: sha512-pDrXCejn4UpFDFmMd27AcJEbHaLemaE5o4pbb7sLk79SRIhc6/t34BQA7SGNgYtbMnvbF/HHOftYBgFJtUoJUQ==}
|
|
232
|
+
|
|
233
|
+
'@vue/runtime-dom@3.5.32':
|
|
234
|
+
resolution: {integrity: sha512-1CDVv7tv/IV13V8Nip1k/aaObVbWqRlVCVezTwx3K07p7Vxossp5JU1dcPNhJk3w347gonIUT9jQOGutyJrSVQ==}
|
|
235
|
+
|
|
236
|
+
'@vue/server-renderer@3.5.32':
|
|
237
|
+
resolution: {integrity: sha512-IOjm2+JQwRFS7W28HNuJeXQle9KdZbODFY7hFGVtnnghF51ta20EWAZJHX+zLGtsHhaU6uC9BGPV52KVpYryMQ==}
|
|
238
|
+
peerDependencies:
|
|
239
|
+
vue: 3.5.32
|
|
240
|
+
|
|
241
|
+
'@vue/shared@3.5.32':
|
|
242
|
+
resolution: {integrity: sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==}
|
|
243
|
+
|
|
244
|
+
'@vueuse/core@14.2.1':
|
|
245
|
+
resolution: {integrity: sha512-3vwDzV+GDUNpdegRY6kzpLm4Igptq+GA0QkJ3W61Iv27YWwW/ufSlOfgQIpN6FZRMG0mkaz4gglJRtq5SeJyIQ==}
|
|
246
|
+
peerDependencies:
|
|
247
|
+
vue: ^3.5.0
|
|
248
|
+
|
|
249
|
+
'@vueuse/metadata@14.2.1':
|
|
250
|
+
resolution: {integrity: sha512-1ButlVtj5Sb/HDtIy1HFr1VqCP4G6Ypqt5MAo0lCgjokrk2mvQKsK2uuy0vqu/Ks+sHfuHo0B9Y9jn9xKdjZsw==}
|
|
251
|
+
|
|
252
|
+
'@vueuse/shared@14.2.1':
|
|
253
|
+
resolution: {integrity: sha512-shTJncjV9JTI4oVNyF1FQonetYAiTBd+Qj7cY89SWbXSkx7gyhrgtEdF2ZAVWS1S3SHlaROO6F2IesJxQEkZBw==}
|
|
254
|
+
peerDependencies:
|
|
255
|
+
vue: ^3.5.0
|
|
256
|
+
|
|
257
|
+
ai@6.0.158:
|
|
258
|
+
resolution: {integrity: sha512-gLTp1UXFtMqKUi3XHs33K7UFglbvojkxF/aq337TxnLGOhHIW9+GyP2jwW4hYX87f1es+wId3VQoPRRu9zEStQ==}
|
|
259
|
+
engines: {node: '>=18'}
|
|
260
|
+
peerDependencies:
|
|
261
|
+
zod: ^3.25.76 || ^4.1.8
|
|
262
|
+
|
|
263
|
+
ccount@2.0.1:
|
|
264
|
+
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
|
265
|
+
|
|
266
|
+
character-entities-html4@2.1.0:
|
|
267
|
+
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
|
|
268
|
+
|
|
269
|
+
character-entities-legacy@3.0.0:
|
|
270
|
+
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
|
|
271
|
+
|
|
272
|
+
character-entities@2.0.2:
|
|
273
|
+
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
|
274
|
+
|
|
275
|
+
character-reference-invalid@2.0.1:
|
|
276
|
+
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
|
|
277
|
+
|
|
278
|
+
comma-separated-tokens@2.0.3:
|
|
279
|
+
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
|
|
280
|
+
|
|
281
|
+
commander@8.3.0:
|
|
282
|
+
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
|
|
283
|
+
engines: {node: '>= 12'}
|
|
284
|
+
|
|
285
|
+
csstype@3.2.3:
|
|
286
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
287
|
+
|
|
288
|
+
debug@4.4.3:
|
|
289
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
290
|
+
engines: {node: '>=6.0'}
|
|
291
|
+
peerDependencies:
|
|
292
|
+
supports-color: '*'
|
|
293
|
+
peerDependenciesMeta:
|
|
294
|
+
supports-color:
|
|
295
|
+
optional: true
|
|
296
|
+
|
|
297
|
+
decode-named-character-reference@1.3.0:
|
|
298
|
+
resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
|
|
299
|
+
|
|
300
|
+
dequal@2.0.3:
|
|
301
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
302
|
+
engines: {node: '>=6'}
|
|
303
|
+
|
|
304
|
+
devlop@1.1.0:
|
|
305
|
+
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
|
306
|
+
|
|
307
|
+
dompurify@3.3.3:
|
|
308
|
+
resolution: {integrity: sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==}
|
|
309
|
+
|
|
310
|
+
entities@7.0.1:
|
|
311
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
312
|
+
engines: {node: '>=0.12'}
|
|
313
|
+
|
|
314
|
+
escape-string-regexp@5.0.0:
|
|
315
|
+
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
|
316
|
+
engines: {node: '>=12'}
|
|
317
|
+
|
|
318
|
+
estree-walker@2.0.2:
|
|
319
|
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
320
|
+
|
|
321
|
+
eventsource-parser@3.0.6:
|
|
322
|
+
resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
|
|
323
|
+
engines: {node: '>=18.0.0'}
|
|
324
|
+
|
|
325
|
+
hast-util-to-html@9.0.5:
|
|
326
|
+
resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
|
|
327
|
+
|
|
328
|
+
hast-util-whitespace@3.0.0:
|
|
329
|
+
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
|
|
330
|
+
|
|
331
|
+
html-void-elements@3.0.0:
|
|
332
|
+
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
|
|
333
|
+
|
|
334
|
+
is-alphabetical@2.0.1:
|
|
335
|
+
resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
|
|
336
|
+
|
|
337
|
+
is-alphanumerical@2.0.1:
|
|
338
|
+
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
|
|
339
|
+
|
|
340
|
+
is-decimal@2.0.1:
|
|
341
|
+
resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
|
|
342
|
+
|
|
343
|
+
is-hexadecimal@2.0.1:
|
|
344
|
+
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
|
|
345
|
+
|
|
346
|
+
json-formatter-js@2.5.23:
|
|
347
|
+
resolution: {integrity: sha512-Cbm8wHXjo/C56aCePP1VuKvjxoMEmL7g7Ckss1oWFFlCsvOEEbye1kTeaNNaqba1Cl6YpIOYAnK65pUQ8mDIUQ==}
|
|
348
|
+
|
|
349
|
+
json-schema@0.4.0:
|
|
350
|
+
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
|
|
351
|
+
|
|
352
|
+
katex@0.16.45:
|
|
353
|
+
resolution: {integrity: sha512-pQpZbdBu7wCTmQUh7ufPmLr0pFoObnGUoL/yhtwJDgmmQpbkg/0HSVti25Fu4rmd1oCR6NGWe9vqTWuWv3GcNA==}
|
|
354
|
+
hasBin: true
|
|
355
|
+
|
|
356
|
+
lodash-es@4.18.1:
|
|
357
|
+
resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==}
|
|
358
|
+
|
|
359
|
+
longest-streak@3.1.0:
|
|
360
|
+
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
|
|
361
|
+
|
|
362
|
+
magic-string@0.30.21:
|
|
363
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
364
|
+
|
|
365
|
+
markdown-table@3.0.4:
|
|
366
|
+
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
|
|
367
|
+
|
|
368
|
+
marked@17.0.6:
|
|
369
|
+
resolution: {integrity: sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==}
|
|
370
|
+
engines: {node: '>= 20'}
|
|
371
|
+
hasBin: true
|
|
372
|
+
|
|
373
|
+
marked@18.0.0:
|
|
374
|
+
resolution: {integrity: sha512-2e7Qiv/HJSXj8rDEpgTvGKsP8yYtI9xXHKDnrftrmnrJPaFNM7VRb2YCzWaX4BP1iCJ/XPduzDJZMFoqTCcIMA==}
|
|
375
|
+
engines: {node: '>= 20'}
|
|
376
|
+
hasBin: true
|
|
377
|
+
|
|
378
|
+
mdast-util-directive@3.1.0:
|
|
379
|
+
resolution: {integrity: sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==}
|
|
380
|
+
|
|
381
|
+
mdast-util-find-and-replace@3.0.2:
|
|
382
|
+
resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
|
|
383
|
+
|
|
384
|
+
mdast-util-from-markdown@2.0.3:
|
|
385
|
+
resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
|
|
386
|
+
|
|
387
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
388
|
+
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
|
|
389
|
+
|
|
390
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
391
|
+
resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
|
|
392
|
+
|
|
393
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
394
|
+
resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
|
|
395
|
+
|
|
396
|
+
mdast-util-gfm-table@2.0.0:
|
|
397
|
+
resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
|
|
398
|
+
|
|
399
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
400
|
+
resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
|
|
401
|
+
|
|
402
|
+
mdast-util-gfm@3.1.0:
|
|
403
|
+
resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
|
|
404
|
+
|
|
405
|
+
mdast-util-math@3.0.0:
|
|
406
|
+
resolution: {integrity: sha512-Tl9GBNeG/AhJnQM221bJR2HPvLOSnLE/T9cJI9tlc6zwQk2nPk/4f0cHkOdEixQPC/j8UtKDdITswvLAy1OZ1w==}
|
|
407
|
+
|
|
408
|
+
mdast-util-phrasing@4.1.0:
|
|
409
|
+
resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
|
|
410
|
+
|
|
411
|
+
mdast-util-to-hast@13.2.1:
|
|
412
|
+
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
|
|
413
|
+
|
|
414
|
+
mdast-util-to-markdown@2.1.2:
|
|
415
|
+
resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
|
|
416
|
+
|
|
417
|
+
mdast-util-to-string@4.0.0:
|
|
418
|
+
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
|
|
419
|
+
|
|
420
|
+
micromark-core-commonmark@2.0.3:
|
|
421
|
+
resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
|
|
422
|
+
|
|
423
|
+
micromark-extension-directive@4.0.0:
|
|
424
|
+
resolution: {integrity: sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==}
|
|
425
|
+
|
|
426
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
427
|
+
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
|
|
428
|
+
|
|
429
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
430
|
+
resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
|
|
431
|
+
|
|
432
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
433
|
+
resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
|
|
434
|
+
|
|
435
|
+
micromark-extension-gfm-table@2.1.1:
|
|
436
|
+
resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
|
|
437
|
+
|
|
438
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
439
|
+
resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
|
|
440
|
+
|
|
441
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
442
|
+
resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
|
|
443
|
+
|
|
444
|
+
micromark-extension-gfm@3.0.0:
|
|
445
|
+
resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
|
|
446
|
+
|
|
447
|
+
micromark-extension-math@3.1.0:
|
|
448
|
+
resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==}
|
|
449
|
+
|
|
450
|
+
micromark-factory-destination@2.0.1:
|
|
451
|
+
resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
|
|
452
|
+
|
|
453
|
+
micromark-factory-label@2.0.1:
|
|
454
|
+
resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
|
|
455
|
+
|
|
456
|
+
micromark-factory-space@2.0.1:
|
|
457
|
+
resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
|
|
458
|
+
|
|
459
|
+
micromark-factory-title@2.0.1:
|
|
460
|
+
resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
|
|
461
|
+
|
|
462
|
+
micromark-factory-whitespace@2.0.1:
|
|
463
|
+
resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
|
|
464
|
+
|
|
465
|
+
micromark-util-character@2.1.1:
|
|
466
|
+
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
|
|
467
|
+
|
|
468
|
+
micromark-util-chunked@2.0.1:
|
|
469
|
+
resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
|
|
470
|
+
|
|
471
|
+
micromark-util-classify-character@2.0.1:
|
|
472
|
+
resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
|
|
473
|
+
|
|
474
|
+
micromark-util-combine-extensions@2.0.1:
|
|
475
|
+
resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
|
|
476
|
+
|
|
477
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
478
|
+
resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
|
|
479
|
+
|
|
480
|
+
micromark-util-decode-string@2.0.1:
|
|
481
|
+
resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
|
|
482
|
+
|
|
483
|
+
micromark-util-encode@2.0.1:
|
|
484
|
+
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
|
|
485
|
+
|
|
486
|
+
micromark-util-html-tag-name@2.0.1:
|
|
487
|
+
resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
|
|
488
|
+
|
|
489
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
490
|
+
resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
|
|
491
|
+
|
|
492
|
+
micromark-util-resolve-all@2.0.1:
|
|
493
|
+
resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
|
|
494
|
+
|
|
495
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
496
|
+
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
|
|
497
|
+
|
|
498
|
+
micromark-util-subtokenize@2.1.0:
|
|
499
|
+
resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
|
|
500
|
+
|
|
501
|
+
micromark-util-symbol@2.0.1:
|
|
502
|
+
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
|
|
503
|
+
|
|
504
|
+
micromark-util-types@2.0.2:
|
|
505
|
+
resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
|
|
506
|
+
|
|
507
|
+
micromark@4.0.2:
|
|
508
|
+
resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
|
|
509
|
+
|
|
510
|
+
ms@2.1.3:
|
|
511
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
512
|
+
|
|
513
|
+
nanoid@3.3.11:
|
|
514
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
515
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
516
|
+
hasBin: true
|
|
517
|
+
|
|
518
|
+
oniguruma-parser@0.12.1:
|
|
519
|
+
resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
|
|
520
|
+
|
|
521
|
+
oniguruma-to-es@4.3.5:
|
|
522
|
+
resolution: {integrity: sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==}
|
|
523
|
+
|
|
524
|
+
parse-entities@4.0.2:
|
|
525
|
+
resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
|
|
526
|
+
|
|
527
|
+
picocolors@1.1.1:
|
|
528
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
529
|
+
|
|
530
|
+
postcss@8.5.9:
|
|
531
|
+
resolution: {integrity: sha512-7a70Nsot+EMX9fFU3064K/kdHWZqGVY+BADLyXc8Dfv+mTLLVl6JzJpPaCZ2kQL9gIJvKXSLMHhqdRRjwQeFtw==}
|
|
532
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
533
|
+
|
|
534
|
+
property-information@7.1.0:
|
|
535
|
+
resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
|
|
536
|
+
|
|
537
|
+
regex-recursion@6.0.2:
|
|
538
|
+
resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
|
|
539
|
+
|
|
540
|
+
regex-utilities@2.3.0:
|
|
541
|
+
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
|
|
542
|
+
|
|
543
|
+
regex@6.1.0:
|
|
544
|
+
resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
|
|
545
|
+
|
|
546
|
+
shiki-stream@0.1.4:
|
|
547
|
+
resolution: {integrity: sha512-4pz6JGSDmVTTkPJ/ueixHkFAXY4ySCc+unvCaDZV7hqq/sdJZirRxgIXSuNSKgiFlGTgRR97sdu2R8K55sPsrw==}
|
|
548
|
+
peerDependencies:
|
|
549
|
+
react: ^19.0.0
|
|
550
|
+
solid-js: ^1.9.0
|
|
551
|
+
vue: ^3.2.0
|
|
552
|
+
peerDependenciesMeta:
|
|
553
|
+
react:
|
|
554
|
+
optional: true
|
|
555
|
+
solid-js:
|
|
556
|
+
optional: true
|
|
557
|
+
vue:
|
|
558
|
+
optional: true
|
|
559
|
+
|
|
560
|
+
shiki@3.23.0:
|
|
561
|
+
resolution: {integrity: sha512-55Dj73uq9ZXL5zyeRPzHQsK7Nbyt6Y10k5s7OjuFZGMhpp4r/rsLBH0o/0fstIzX1Lep9VxefWljK/SKCzygIA==}
|
|
562
|
+
|
|
563
|
+
source-map-js@1.2.1:
|
|
564
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
565
|
+
engines: {node: '>=0.10.0'}
|
|
566
|
+
|
|
567
|
+
space-separated-tokens@2.0.2:
|
|
568
|
+
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
|
|
569
|
+
|
|
570
|
+
stringify-entities@4.0.4:
|
|
571
|
+
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
|
|
572
|
+
|
|
573
|
+
swrv@1.2.0:
|
|
574
|
+
resolution: {integrity: sha512-lH/g4UcNyj+7lzK4eRGT4C68Q4EhQ6JtM9otPRIASfhhzfLWtbZPHcMuhuba7S9YVYuxkMUGImwMyGpfbkH07A==}
|
|
575
|
+
peerDependencies:
|
|
576
|
+
vue: '>=3.2.26 < 4'
|
|
577
|
+
|
|
578
|
+
trim-lines@3.0.1:
|
|
579
|
+
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
|
580
|
+
|
|
581
|
+
unist-util-is@6.0.1:
|
|
582
|
+
resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
|
|
583
|
+
|
|
584
|
+
unist-util-position@5.0.0:
|
|
585
|
+
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
|
|
586
|
+
|
|
587
|
+
unist-util-remove-position@5.0.0:
|
|
588
|
+
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
|
|
589
|
+
|
|
590
|
+
unist-util-stringify-position@4.0.0:
|
|
591
|
+
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
|
|
592
|
+
|
|
593
|
+
unist-util-visit-parents@6.0.2:
|
|
594
|
+
resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
|
|
595
|
+
|
|
596
|
+
unist-util-visit@5.1.0:
|
|
597
|
+
resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
|
|
598
|
+
|
|
599
|
+
vfile-message@4.0.3:
|
|
600
|
+
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
|
|
601
|
+
|
|
602
|
+
vfile@6.0.3:
|
|
603
|
+
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
604
|
+
|
|
605
|
+
vue@3.5.32:
|
|
606
|
+
resolution: {integrity: sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==}
|
|
607
|
+
peerDependencies:
|
|
608
|
+
typescript: '*'
|
|
609
|
+
peerDependenciesMeta:
|
|
610
|
+
typescript:
|
|
611
|
+
optional: true
|
|
612
|
+
|
|
613
|
+
zod@4.3.6:
|
|
614
|
+
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
615
|
+
|
|
616
|
+
zwitch@2.0.4:
|
|
617
|
+
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
|
|
618
|
+
|
|
619
|
+
snapshots:
|
|
620
|
+
|
|
621
|
+
'@ai-sdk/gateway@3.0.95(zod@4.3.6)':
|
|
622
|
+
dependencies:
|
|
623
|
+
'@ai-sdk/provider': 3.0.8
|
|
624
|
+
'@ai-sdk/provider-utils': 4.0.23(zod@4.3.6)
|
|
625
|
+
'@vercel/oidc': 3.1.0
|
|
626
|
+
zod: 4.3.6
|
|
627
|
+
|
|
628
|
+
'@ai-sdk/provider-utils@4.0.23(zod@4.3.6)':
|
|
629
|
+
dependencies:
|
|
630
|
+
'@ai-sdk/provider': 3.0.8
|
|
631
|
+
'@standard-schema/spec': 1.1.0
|
|
632
|
+
eventsource-parser: 3.0.6
|
|
633
|
+
zod: 4.3.6
|
|
634
|
+
|
|
635
|
+
'@ai-sdk/provider@3.0.8':
|
|
636
|
+
dependencies:
|
|
637
|
+
json-schema: 0.4.0
|
|
638
|
+
|
|
639
|
+
'@ai-sdk/vue@3.0.158(vue@3.5.32)(zod@4.3.6)':
|
|
640
|
+
dependencies:
|
|
641
|
+
'@ai-sdk/provider-utils': 4.0.23(zod@4.3.6)
|
|
642
|
+
ai: 6.0.158(zod@4.3.6)
|
|
643
|
+
swrv: 1.2.0(vue@3.5.32)
|
|
644
|
+
vue: 3.5.32
|
|
645
|
+
transitivePeerDependencies:
|
|
646
|
+
- zod
|
|
647
|
+
|
|
648
|
+
'@antfu/utils@9.3.0': {}
|
|
649
|
+
|
|
650
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
651
|
+
|
|
652
|
+
'@babel/helper-validator-identifier@7.28.5': {}
|
|
653
|
+
|
|
654
|
+
'@babel/parser@7.29.2':
|
|
655
|
+
dependencies:
|
|
656
|
+
'@babel/types': 7.29.0
|
|
657
|
+
|
|
658
|
+
'@babel/types@7.29.0':
|
|
659
|
+
dependencies:
|
|
660
|
+
'@babel/helper-string-parser': 7.27.1
|
|
661
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
662
|
+
|
|
663
|
+
'@floating-ui/core@1.7.5':
|
|
664
|
+
dependencies:
|
|
665
|
+
'@floating-ui/utils': 0.2.11
|
|
666
|
+
|
|
667
|
+
'@floating-ui/dom@1.7.6':
|
|
668
|
+
dependencies:
|
|
669
|
+
'@floating-ui/core': 1.7.5
|
|
670
|
+
'@floating-ui/utils': 0.2.11
|
|
671
|
+
|
|
672
|
+
'@floating-ui/utils@0.2.11': {}
|
|
673
|
+
|
|
674
|
+
'@incremark/colors@1.0.2': {}
|
|
675
|
+
|
|
676
|
+
'@incremark/core@1.0.2':
|
|
677
|
+
dependencies:
|
|
678
|
+
'@types/lodash-es': 4.17.12
|
|
679
|
+
'@types/mdast': 4.0.4
|
|
680
|
+
lodash-es: 4.18.1
|
|
681
|
+
marked: 17.0.6
|
|
682
|
+
mdast-util-directive: 3.1.0
|
|
683
|
+
mdast-util-from-markdown: 2.0.3
|
|
684
|
+
mdast-util-gfm: 3.1.0
|
|
685
|
+
mdast-util-gfm-footnote: 2.1.0
|
|
686
|
+
mdast-util-math: 3.0.0
|
|
687
|
+
micromark-extension-directive: 4.0.0
|
|
688
|
+
micromark-extension-gfm: 3.0.0
|
|
689
|
+
micromark-extension-gfm-footnote: 2.1.0
|
|
690
|
+
micromark-extension-math: 3.1.0
|
|
691
|
+
micromark-factory-destination: 2.0.1
|
|
692
|
+
micromark-factory-label: 2.0.1
|
|
693
|
+
micromark-factory-space: 2.0.1
|
|
694
|
+
micromark-factory-title: 2.0.1
|
|
695
|
+
micromark-factory-whitespace: 2.0.1
|
|
696
|
+
micromark-util-character: 2.1.1
|
|
697
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
698
|
+
micromark-util-symbol: 2.0.1
|
|
699
|
+
micromark-util-types: 2.0.2
|
|
700
|
+
transitivePeerDependencies:
|
|
701
|
+
- supports-color
|
|
702
|
+
|
|
703
|
+
'@incremark/devtools@1.0.2(@incremark/core@1.0.2)':
|
|
704
|
+
dependencies:
|
|
705
|
+
'@floating-ui/dom': 1.7.6
|
|
706
|
+
'@incremark/core': 1.0.2
|
|
707
|
+
json-formatter-js: 2.5.23
|
|
708
|
+
|
|
709
|
+
'@incremark/icons@1.0.2': {}
|
|
710
|
+
|
|
711
|
+
'@incremark/shared@1.0.2(@incremark/core@1.0.2)':
|
|
712
|
+
dependencies:
|
|
713
|
+
'@incremark/core': 1.0.2
|
|
714
|
+
|
|
715
|
+
'@incremark/theme@1.0.2':
|
|
716
|
+
dependencies:
|
|
717
|
+
'@incremark/colors': 1.0.2
|
|
718
|
+
|
|
719
|
+
'@incremark/vue@1.0.2(katex@0.16.45)(vue@3.5.32)':
|
|
720
|
+
dependencies:
|
|
721
|
+
'@antfu/utils': 9.3.0
|
|
722
|
+
'@incremark/core': 1.0.2
|
|
723
|
+
'@incremark/devtools': 1.0.2(@incremark/core@1.0.2)
|
|
724
|
+
'@incremark/icons': 1.0.2
|
|
725
|
+
'@incremark/shared': 1.0.2(@incremark/core@1.0.2)
|
|
726
|
+
'@incremark/theme': 1.0.2
|
|
727
|
+
shiki: 3.23.0
|
|
728
|
+
shiki-stream: 0.1.4(vue@3.5.32)
|
|
729
|
+
vue: 3.5.32
|
|
730
|
+
optionalDependencies:
|
|
731
|
+
katex: 0.16.45
|
|
732
|
+
transitivePeerDependencies:
|
|
733
|
+
- react
|
|
734
|
+
- solid-js
|
|
735
|
+
- supports-color
|
|
736
|
+
|
|
737
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
738
|
+
|
|
739
|
+
'@opentelemetry/api@1.9.0': {}
|
|
740
|
+
|
|
741
|
+
'@shikijs/core@3.23.0':
|
|
742
|
+
dependencies:
|
|
743
|
+
'@shikijs/types': 3.23.0
|
|
744
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
745
|
+
'@types/hast': 3.0.4
|
|
746
|
+
hast-util-to-html: 9.0.5
|
|
747
|
+
|
|
748
|
+
'@shikijs/engine-javascript@3.23.0':
|
|
749
|
+
dependencies:
|
|
750
|
+
'@shikijs/types': 3.23.0
|
|
751
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
752
|
+
oniguruma-to-es: 4.3.5
|
|
753
|
+
|
|
754
|
+
'@shikijs/engine-oniguruma@3.23.0':
|
|
755
|
+
dependencies:
|
|
756
|
+
'@shikijs/types': 3.23.0
|
|
757
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
758
|
+
|
|
759
|
+
'@shikijs/langs@3.23.0':
|
|
760
|
+
dependencies:
|
|
761
|
+
'@shikijs/types': 3.23.0
|
|
762
|
+
|
|
763
|
+
'@shikijs/langs@4.0.2':
|
|
764
|
+
dependencies:
|
|
765
|
+
'@shikijs/types': 4.0.2
|
|
766
|
+
|
|
767
|
+
'@shikijs/themes@3.23.0':
|
|
768
|
+
dependencies:
|
|
769
|
+
'@shikijs/types': 3.23.0
|
|
770
|
+
|
|
771
|
+
'@shikijs/themes@4.0.2':
|
|
772
|
+
dependencies:
|
|
773
|
+
'@shikijs/types': 4.0.2
|
|
774
|
+
|
|
775
|
+
'@shikijs/types@3.23.0':
|
|
776
|
+
dependencies:
|
|
777
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
778
|
+
'@types/hast': 3.0.4
|
|
779
|
+
|
|
780
|
+
'@shikijs/types@4.0.2':
|
|
781
|
+
dependencies:
|
|
782
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
783
|
+
'@types/hast': 3.0.4
|
|
784
|
+
|
|
785
|
+
'@shikijs/vscode-textmate@10.0.2': {}
|
|
786
|
+
|
|
787
|
+
'@standard-schema/spec@1.1.0': {}
|
|
788
|
+
|
|
789
|
+
'@types/debug@4.1.13':
|
|
790
|
+
dependencies:
|
|
791
|
+
'@types/ms': 2.1.0
|
|
792
|
+
|
|
793
|
+
'@types/hast@3.0.4':
|
|
794
|
+
dependencies:
|
|
795
|
+
'@types/unist': 3.0.3
|
|
796
|
+
|
|
797
|
+
'@types/katex@0.16.8': {}
|
|
798
|
+
|
|
799
|
+
'@types/lodash-es@4.17.12':
|
|
800
|
+
dependencies:
|
|
801
|
+
'@types/lodash': 4.17.24
|
|
802
|
+
|
|
803
|
+
'@types/lodash@4.17.24': {}
|
|
804
|
+
|
|
805
|
+
'@types/mdast@4.0.4':
|
|
806
|
+
dependencies:
|
|
807
|
+
'@types/unist': 3.0.3
|
|
808
|
+
|
|
809
|
+
'@types/ms@2.1.0': {}
|
|
810
|
+
|
|
811
|
+
'@types/trusted-types@2.0.7':
|
|
812
|
+
optional: true
|
|
813
|
+
|
|
814
|
+
'@types/unist@2.0.11': {}
|
|
815
|
+
|
|
816
|
+
'@types/unist@3.0.3': {}
|
|
817
|
+
|
|
818
|
+
'@types/web-bluetooth@0.0.21': {}
|
|
819
|
+
|
|
820
|
+
'@ungap/structured-clone@1.3.0': {}
|
|
821
|
+
|
|
822
|
+
'@vercel/oidc@3.1.0': {}
|
|
823
|
+
|
|
824
|
+
'@vue/compiler-core@3.5.32':
|
|
825
|
+
dependencies:
|
|
826
|
+
'@babel/parser': 7.29.2
|
|
827
|
+
'@vue/shared': 3.5.32
|
|
828
|
+
entities: 7.0.1
|
|
829
|
+
estree-walker: 2.0.2
|
|
830
|
+
source-map-js: 1.2.1
|
|
831
|
+
|
|
832
|
+
'@vue/compiler-dom@3.5.32':
|
|
833
|
+
dependencies:
|
|
834
|
+
'@vue/compiler-core': 3.5.32
|
|
835
|
+
'@vue/shared': 3.5.32
|
|
836
|
+
|
|
837
|
+
'@vue/compiler-sfc@3.5.32':
|
|
838
|
+
dependencies:
|
|
839
|
+
'@babel/parser': 7.29.2
|
|
840
|
+
'@vue/compiler-core': 3.5.32
|
|
841
|
+
'@vue/compiler-dom': 3.5.32
|
|
842
|
+
'@vue/compiler-ssr': 3.5.32
|
|
843
|
+
'@vue/shared': 3.5.32
|
|
844
|
+
estree-walker: 2.0.2
|
|
845
|
+
magic-string: 0.30.21
|
|
846
|
+
postcss: 8.5.9
|
|
847
|
+
source-map-js: 1.2.1
|
|
848
|
+
|
|
849
|
+
'@vue/compiler-ssr@3.5.32':
|
|
850
|
+
dependencies:
|
|
851
|
+
'@vue/compiler-dom': 3.5.32
|
|
852
|
+
'@vue/shared': 3.5.32
|
|
853
|
+
|
|
854
|
+
'@vue/reactivity@3.5.32':
|
|
855
|
+
dependencies:
|
|
856
|
+
'@vue/shared': 3.5.32
|
|
857
|
+
|
|
858
|
+
'@vue/runtime-core@3.5.32':
|
|
859
|
+
dependencies:
|
|
860
|
+
'@vue/reactivity': 3.5.32
|
|
861
|
+
'@vue/shared': 3.5.32
|
|
862
|
+
|
|
863
|
+
'@vue/runtime-dom@3.5.32':
|
|
864
|
+
dependencies:
|
|
865
|
+
'@vue/reactivity': 3.5.32
|
|
866
|
+
'@vue/runtime-core': 3.5.32
|
|
867
|
+
'@vue/shared': 3.5.32
|
|
868
|
+
csstype: 3.2.3
|
|
869
|
+
|
|
870
|
+
'@vue/server-renderer@3.5.32(vue@3.5.32)':
|
|
871
|
+
dependencies:
|
|
872
|
+
'@vue/compiler-ssr': 3.5.32
|
|
873
|
+
'@vue/shared': 3.5.32
|
|
874
|
+
vue: 3.5.32
|
|
875
|
+
|
|
876
|
+
'@vue/shared@3.5.32': {}
|
|
877
|
+
|
|
878
|
+
'@vueuse/core@14.2.1(vue@3.5.32)':
|
|
879
|
+
dependencies:
|
|
880
|
+
'@types/web-bluetooth': 0.0.21
|
|
881
|
+
'@vueuse/metadata': 14.2.1
|
|
882
|
+
'@vueuse/shared': 14.2.1(vue@3.5.32)
|
|
883
|
+
vue: 3.5.32
|
|
884
|
+
|
|
885
|
+
'@vueuse/metadata@14.2.1': {}
|
|
886
|
+
|
|
887
|
+
'@vueuse/shared@14.2.1(vue@3.5.32)':
|
|
888
|
+
dependencies:
|
|
889
|
+
vue: 3.5.32
|
|
890
|
+
|
|
891
|
+
ai@6.0.158(zod@4.3.6):
|
|
892
|
+
dependencies:
|
|
893
|
+
'@ai-sdk/gateway': 3.0.95(zod@4.3.6)
|
|
894
|
+
'@ai-sdk/provider': 3.0.8
|
|
895
|
+
'@ai-sdk/provider-utils': 4.0.23(zod@4.3.6)
|
|
896
|
+
'@opentelemetry/api': 1.9.0
|
|
897
|
+
zod: 4.3.6
|
|
898
|
+
|
|
899
|
+
ccount@2.0.1: {}
|
|
900
|
+
|
|
901
|
+
character-entities-html4@2.1.0: {}
|
|
902
|
+
|
|
903
|
+
character-entities-legacy@3.0.0: {}
|
|
904
|
+
|
|
905
|
+
character-entities@2.0.2: {}
|
|
906
|
+
|
|
907
|
+
character-reference-invalid@2.0.1: {}
|
|
908
|
+
|
|
909
|
+
comma-separated-tokens@2.0.3: {}
|
|
910
|
+
|
|
911
|
+
commander@8.3.0: {}
|
|
912
|
+
|
|
913
|
+
csstype@3.2.3: {}
|
|
914
|
+
|
|
915
|
+
debug@4.4.3:
|
|
916
|
+
dependencies:
|
|
917
|
+
ms: 2.1.3
|
|
918
|
+
|
|
919
|
+
decode-named-character-reference@1.3.0:
|
|
920
|
+
dependencies:
|
|
921
|
+
character-entities: 2.0.2
|
|
922
|
+
|
|
923
|
+
dequal@2.0.3: {}
|
|
924
|
+
|
|
925
|
+
devlop@1.1.0:
|
|
926
|
+
dependencies:
|
|
927
|
+
dequal: 2.0.3
|
|
928
|
+
|
|
929
|
+
dompurify@3.3.3:
|
|
930
|
+
optionalDependencies:
|
|
931
|
+
'@types/trusted-types': 2.0.7
|
|
932
|
+
|
|
933
|
+
entities@7.0.1: {}
|
|
934
|
+
|
|
935
|
+
escape-string-regexp@5.0.0: {}
|
|
936
|
+
|
|
937
|
+
estree-walker@2.0.2: {}
|
|
938
|
+
|
|
939
|
+
eventsource-parser@3.0.6: {}
|
|
940
|
+
|
|
941
|
+
hast-util-to-html@9.0.5:
|
|
942
|
+
dependencies:
|
|
943
|
+
'@types/hast': 3.0.4
|
|
944
|
+
'@types/unist': 3.0.3
|
|
945
|
+
ccount: 2.0.1
|
|
946
|
+
comma-separated-tokens: 2.0.3
|
|
947
|
+
hast-util-whitespace: 3.0.0
|
|
948
|
+
html-void-elements: 3.0.0
|
|
949
|
+
mdast-util-to-hast: 13.2.1
|
|
950
|
+
property-information: 7.1.0
|
|
951
|
+
space-separated-tokens: 2.0.2
|
|
952
|
+
stringify-entities: 4.0.4
|
|
953
|
+
zwitch: 2.0.4
|
|
954
|
+
|
|
955
|
+
hast-util-whitespace@3.0.0:
|
|
956
|
+
dependencies:
|
|
957
|
+
'@types/hast': 3.0.4
|
|
958
|
+
|
|
959
|
+
html-void-elements@3.0.0: {}
|
|
960
|
+
|
|
961
|
+
is-alphabetical@2.0.1: {}
|
|
962
|
+
|
|
963
|
+
is-alphanumerical@2.0.1:
|
|
964
|
+
dependencies:
|
|
965
|
+
is-alphabetical: 2.0.1
|
|
966
|
+
is-decimal: 2.0.1
|
|
967
|
+
|
|
968
|
+
is-decimal@2.0.1: {}
|
|
969
|
+
|
|
970
|
+
is-hexadecimal@2.0.1: {}
|
|
971
|
+
|
|
972
|
+
json-formatter-js@2.5.23: {}
|
|
973
|
+
|
|
974
|
+
json-schema@0.4.0: {}
|
|
975
|
+
|
|
976
|
+
katex@0.16.45:
|
|
977
|
+
dependencies:
|
|
978
|
+
commander: 8.3.0
|
|
979
|
+
|
|
980
|
+
lodash-es@4.18.1: {}
|
|
981
|
+
|
|
982
|
+
longest-streak@3.1.0: {}
|
|
983
|
+
|
|
984
|
+
magic-string@0.30.21:
|
|
985
|
+
dependencies:
|
|
986
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
987
|
+
|
|
988
|
+
markdown-table@3.0.4: {}
|
|
989
|
+
|
|
990
|
+
marked@17.0.6: {}
|
|
991
|
+
|
|
992
|
+
marked@18.0.0: {}
|
|
993
|
+
|
|
994
|
+
mdast-util-directive@3.1.0:
|
|
995
|
+
dependencies:
|
|
996
|
+
'@types/mdast': 4.0.4
|
|
997
|
+
'@types/unist': 3.0.3
|
|
998
|
+
ccount: 2.0.1
|
|
999
|
+
devlop: 1.1.0
|
|
1000
|
+
mdast-util-from-markdown: 2.0.3
|
|
1001
|
+
mdast-util-to-markdown: 2.1.2
|
|
1002
|
+
parse-entities: 4.0.2
|
|
1003
|
+
stringify-entities: 4.0.4
|
|
1004
|
+
unist-util-visit-parents: 6.0.2
|
|
1005
|
+
transitivePeerDependencies:
|
|
1006
|
+
- supports-color
|
|
1007
|
+
|
|
1008
|
+
mdast-util-find-and-replace@3.0.2:
|
|
1009
|
+
dependencies:
|
|
1010
|
+
'@types/mdast': 4.0.4
|
|
1011
|
+
escape-string-regexp: 5.0.0
|
|
1012
|
+
unist-util-is: 6.0.1
|
|
1013
|
+
unist-util-visit-parents: 6.0.2
|
|
1014
|
+
|
|
1015
|
+
mdast-util-from-markdown@2.0.3:
|
|
1016
|
+
dependencies:
|
|
1017
|
+
'@types/mdast': 4.0.4
|
|
1018
|
+
'@types/unist': 3.0.3
|
|
1019
|
+
decode-named-character-reference: 1.3.0
|
|
1020
|
+
devlop: 1.1.0
|
|
1021
|
+
mdast-util-to-string: 4.0.0
|
|
1022
|
+
micromark: 4.0.2
|
|
1023
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
1024
|
+
micromark-util-decode-string: 2.0.1
|
|
1025
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
1026
|
+
micromark-util-symbol: 2.0.1
|
|
1027
|
+
micromark-util-types: 2.0.2
|
|
1028
|
+
unist-util-stringify-position: 4.0.0
|
|
1029
|
+
transitivePeerDependencies:
|
|
1030
|
+
- supports-color
|
|
1031
|
+
|
|
1032
|
+
mdast-util-gfm-autolink-literal@2.0.1:
|
|
1033
|
+
dependencies:
|
|
1034
|
+
'@types/mdast': 4.0.4
|
|
1035
|
+
ccount: 2.0.1
|
|
1036
|
+
devlop: 1.1.0
|
|
1037
|
+
mdast-util-find-and-replace: 3.0.2
|
|
1038
|
+
micromark-util-character: 2.1.1
|
|
1039
|
+
|
|
1040
|
+
mdast-util-gfm-footnote@2.1.0:
|
|
1041
|
+
dependencies:
|
|
1042
|
+
'@types/mdast': 4.0.4
|
|
1043
|
+
devlop: 1.1.0
|
|
1044
|
+
mdast-util-from-markdown: 2.0.3
|
|
1045
|
+
mdast-util-to-markdown: 2.1.2
|
|
1046
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
1047
|
+
transitivePeerDependencies:
|
|
1048
|
+
- supports-color
|
|
1049
|
+
|
|
1050
|
+
mdast-util-gfm-strikethrough@2.0.0:
|
|
1051
|
+
dependencies:
|
|
1052
|
+
'@types/mdast': 4.0.4
|
|
1053
|
+
mdast-util-from-markdown: 2.0.3
|
|
1054
|
+
mdast-util-to-markdown: 2.1.2
|
|
1055
|
+
transitivePeerDependencies:
|
|
1056
|
+
- supports-color
|
|
1057
|
+
|
|
1058
|
+
mdast-util-gfm-table@2.0.0:
|
|
1059
|
+
dependencies:
|
|
1060
|
+
'@types/mdast': 4.0.4
|
|
1061
|
+
devlop: 1.1.0
|
|
1062
|
+
markdown-table: 3.0.4
|
|
1063
|
+
mdast-util-from-markdown: 2.0.3
|
|
1064
|
+
mdast-util-to-markdown: 2.1.2
|
|
1065
|
+
transitivePeerDependencies:
|
|
1066
|
+
- supports-color
|
|
1067
|
+
|
|
1068
|
+
mdast-util-gfm-task-list-item@2.0.0:
|
|
1069
|
+
dependencies:
|
|
1070
|
+
'@types/mdast': 4.0.4
|
|
1071
|
+
devlop: 1.1.0
|
|
1072
|
+
mdast-util-from-markdown: 2.0.3
|
|
1073
|
+
mdast-util-to-markdown: 2.1.2
|
|
1074
|
+
transitivePeerDependencies:
|
|
1075
|
+
- supports-color
|
|
1076
|
+
|
|
1077
|
+
mdast-util-gfm@3.1.0:
|
|
1078
|
+
dependencies:
|
|
1079
|
+
mdast-util-from-markdown: 2.0.3
|
|
1080
|
+
mdast-util-gfm-autolink-literal: 2.0.1
|
|
1081
|
+
mdast-util-gfm-footnote: 2.1.0
|
|
1082
|
+
mdast-util-gfm-strikethrough: 2.0.0
|
|
1083
|
+
mdast-util-gfm-table: 2.0.0
|
|
1084
|
+
mdast-util-gfm-task-list-item: 2.0.0
|
|
1085
|
+
mdast-util-to-markdown: 2.1.2
|
|
1086
|
+
transitivePeerDependencies:
|
|
1087
|
+
- supports-color
|
|
1088
|
+
|
|
1089
|
+
mdast-util-math@3.0.0:
|
|
1090
|
+
dependencies:
|
|
1091
|
+
'@types/hast': 3.0.4
|
|
1092
|
+
'@types/mdast': 4.0.4
|
|
1093
|
+
devlop: 1.1.0
|
|
1094
|
+
longest-streak: 3.1.0
|
|
1095
|
+
mdast-util-from-markdown: 2.0.3
|
|
1096
|
+
mdast-util-to-markdown: 2.1.2
|
|
1097
|
+
unist-util-remove-position: 5.0.0
|
|
1098
|
+
transitivePeerDependencies:
|
|
1099
|
+
- supports-color
|
|
1100
|
+
|
|
1101
|
+
mdast-util-phrasing@4.1.0:
|
|
1102
|
+
dependencies:
|
|
1103
|
+
'@types/mdast': 4.0.4
|
|
1104
|
+
unist-util-is: 6.0.1
|
|
1105
|
+
|
|
1106
|
+
mdast-util-to-hast@13.2.1:
|
|
1107
|
+
dependencies:
|
|
1108
|
+
'@types/hast': 3.0.4
|
|
1109
|
+
'@types/mdast': 4.0.4
|
|
1110
|
+
'@ungap/structured-clone': 1.3.0
|
|
1111
|
+
devlop: 1.1.0
|
|
1112
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
1113
|
+
trim-lines: 3.0.1
|
|
1114
|
+
unist-util-position: 5.0.0
|
|
1115
|
+
unist-util-visit: 5.1.0
|
|
1116
|
+
vfile: 6.0.3
|
|
1117
|
+
|
|
1118
|
+
mdast-util-to-markdown@2.1.2:
|
|
1119
|
+
dependencies:
|
|
1120
|
+
'@types/mdast': 4.0.4
|
|
1121
|
+
'@types/unist': 3.0.3
|
|
1122
|
+
longest-streak: 3.1.0
|
|
1123
|
+
mdast-util-phrasing: 4.1.0
|
|
1124
|
+
mdast-util-to-string: 4.0.0
|
|
1125
|
+
micromark-util-classify-character: 2.0.1
|
|
1126
|
+
micromark-util-decode-string: 2.0.1
|
|
1127
|
+
unist-util-visit: 5.1.0
|
|
1128
|
+
zwitch: 2.0.4
|
|
1129
|
+
|
|
1130
|
+
mdast-util-to-string@4.0.0:
|
|
1131
|
+
dependencies:
|
|
1132
|
+
'@types/mdast': 4.0.4
|
|
1133
|
+
|
|
1134
|
+
micromark-core-commonmark@2.0.3:
|
|
1135
|
+
dependencies:
|
|
1136
|
+
decode-named-character-reference: 1.3.0
|
|
1137
|
+
devlop: 1.1.0
|
|
1138
|
+
micromark-factory-destination: 2.0.1
|
|
1139
|
+
micromark-factory-label: 2.0.1
|
|
1140
|
+
micromark-factory-space: 2.0.1
|
|
1141
|
+
micromark-factory-title: 2.0.1
|
|
1142
|
+
micromark-factory-whitespace: 2.0.1
|
|
1143
|
+
micromark-util-character: 2.1.1
|
|
1144
|
+
micromark-util-chunked: 2.0.1
|
|
1145
|
+
micromark-util-classify-character: 2.0.1
|
|
1146
|
+
micromark-util-html-tag-name: 2.0.1
|
|
1147
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
1148
|
+
micromark-util-resolve-all: 2.0.1
|
|
1149
|
+
micromark-util-subtokenize: 2.1.0
|
|
1150
|
+
micromark-util-symbol: 2.0.1
|
|
1151
|
+
micromark-util-types: 2.0.2
|
|
1152
|
+
|
|
1153
|
+
micromark-extension-directive@4.0.0:
|
|
1154
|
+
dependencies:
|
|
1155
|
+
devlop: 1.1.0
|
|
1156
|
+
micromark-factory-space: 2.0.1
|
|
1157
|
+
micromark-factory-whitespace: 2.0.1
|
|
1158
|
+
micromark-util-character: 2.1.1
|
|
1159
|
+
micromark-util-symbol: 2.0.1
|
|
1160
|
+
micromark-util-types: 2.0.2
|
|
1161
|
+
parse-entities: 4.0.2
|
|
1162
|
+
|
|
1163
|
+
micromark-extension-gfm-autolink-literal@2.1.0:
|
|
1164
|
+
dependencies:
|
|
1165
|
+
micromark-util-character: 2.1.1
|
|
1166
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
1167
|
+
micromark-util-symbol: 2.0.1
|
|
1168
|
+
micromark-util-types: 2.0.2
|
|
1169
|
+
|
|
1170
|
+
micromark-extension-gfm-footnote@2.1.0:
|
|
1171
|
+
dependencies:
|
|
1172
|
+
devlop: 1.1.0
|
|
1173
|
+
micromark-core-commonmark: 2.0.3
|
|
1174
|
+
micromark-factory-space: 2.0.1
|
|
1175
|
+
micromark-util-character: 2.1.1
|
|
1176
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
1177
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
1178
|
+
micromark-util-symbol: 2.0.1
|
|
1179
|
+
micromark-util-types: 2.0.2
|
|
1180
|
+
|
|
1181
|
+
micromark-extension-gfm-strikethrough@2.1.0:
|
|
1182
|
+
dependencies:
|
|
1183
|
+
devlop: 1.1.0
|
|
1184
|
+
micromark-util-chunked: 2.0.1
|
|
1185
|
+
micromark-util-classify-character: 2.0.1
|
|
1186
|
+
micromark-util-resolve-all: 2.0.1
|
|
1187
|
+
micromark-util-symbol: 2.0.1
|
|
1188
|
+
micromark-util-types: 2.0.2
|
|
1189
|
+
|
|
1190
|
+
micromark-extension-gfm-table@2.1.1:
|
|
1191
|
+
dependencies:
|
|
1192
|
+
devlop: 1.1.0
|
|
1193
|
+
micromark-factory-space: 2.0.1
|
|
1194
|
+
micromark-util-character: 2.1.1
|
|
1195
|
+
micromark-util-symbol: 2.0.1
|
|
1196
|
+
micromark-util-types: 2.0.2
|
|
1197
|
+
|
|
1198
|
+
micromark-extension-gfm-tagfilter@2.0.0:
|
|
1199
|
+
dependencies:
|
|
1200
|
+
micromark-util-types: 2.0.2
|
|
1201
|
+
|
|
1202
|
+
micromark-extension-gfm-task-list-item@2.1.0:
|
|
1203
|
+
dependencies:
|
|
1204
|
+
devlop: 1.1.0
|
|
1205
|
+
micromark-factory-space: 2.0.1
|
|
1206
|
+
micromark-util-character: 2.1.1
|
|
1207
|
+
micromark-util-symbol: 2.0.1
|
|
1208
|
+
micromark-util-types: 2.0.2
|
|
1209
|
+
|
|
1210
|
+
micromark-extension-gfm@3.0.0:
|
|
1211
|
+
dependencies:
|
|
1212
|
+
micromark-extension-gfm-autolink-literal: 2.1.0
|
|
1213
|
+
micromark-extension-gfm-footnote: 2.1.0
|
|
1214
|
+
micromark-extension-gfm-strikethrough: 2.1.0
|
|
1215
|
+
micromark-extension-gfm-table: 2.1.1
|
|
1216
|
+
micromark-extension-gfm-tagfilter: 2.0.0
|
|
1217
|
+
micromark-extension-gfm-task-list-item: 2.1.0
|
|
1218
|
+
micromark-util-combine-extensions: 2.0.1
|
|
1219
|
+
micromark-util-types: 2.0.2
|
|
1220
|
+
|
|
1221
|
+
micromark-extension-math@3.1.0:
|
|
1222
|
+
dependencies:
|
|
1223
|
+
'@types/katex': 0.16.8
|
|
1224
|
+
devlop: 1.1.0
|
|
1225
|
+
katex: 0.16.45
|
|
1226
|
+
micromark-factory-space: 2.0.1
|
|
1227
|
+
micromark-util-character: 2.1.1
|
|
1228
|
+
micromark-util-symbol: 2.0.1
|
|
1229
|
+
micromark-util-types: 2.0.2
|
|
1230
|
+
|
|
1231
|
+
micromark-factory-destination@2.0.1:
|
|
1232
|
+
dependencies:
|
|
1233
|
+
micromark-util-character: 2.1.1
|
|
1234
|
+
micromark-util-symbol: 2.0.1
|
|
1235
|
+
micromark-util-types: 2.0.2
|
|
1236
|
+
|
|
1237
|
+
micromark-factory-label@2.0.1:
|
|
1238
|
+
dependencies:
|
|
1239
|
+
devlop: 1.1.0
|
|
1240
|
+
micromark-util-character: 2.1.1
|
|
1241
|
+
micromark-util-symbol: 2.0.1
|
|
1242
|
+
micromark-util-types: 2.0.2
|
|
1243
|
+
|
|
1244
|
+
micromark-factory-space@2.0.1:
|
|
1245
|
+
dependencies:
|
|
1246
|
+
micromark-util-character: 2.1.1
|
|
1247
|
+
micromark-util-types: 2.0.2
|
|
1248
|
+
|
|
1249
|
+
micromark-factory-title@2.0.1:
|
|
1250
|
+
dependencies:
|
|
1251
|
+
micromark-factory-space: 2.0.1
|
|
1252
|
+
micromark-util-character: 2.1.1
|
|
1253
|
+
micromark-util-symbol: 2.0.1
|
|
1254
|
+
micromark-util-types: 2.0.2
|
|
1255
|
+
|
|
1256
|
+
micromark-factory-whitespace@2.0.1:
|
|
1257
|
+
dependencies:
|
|
1258
|
+
micromark-factory-space: 2.0.1
|
|
1259
|
+
micromark-util-character: 2.1.1
|
|
1260
|
+
micromark-util-symbol: 2.0.1
|
|
1261
|
+
micromark-util-types: 2.0.2
|
|
1262
|
+
|
|
1263
|
+
micromark-util-character@2.1.1:
|
|
1264
|
+
dependencies:
|
|
1265
|
+
micromark-util-symbol: 2.0.1
|
|
1266
|
+
micromark-util-types: 2.0.2
|
|
1267
|
+
|
|
1268
|
+
micromark-util-chunked@2.0.1:
|
|
1269
|
+
dependencies:
|
|
1270
|
+
micromark-util-symbol: 2.0.1
|
|
1271
|
+
|
|
1272
|
+
micromark-util-classify-character@2.0.1:
|
|
1273
|
+
dependencies:
|
|
1274
|
+
micromark-util-character: 2.1.1
|
|
1275
|
+
micromark-util-symbol: 2.0.1
|
|
1276
|
+
micromark-util-types: 2.0.2
|
|
1277
|
+
|
|
1278
|
+
micromark-util-combine-extensions@2.0.1:
|
|
1279
|
+
dependencies:
|
|
1280
|
+
micromark-util-chunked: 2.0.1
|
|
1281
|
+
micromark-util-types: 2.0.2
|
|
1282
|
+
|
|
1283
|
+
micromark-util-decode-numeric-character-reference@2.0.2:
|
|
1284
|
+
dependencies:
|
|
1285
|
+
micromark-util-symbol: 2.0.1
|
|
1286
|
+
|
|
1287
|
+
micromark-util-decode-string@2.0.1:
|
|
1288
|
+
dependencies:
|
|
1289
|
+
decode-named-character-reference: 1.3.0
|
|
1290
|
+
micromark-util-character: 2.1.1
|
|
1291
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
1292
|
+
micromark-util-symbol: 2.0.1
|
|
1293
|
+
|
|
1294
|
+
micromark-util-encode@2.0.1: {}
|
|
1295
|
+
|
|
1296
|
+
micromark-util-html-tag-name@2.0.1: {}
|
|
1297
|
+
|
|
1298
|
+
micromark-util-normalize-identifier@2.0.1:
|
|
1299
|
+
dependencies:
|
|
1300
|
+
micromark-util-symbol: 2.0.1
|
|
1301
|
+
|
|
1302
|
+
micromark-util-resolve-all@2.0.1:
|
|
1303
|
+
dependencies:
|
|
1304
|
+
micromark-util-types: 2.0.2
|
|
1305
|
+
|
|
1306
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
1307
|
+
dependencies:
|
|
1308
|
+
micromark-util-character: 2.1.1
|
|
1309
|
+
micromark-util-encode: 2.0.1
|
|
1310
|
+
micromark-util-symbol: 2.0.1
|
|
1311
|
+
|
|
1312
|
+
micromark-util-subtokenize@2.1.0:
|
|
1313
|
+
dependencies:
|
|
1314
|
+
devlop: 1.1.0
|
|
1315
|
+
micromark-util-chunked: 2.0.1
|
|
1316
|
+
micromark-util-symbol: 2.0.1
|
|
1317
|
+
micromark-util-types: 2.0.2
|
|
1318
|
+
|
|
1319
|
+
micromark-util-symbol@2.0.1: {}
|
|
1320
|
+
|
|
1321
|
+
micromark-util-types@2.0.2: {}
|
|
1322
|
+
|
|
1323
|
+
micromark@4.0.2:
|
|
1324
|
+
dependencies:
|
|
1325
|
+
'@types/debug': 4.1.13
|
|
1326
|
+
debug: 4.4.3
|
|
1327
|
+
decode-named-character-reference: 1.3.0
|
|
1328
|
+
devlop: 1.1.0
|
|
1329
|
+
micromark-core-commonmark: 2.0.3
|
|
1330
|
+
micromark-factory-space: 2.0.1
|
|
1331
|
+
micromark-util-character: 2.1.1
|
|
1332
|
+
micromark-util-chunked: 2.0.1
|
|
1333
|
+
micromark-util-combine-extensions: 2.0.1
|
|
1334
|
+
micromark-util-decode-numeric-character-reference: 2.0.2
|
|
1335
|
+
micromark-util-encode: 2.0.1
|
|
1336
|
+
micromark-util-normalize-identifier: 2.0.1
|
|
1337
|
+
micromark-util-resolve-all: 2.0.1
|
|
1338
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
1339
|
+
micromark-util-subtokenize: 2.1.0
|
|
1340
|
+
micromark-util-symbol: 2.0.1
|
|
1341
|
+
micromark-util-types: 2.0.2
|
|
1342
|
+
transitivePeerDependencies:
|
|
1343
|
+
- supports-color
|
|
1344
|
+
|
|
1345
|
+
ms@2.1.3: {}
|
|
1346
|
+
|
|
1347
|
+
nanoid@3.3.11: {}
|
|
1348
|
+
|
|
1349
|
+
oniguruma-parser@0.12.1: {}
|
|
1350
|
+
|
|
1351
|
+
oniguruma-to-es@4.3.5:
|
|
1352
|
+
dependencies:
|
|
1353
|
+
oniguruma-parser: 0.12.1
|
|
1354
|
+
regex: 6.1.0
|
|
1355
|
+
regex-recursion: 6.0.2
|
|
1356
|
+
|
|
1357
|
+
parse-entities@4.0.2:
|
|
1358
|
+
dependencies:
|
|
1359
|
+
'@types/unist': 2.0.11
|
|
1360
|
+
character-entities-legacy: 3.0.0
|
|
1361
|
+
character-reference-invalid: 2.0.1
|
|
1362
|
+
decode-named-character-reference: 1.3.0
|
|
1363
|
+
is-alphanumerical: 2.0.1
|
|
1364
|
+
is-decimal: 2.0.1
|
|
1365
|
+
is-hexadecimal: 2.0.1
|
|
1366
|
+
|
|
1367
|
+
picocolors@1.1.1: {}
|
|
1368
|
+
|
|
1369
|
+
postcss@8.5.9:
|
|
1370
|
+
dependencies:
|
|
1371
|
+
nanoid: 3.3.11
|
|
1372
|
+
picocolors: 1.1.1
|
|
1373
|
+
source-map-js: 1.2.1
|
|
1374
|
+
|
|
1375
|
+
property-information@7.1.0: {}
|
|
1376
|
+
|
|
1377
|
+
regex-recursion@6.0.2:
|
|
1378
|
+
dependencies:
|
|
1379
|
+
regex-utilities: 2.3.0
|
|
1380
|
+
|
|
1381
|
+
regex-utilities@2.3.0: {}
|
|
1382
|
+
|
|
1383
|
+
regex@6.1.0:
|
|
1384
|
+
dependencies:
|
|
1385
|
+
regex-utilities: 2.3.0
|
|
1386
|
+
|
|
1387
|
+
shiki-stream@0.1.4(vue@3.5.32):
|
|
1388
|
+
dependencies:
|
|
1389
|
+
'@shikijs/core': 3.23.0
|
|
1390
|
+
optionalDependencies:
|
|
1391
|
+
vue: 3.5.32
|
|
1392
|
+
|
|
1393
|
+
shiki@3.23.0:
|
|
1394
|
+
dependencies:
|
|
1395
|
+
'@shikijs/core': 3.23.0
|
|
1396
|
+
'@shikijs/engine-javascript': 3.23.0
|
|
1397
|
+
'@shikijs/engine-oniguruma': 3.23.0
|
|
1398
|
+
'@shikijs/langs': 3.23.0
|
|
1399
|
+
'@shikijs/themes': 3.23.0
|
|
1400
|
+
'@shikijs/types': 3.23.0
|
|
1401
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1402
|
+
'@types/hast': 3.0.4
|
|
1403
|
+
|
|
1404
|
+
source-map-js@1.2.1: {}
|
|
1405
|
+
|
|
1406
|
+
space-separated-tokens@2.0.2: {}
|
|
1407
|
+
|
|
1408
|
+
stringify-entities@4.0.4:
|
|
1409
|
+
dependencies:
|
|
1410
|
+
character-entities-html4: 2.1.0
|
|
1411
|
+
character-entities-legacy: 3.0.0
|
|
1412
|
+
|
|
1413
|
+
swrv@1.2.0(vue@3.5.32):
|
|
1414
|
+
dependencies:
|
|
1415
|
+
vue: 3.5.32
|
|
1416
|
+
|
|
1417
|
+
trim-lines@3.0.1: {}
|
|
1418
|
+
|
|
1419
|
+
unist-util-is@6.0.1:
|
|
1420
|
+
dependencies:
|
|
1421
|
+
'@types/unist': 3.0.3
|
|
1422
|
+
|
|
1423
|
+
unist-util-position@5.0.0:
|
|
1424
|
+
dependencies:
|
|
1425
|
+
'@types/unist': 3.0.3
|
|
1426
|
+
|
|
1427
|
+
unist-util-remove-position@5.0.0:
|
|
1428
|
+
dependencies:
|
|
1429
|
+
'@types/unist': 3.0.3
|
|
1430
|
+
unist-util-visit: 5.1.0
|
|
1431
|
+
|
|
1432
|
+
unist-util-stringify-position@4.0.0:
|
|
1433
|
+
dependencies:
|
|
1434
|
+
'@types/unist': 3.0.3
|
|
1435
|
+
|
|
1436
|
+
unist-util-visit-parents@6.0.2:
|
|
1437
|
+
dependencies:
|
|
1438
|
+
'@types/unist': 3.0.3
|
|
1439
|
+
unist-util-is: 6.0.1
|
|
1440
|
+
|
|
1441
|
+
unist-util-visit@5.1.0:
|
|
1442
|
+
dependencies:
|
|
1443
|
+
'@types/unist': 3.0.3
|
|
1444
|
+
unist-util-is: 6.0.1
|
|
1445
|
+
unist-util-visit-parents: 6.0.2
|
|
1446
|
+
|
|
1447
|
+
vfile-message@4.0.3:
|
|
1448
|
+
dependencies:
|
|
1449
|
+
'@types/unist': 3.0.3
|
|
1450
|
+
unist-util-stringify-position: 4.0.0
|
|
1451
|
+
|
|
1452
|
+
vfile@6.0.3:
|
|
1453
|
+
dependencies:
|
|
1454
|
+
'@types/unist': 3.0.3
|
|
1455
|
+
vfile-message: 4.0.3
|
|
1456
|
+
|
|
1457
|
+
vue@3.5.32:
|
|
1458
|
+
dependencies:
|
|
1459
|
+
'@vue/compiler-dom': 3.5.32
|
|
1460
|
+
'@vue/compiler-sfc': 3.5.32
|
|
1461
|
+
'@vue/runtime-dom': 3.5.32
|
|
1462
|
+
'@vue/server-renderer': 3.5.32(vue@3.5.32)
|
|
1463
|
+
'@vue/shared': 3.5.32
|
|
1464
|
+
|
|
1465
|
+
zod@4.3.6: {}
|
|
1466
|
+
|
|
1467
|
+
zwitch@2.0.4: {}
|