rodauth-tools 0.3.1 → 0.4.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +10 -3
- data/CHANGELOG.md +25 -0
- data/CLAUDE.md +34 -11
- data/Gemfile +5 -5
- data/Gemfile.lock +119 -117
- data/README.md +33 -1
- data/lib/rodauth/features/account_id_obfuscation.rb +317 -0
- data/lib/rodauth/features/hmac_secret_guard.rb +55 -47
- data/lib/rodauth/features/jwt_secret_guard.rb +55 -45
- data/lib/rodauth/features/table_guard.rb +195 -53
- data/lib/rodauth/secret_guard.rb +137 -0
- data/lib/rodauth/sequel_generator.rb +17 -5
- data/lib/rodauth/table_inspector.rb +1 -1
- data/lib/rodauth/tools/account_id_cipher.rb +150 -0
- data/lib/rodauth/tools/migration.rb +3 -4
- data/lib/rodauth/tools/version.rb +1 -1
- data/lib/rodauth/tools.rb +2 -0
- data/package-lock.json +943 -76
- data/package.json +1 -1
- metadata +4 -1
data/package-lock.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"name": "rodauth-tools",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"markdownlint-cli2": "^0.
|
|
11
|
+
"markdownlint-cli2": "^0.23.0"
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"node_modules/@nodelib/fs.scandir": {
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"node_modules/@sindresorhus/merge-streams": {
|
|
53
|
-
"version": "
|
|
54
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-
|
|
55
|
-
"integrity": "sha512-
|
|
53
|
+
"version": "4.0.0",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz",
|
|
55
|
+
"integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==",
|
|
56
56
|
"dev": true,
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"engines": {
|
|
@@ -62,6 +62,50 @@
|
|
|
62
62
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
+
"node_modules/@types/debug": {
|
|
66
|
+
"version": "4.1.13",
|
|
67
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.13.tgz",
|
|
68
|
+
"integrity": "sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==",
|
|
69
|
+
"dev": true,
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"@types/ms": "*"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"node_modules/@types/katex": {
|
|
76
|
+
"version": "0.16.8",
|
|
77
|
+
"resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.8.tgz",
|
|
78
|
+
"integrity": "sha512-trgaNyfU+Xh2Tc+ABIb44a5AYUpicB3uwirOioeOkNPPbmgRNtcWyDeeFRzjPZENO9Vq8gvVqfhaaXWLlevVwg==",
|
|
79
|
+
"dev": true,
|
|
80
|
+
"license": "MIT"
|
|
81
|
+
},
|
|
82
|
+
"node_modules/@types/ms": {
|
|
83
|
+
"version": "2.1.0",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
|
|
85
|
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
|
86
|
+
"dev": true,
|
|
87
|
+
"license": "MIT"
|
|
88
|
+
},
|
|
89
|
+
"node_modules/@types/unist": {
|
|
90
|
+
"version": "2.0.11",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
|
|
92
|
+
"integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
|
|
93
|
+
"dev": true,
|
|
94
|
+
"license": "MIT"
|
|
95
|
+
},
|
|
96
|
+
"node_modules/ansi-regex": {
|
|
97
|
+
"version": "6.2.2",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
|
|
99
|
+
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
100
|
+
"dev": true,
|
|
101
|
+
"license": "MIT",
|
|
102
|
+
"engines": {
|
|
103
|
+
"node": ">=12"
|
|
104
|
+
},
|
|
105
|
+
"funding": {
|
|
106
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
65
109
|
"node_modules/argparse": {
|
|
66
110
|
"version": "2.0.1",
|
|
67
111
|
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
@@ -82,6 +126,105 @@
|
|
|
82
126
|
"node": ">=8"
|
|
83
127
|
}
|
|
84
128
|
},
|
|
129
|
+
"node_modules/character-entities": {
|
|
130
|
+
"version": "2.0.2",
|
|
131
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
132
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
133
|
+
"dev": true,
|
|
134
|
+
"license": "MIT",
|
|
135
|
+
"funding": {
|
|
136
|
+
"type": "github",
|
|
137
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"node_modules/character-entities-legacy": {
|
|
141
|
+
"version": "3.0.0",
|
|
142
|
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
|
|
143
|
+
"integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
|
|
144
|
+
"dev": true,
|
|
145
|
+
"license": "MIT",
|
|
146
|
+
"funding": {
|
|
147
|
+
"type": "github",
|
|
148
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"node_modules/character-reference-invalid": {
|
|
152
|
+
"version": "2.0.1",
|
|
153
|
+
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
|
|
154
|
+
"integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
|
|
155
|
+
"dev": true,
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"funding": {
|
|
158
|
+
"type": "github",
|
|
159
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"node_modules/commander": {
|
|
163
|
+
"version": "8.3.0",
|
|
164
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
|
|
165
|
+
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
|
|
166
|
+
"dev": true,
|
|
167
|
+
"license": "MIT",
|
|
168
|
+
"engines": {
|
|
169
|
+
"node": ">= 12"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"node_modules/debug": {
|
|
173
|
+
"version": "4.4.3",
|
|
174
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
175
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
176
|
+
"dev": true,
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"ms": "^2.1.3"
|
|
180
|
+
},
|
|
181
|
+
"engines": {
|
|
182
|
+
"node": ">=6.0"
|
|
183
|
+
},
|
|
184
|
+
"peerDependenciesMeta": {
|
|
185
|
+
"supports-color": {
|
|
186
|
+
"optional": true
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"node_modules/decode-named-character-reference": {
|
|
191
|
+
"version": "1.3.0",
|
|
192
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
|
|
193
|
+
"integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
|
|
194
|
+
"dev": true,
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"dependencies": {
|
|
197
|
+
"character-entities": "^2.0.0"
|
|
198
|
+
},
|
|
199
|
+
"funding": {
|
|
200
|
+
"type": "github",
|
|
201
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"node_modules/dequal": {
|
|
205
|
+
"version": "2.0.3",
|
|
206
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
207
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
208
|
+
"dev": true,
|
|
209
|
+
"license": "MIT",
|
|
210
|
+
"engines": {
|
|
211
|
+
"node": ">=6"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"node_modules/devlop": {
|
|
215
|
+
"version": "1.1.0",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
217
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
218
|
+
"dev": true,
|
|
219
|
+
"license": "MIT",
|
|
220
|
+
"dependencies": {
|
|
221
|
+
"dequal": "^2.0.0"
|
|
222
|
+
},
|
|
223
|
+
"funding": {
|
|
224
|
+
"type": "github",
|
|
225
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
85
228
|
"node_modules/entities": {
|
|
86
229
|
"version": "4.5.0",
|
|
87
230
|
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
|
@@ -113,9 +256,9 @@
|
|
|
113
256
|
}
|
|
114
257
|
},
|
|
115
258
|
"node_modules/fastq": {
|
|
116
|
-
"version": "1.
|
|
117
|
-
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.
|
|
118
|
-
"integrity": "sha512-
|
|
259
|
+
"version": "1.20.1",
|
|
260
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
|
|
261
|
+
"integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
|
|
119
262
|
"dev": true,
|
|
120
263
|
"license": "ISC",
|
|
121
264
|
"dependencies": {
|
|
@@ -135,6 +278,19 @@
|
|
|
135
278
|
"node": ">=8"
|
|
136
279
|
}
|
|
137
280
|
},
|
|
281
|
+
"node_modules/get-east-asian-width": {
|
|
282
|
+
"version": "1.6.0",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
|
|
284
|
+
"integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
|
|
285
|
+
"dev": true,
|
|
286
|
+
"license": "MIT",
|
|
287
|
+
"engines": {
|
|
288
|
+
"node": ">=18"
|
|
289
|
+
},
|
|
290
|
+
"funding": {
|
|
291
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
138
294
|
"node_modules/glob-parent": {
|
|
139
295
|
"version": "5.1.2",
|
|
140
296
|
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
@@ -149,36 +305,73 @@
|
|
|
149
305
|
}
|
|
150
306
|
},
|
|
151
307
|
"node_modules/globby": {
|
|
152
|
-
"version": "
|
|
153
|
-
"resolved": "https://registry.npmjs.org/globby/-/globby-
|
|
154
|
-
"integrity": "sha512-
|
|
308
|
+
"version": "16.2.0",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/globby/-/globby-16.2.0.tgz",
|
|
310
|
+
"integrity": "sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==",
|
|
155
311
|
"dev": true,
|
|
156
312
|
"license": "MIT",
|
|
157
313
|
"dependencies": {
|
|
158
|
-
"@sindresorhus/merge-streams": "^
|
|
159
|
-
"fast-glob": "^3.3.
|
|
160
|
-
"ignore": "^
|
|
161
|
-
"path-
|
|
314
|
+
"@sindresorhus/merge-streams": "^4.0.0",
|
|
315
|
+
"fast-glob": "^3.3.3",
|
|
316
|
+
"ignore": "^7.0.5",
|
|
317
|
+
"is-path-inside": "^4.0.0",
|
|
162
318
|
"slash": "^5.1.0",
|
|
163
|
-
"unicorn-magic": "^0.
|
|
319
|
+
"unicorn-magic": "^0.4.0"
|
|
164
320
|
},
|
|
165
321
|
"engines": {
|
|
166
|
-
"node": ">=
|
|
322
|
+
"node": ">=20"
|
|
167
323
|
},
|
|
168
324
|
"funding": {
|
|
169
325
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
170
326
|
}
|
|
171
327
|
},
|
|
172
328
|
"node_modules/ignore": {
|
|
173
|
-
"version": "
|
|
174
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-
|
|
175
|
-
"integrity": "sha512-
|
|
329
|
+
"version": "7.0.5",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
331
|
+
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
176
332
|
"dev": true,
|
|
177
333
|
"license": "MIT",
|
|
178
334
|
"engines": {
|
|
179
335
|
"node": ">= 4"
|
|
180
336
|
}
|
|
181
337
|
},
|
|
338
|
+
"node_modules/is-alphabetical": {
|
|
339
|
+
"version": "2.0.1",
|
|
340
|
+
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
|
|
341
|
+
"integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
|
|
342
|
+
"dev": true,
|
|
343
|
+
"license": "MIT",
|
|
344
|
+
"funding": {
|
|
345
|
+
"type": "github",
|
|
346
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"node_modules/is-alphanumerical": {
|
|
350
|
+
"version": "2.0.1",
|
|
351
|
+
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
|
|
352
|
+
"integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
|
|
353
|
+
"dev": true,
|
|
354
|
+
"license": "MIT",
|
|
355
|
+
"dependencies": {
|
|
356
|
+
"is-alphabetical": "^2.0.0",
|
|
357
|
+
"is-decimal": "^2.0.0"
|
|
358
|
+
},
|
|
359
|
+
"funding": {
|
|
360
|
+
"type": "github",
|
|
361
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"node_modules/is-decimal": {
|
|
365
|
+
"version": "2.0.1",
|
|
366
|
+
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
|
|
367
|
+
"integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
|
|
368
|
+
"dev": true,
|
|
369
|
+
"license": "MIT",
|
|
370
|
+
"funding": {
|
|
371
|
+
"type": "github",
|
|
372
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
182
375
|
"node_modules/is-extglob": {
|
|
183
376
|
"version": "2.1.1",
|
|
184
377
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -202,6 +395,17 @@
|
|
|
202
395
|
"node": ">=0.10.0"
|
|
203
396
|
}
|
|
204
397
|
},
|
|
398
|
+
"node_modules/is-hexadecimal": {
|
|
399
|
+
"version": "2.0.1",
|
|
400
|
+
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
|
|
401
|
+
"integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
|
|
402
|
+
"dev": true,
|
|
403
|
+
"license": "MIT",
|
|
404
|
+
"funding": {
|
|
405
|
+
"type": "github",
|
|
406
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
205
409
|
"node_modules/is-number": {
|
|
206
410
|
"version": "7.0.0",
|
|
207
411
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -212,17 +416,40 @@
|
|
|
212
416
|
"node": ">=0.12.0"
|
|
213
417
|
}
|
|
214
418
|
},
|
|
419
|
+
"node_modules/is-path-inside": {
|
|
420
|
+
"version": "4.0.0",
|
|
421
|
+
"resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
|
|
422
|
+
"integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
|
|
423
|
+
"dev": true,
|
|
424
|
+
"license": "MIT",
|
|
425
|
+
"engines": {
|
|
426
|
+
"node": ">=12"
|
|
427
|
+
},
|
|
428
|
+
"funding": {
|
|
429
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
215
432
|
"node_modules/js-yaml": {
|
|
216
|
-
"version": "
|
|
217
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-
|
|
218
|
-
"integrity": "sha512-
|
|
433
|
+
"version": "5.2.0",
|
|
434
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-5.2.0.tgz",
|
|
435
|
+
"integrity": "sha512-YeLUMlvR4Ou1B119LIaM0r65JvbOBooJDc9yEu0dClb/uSC5P4FrLU8OCCz/HXWvtPoIrR0dRzABTjo1sTN9Bw==",
|
|
219
436
|
"dev": true,
|
|
437
|
+
"funding": [
|
|
438
|
+
{
|
|
439
|
+
"type": "github",
|
|
440
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"type": "github",
|
|
444
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
445
|
+
}
|
|
446
|
+
],
|
|
220
447
|
"license": "MIT",
|
|
221
448
|
"dependencies": {
|
|
222
449
|
"argparse": "^2.0.1"
|
|
223
450
|
},
|
|
224
451
|
"bin": {
|
|
225
|
-
"js-yaml": "bin/js-yaml.
|
|
452
|
+
"js-yaml": "bin/js-yaml.mjs"
|
|
226
453
|
}
|
|
227
454
|
},
|
|
228
455
|
"node_modules/jsonc-parser": {
|
|
@@ -232,26 +459,73 @@
|
|
|
232
459
|
"dev": true,
|
|
233
460
|
"license": "MIT"
|
|
234
461
|
},
|
|
462
|
+
"node_modules/jsonpointer": {
|
|
463
|
+
"version": "5.0.1",
|
|
464
|
+
"resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz",
|
|
465
|
+
"integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==",
|
|
466
|
+
"dev": true,
|
|
467
|
+
"license": "MIT",
|
|
468
|
+
"engines": {
|
|
469
|
+
"node": ">=0.10.0"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/katex": {
|
|
473
|
+
"version": "0.16.47",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.47.tgz",
|
|
475
|
+
"integrity": "sha512-Eeo8Ys1doU1z+x8AZsPpQu+p/QcZBI5PeOo7QGQdy2x2m0MU/hYagBbGOmXwr5KVbEfVuWv9LpnQWeehogurjg==",
|
|
476
|
+
"dev": true,
|
|
477
|
+
"funding": [
|
|
478
|
+
"https://opencollective.com/katex",
|
|
479
|
+
"https://github.com/sponsors/katex"
|
|
480
|
+
],
|
|
481
|
+
"license": "MIT",
|
|
482
|
+
"dependencies": {
|
|
483
|
+
"commander": "^8.3.0"
|
|
484
|
+
},
|
|
485
|
+
"bin": {
|
|
486
|
+
"katex": "cli.js"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
235
489
|
"node_modules/linkify-it": {
|
|
236
|
-
"version": "5.0.
|
|
237
|
-
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.
|
|
238
|
-
"integrity": "sha512-
|
|
490
|
+
"version": "5.0.2",
|
|
491
|
+
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.2.tgz",
|
|
492
|
+
"integrity": "sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==",
|
|
239
493
|
"dev": true,
|
|
494
|
+
"funding": [
|
|
495
|
+
{
|
|
496
|
+
"type": "github",
|
|
497
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"type": "github",
|
|
501
|
+
"url": "https://github.com/sponsors/markdown-it"
|
|
502
|
+
}
|
|
503
|
+
],
|
|
240
504
|
"license": "MIT",
|
|
241
505
|
"dependencies": {
|
|
242
506
|
"uc.micro": "^2.0.0"
|
|
243
507
|
}
|
|
244
508
|
},
|
|
245
509
|
"node_modules/markdown-it": {
|
|
246
|
-
"version": "14.
|
|
247
|
-
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.
|
|
248
|
-
"integrity": "sha512-
|
|
510
|
+
"version": "14.2.0",
|
|
511
|
+
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.2.0.tgz",
|
|
512
|
+
"integrity": "sha512-1TGiQiJVRQ3NPmZH6sx5Cfnmg6GQm9jvC1ch4TK511NjSJvjzKLzn5pPfZRNZkRPZP0HqCioSndqH8v2nRaWVQ==",
|
|
249
513
|
"dev": true,
|
|
514
|
+
"funding": [
|
|
515
|
+
{
|
|
516
|
+
"type": "github",
|
|
517
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"type": "github",
|
|
521
|
+
"url": "https://github.com/sponsors/markdown-it"
|
|
522
|
+
}
|
|
523
|
+
],
|
|
250
524
|
"license": "MIT",
|
|
251
525
|
"dependencies": {
|
|
252
526
|
"argparse": "^2.0.1",
|
|
253
527
|
"entities": "^4.4.0",
|
|
254
|
-
"linkify-it": "^5.0.
|
|
528
|
+
"linkify-it": "^5.0.1",
|
|
255
529
|
"mdurl": "^2.0.0",
|
|
256
530
|
"punycode.js": "^2.3.1",
|
|
257
531
|
"uc.micro": "^2.1.0"
|
|
@@ -261,50 +535,60 @@
|
|
|
261
535
|
}
|
|
262
536
|
},
|
|
263
537
|
"node_modules/markdownlint": {
|
|
264
|
-
"version": "0.
|
|
265
|
-
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.
|
|
266
|
-
"integrity": "sha512-
|
|
538
|
+
"version": "0.41.0",
|
|
539
|
+
"resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.41.0.tgz",
|
|
540
|
+
"integrity": "sha512-xMUI3ChBuRuxuLF4ENvCZyS8z/+Jly1coUcZwErKLIB3sDj7ojpaTBa1e9YVPhSN4jGEIjYGQCldbTJS/hqS+A==",
|
|
267
541
|
"dev": true,
|
|
268
542
|
"license": "MIT",
|
|
269
543
|
"dependencies": {
|
|
270
|
-
"
|
|
271
|
-
"
|
|
544
|
+
"micromark": "4.0.2",
|
|
545
|
+
"micromark-core-commonmark": "2.0.3",
|
|
546
|
+
"micromark-extension-directive": "4.0.0",
|
|
547
|
+
"micromark-extension-gfm-autolink-literal": "2.1.0",
|
|
548
|
+
"micromark-extension-gfm-footnote": "2.1.0",
|
|
549
|
+
"micromark-extension-gfm-table": "2.1.1",
|
|
550
|
+
"micromark-extension-math": "3.1.0",
|
|
551
|
+
"micromark-util-types": "2.0.2",
|
|
552
|
+
"string-width": "8.2.1"
|
|
272
553
|
},
|
|
273
554
|
"engines": {
|
|
274
|
-
"node": ">=
|
|
555
|
+
"node": ">=22"
|
|
275
556
|
},
|
|
276
557
|
"funding": {
|
|
277
558
|
"url": "https://github.com/sponsors/DavidAnson"
|
|
278
559
|
}
|
|
279
560
|
},
|
|
280
561
|
"node_modules/markdownlint-cli2": {
|
|
281
|
-
"version": "0.
|
|
282
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.
|
|
283
|
-
"integrity": "sha512-
|
|
562
|
+
"version": "0.23.0",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.23.0.tgz",
|
|
564
|
+
"integrity": "sha512-1nmgQmU/ZTMRVwYCDs7i1HI3zfBISnT2NNRv+9V01oOLZbAtqL+a7tldpPhBWBVBten3FqhMCGV6EUh9McqutQ==",
|
|
284
565
|
"dev": true,
|
|
285
566
|
"license": "MIT",
|
|
286
567
|
"dependencies": {
|
|
287
|
-
"globby": "
|
|
288
|
-
"js-yaml": "
|
|
568
|
+
"globby": "16.2.0",
|
|
569
|
+
"js-yaml": "5.2.0",
|
|
289
570
|
"jsonc-parser": "3.3.1",
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
571
|
+
"jsonpointer": "5.0.1",
|
|
572
|
+
"markdown-it": "14.2.0",
|
|
573
|
+
"markdownlint": "0.41.0",
|
|
574
|
+
"markdownlint-cli2-formatter-default": "0.0.6",
|
|
575
|
+
"micromatch": "4.0.8",
|
|
576
|
+
"smol-toml": "1.7.0"
|
|
293
577
|
},
|
|
294
578
|
"bin": {
|
|
295
|
-
"markdownlint-cli2": "markdownlint-cli2.
|
|
579
|
+
"markdownlint-cli2": "markdownlint-cli2-bin.mjs"
|
|
296
580
|
},
|
|
297
581
|
"engines": {
|
|
298
|
-
"node": ">=
|
|
582
|
+
"node": ">=22"
|
|
299
583
|
},
|
|
300
584
|
"funding": {
|
|
301
585
|
"url": "https://github.com/sponsors/DavidAnson"
|
|
302
586
|
}
|
|
303
587
|
},
|
|
304
588
|
"node_modules/markdownlint-cli2-formatter-default": {
|
|
305
|
-
"version": "0.0.
|
|
306
|
-
"resolved": "https://registry.npmjs.org/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.
|
|
307
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "0.0.6",
|
|
590
|
+
"resolved": "https://registry.npmjs.org/markdownlint-cli2-formatter-default/-/markdownlint-cli2-formatter-default-0.0.6.tgz",
|
|
591
|
+
"integrity": "sha512-VVDGKsq9sgzu378swJ0fcHfSicUnMxnL8gnLm/Q4J/xsNJ4e5bA6lvAz7PCzIl0/No0lHyaWdqVD2jotxOSFMQ==",
|
|
308
592
|
"dev": true,
|
|
309
593
|
"license": "MIT",
|
|
310
594
|
"funding": {
|
|
@@ -314,19 +598,6 @@
|
|
|
314
598
|
"markdownlint-cli2": ">=0.0.4"
|
|
315
599
|
}
|
|
316
600
|
},
|
|
317
|
-
"node_modules/markdownlint-micromark": {
|
|
318
|
-
"version": "0.1.12",
|
|
319
|
-
"resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.12.tgz",
|
|
320
|
-
"integrity": "sha512-RlB6EwMGgc0sxcIhOQ2+aq7Zw1V2fBnzbXKGgYK/mVWdT7cz34fteKSwfYeo4rL6+L/q2tyC9QtD/PgZbkdyJQ==",
|
|
321
|
-
"dev": true,
|
|
322
|
-
"license": "MIT",
|
|
323
|
-
"engines": {
|
|
324
|
-
"node": ">=18"
|
|
325
|
-
},
|
|
326
|
-
"funding": {
|
|
327
|
-
"url": "https://github.com/sponsors/DavidAnson"
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
601
|
"node_modules/mdurl": {
|
|
331
602
|
"version": "2.0.0",
|
|
332
603
|
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
@@ -344,6 +615,542 @@
|
|
|
344
615
|
"node": ">= 8"
|
|
345
616
|
}
|
|
346
617
|
},
|
|
618
|
+
"node_modules/micromark": {
|
|
619
|
+
"version": "4.0.2",
|
|
620
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
|
|
621
|
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
|
|
622
|
+
"dev": true,
|
|
623
|
+
"funding": [
|
|
624
|
+
{
|
|
625
|
+
"type": "GitHub Sponsors",
|
|
626
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"type": "OpenCollective",
|
|
630
|
+
"url": "https://opencollective.com/unified"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"license": "MIT",
|
|
634
|
+
"dependencies": {
|
|
635
|
+
"@types/debug": "^4.0.0",
|
|
636
|
+
"debug": "^4.0.0",
|
|
637
|
+
"decode-named-character-reference": "^1.0.0",
|
|
638
|
+
"devlop": "^1.0.0",
|
|
639
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
640
|
+
"micromark-factory-space": "^2.0.0",
|
|
641
|
+
"micromark-util-character": "^2.0.0",
|
|
642
|
+
"micromark-util-chunked": "^2.0.0",
|
|
643
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
644
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
645
|
+
"micromark-util-encode": "^2.0.0",
|
|
646
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
647
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
648
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
649
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
650
|
+
"micromark-util-symbol": "^2.0.0",
|
|
651
|
+
"micromark-util-types": "^2.0.0"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"node_modules/micromark-core-commonmark": {
|
|
655
|
+
"version": "2.0.3",
|
|
656
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
|
|
657
|
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
|
|
658
|
+
"dev": true,
|
|
659
|
+
"funding": [
|
|
660
|
+
{
|
|
661
|
+
"type": "GitHub Sponsors",
|
|
662
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"type": "OpenCollective",
|
|
666
|
+
"url": "https://opencollective.com/unified"
|
|
667
|
+
}
|
|
668
|
+
],
|
|
669
|
+
"license": "MIT",
|
|
670
|
+
"dependencies": {
|
|
671
|
+
"decode-named-character-reference": "^1.0.0",
|
|
672
|
+
"devlop": "^1.0.0",
|
|
673
|
+
"micromark-factory-destination": "^2.0.0",
|
|
674
|
+
"micromark-factory-label": "^2.0.0",
|
|
675
|
+
"micromark-factory-space": "^2.0.0",
|
|
676
|
+
"micromark-factory-title": "^2.0.0",
|
|
677
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
678
|
+
"micromark-util-character": "^2.0.0",
|
|
679
|
+
"micromark-util-chunked": "^2.0.0",
|
|
680
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
681
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
682
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
683
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
684
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
685
|
+
"micromark-util-symbol": "^2.0.0",
|
|
686
|
+
"micromark-util-types": "^2.0.0"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
"node_modules/micromark-extension-directive": {
|
|
690
|
+
"version": "4.0.0",
|
|
691
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-4.0.0.tgz",
|
|
692
|
+
"integrity": "sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==",
|
|
693
|
+
"dev": true,
|
|
694
|
+
"license": "MIT",
|
|
695
|
+
"dependencies": {
|
|
696
|
+
"devlop": "^1.0.0",
|
|
697
|
+
"micromark-factory-space": "^2.0.0",
|
|
698
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
699
|
+
"micromark-util-character": "^2.0.0",
|
|
700
|
+
"micromark-util-symbol": "^2.0.0",
|
|
701
|
+
"micromark-util-types": "^2.0.0",
|
|
702
|
+
"parse-entities": "^4.0.0"
|
|
703
|
+
},
|
|
704
|
+
"funding": {
|
|
705
|
+
"type": "opencollective",
|
|
706
|
+
"url": "https://opencollective.com/unified"
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"node_modules/micromark-extension-gfm-autolink-literal": {
|
|
710
|
+
"version": "2.1.0",
|
|
711
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
|
|
712
|
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
|
|
713
|
+
"dev": true,
|
|
714
|
+
"license": "MIT",
|
|
715
|
+
"dependencies": {
|
|
716
|
+
"micromark-util-character": "^2.0.0",
|
|
717
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
718
|
+
"micromark-util-symbol": "^2.0.0",
|
|
719
|
+
"micromark-util-types": "^2.0.0"
|
|
720
|
+
},
|
|
721
|
+
"funding": {
|
|
722
|
+
"type": "opencollective",
|
|
723
|
+
"url": "https://opencollective.com/unified"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"node_modules/micromark-extension-gfm-footnote": {
|
|
727
|
+
"version": "2.1.0",
|
|
728
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
|
|
729
|
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
|
|
730
|
+
"dev": true,
|
|
731
|
+
"license": "MIT",
|
|
732
|
+
"dependencies": {
|
|
733
|
+
"devlop": "^1.0.0",
|
|
734
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
735
|
+
"micromark-factory-space": "^2.0.0",
|
|
736
|
+
"micromark-util-character": "^2.0.0",
|
|
737
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
738
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
739
|
+
"micromark-util-symbol": "^2.0.0",
|
|
740
|
+
"micromark-util-types": "^2.0.0"
|
|
741
|
+
},
|
|
742
|
+
"funding": {
|
|
743
|
+
"type": "opencollective",
|
|
744
|
+
"url": "https://opencollective.com/unified"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"node_modules/micromark-extension-gfm-table": {
|
|
748
|
+
"version": "2.1.1",
|
|
749
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
|
|
750
|
+
"integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
|
|
751
|
+
"dev": true,
|
|
752
|
+
"license": "MIT",
|
|
753
|
+
"dependencies": {
|
|
754
|
+
"devlop": "^1.0.0",
|
|
755
|
+
"micromark-factory-space": "^2.0.0",
|
|
756
|
+
"micromark-util-character": "^2.0.0",
|
|
757
|
+
"micromark-util-symbol": "^2.0.0",
|
|
758
|
+
"micromark-util-types": "^2.0.0"
|
|
759
|
+
},
|
|
760
|
+
"funding": {
|
|
761
|
+
"type": "opencollective",
|
|
762
|
+
"url": "https://opencollective.com/unified"
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
"node_modules/micromark-extension-math": {
|
|
766
|
+
"version": "3.1.0",
|
|
767
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-3.1.0.tgz",
|
|
768
|
+
"integrity": "sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==",
|
|
769
|
+
"dev": true,
|
|
770
|
+
"license": "MIT",
|
|
771
|
+
"dependencies": {
|
|
772
|
+
"@types/katex": "^0.16.0",
|
|
773
|
+
"devlop": "^1.0.0",
|
|
774
|
+
"katex": "^0.16.0",
|
|
775
|
+
"micromark-factory-space": "^2.0.0",
|
|
776
|
+
"micromark-util-character": "^2.0.0",
|
|
777
|
+
"micromark-util-symbol": "^2.0.0",
|
|
778
|
+
"micromark-util-types": "^2.0.0"
|
|
779
|
+
},
|
|
780
|
+
"funding": {
|
|
781
|
+
"type": "opencollective",
|
|
782
|
+
"url": "https://opencollective.com/unified"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"node_modules/micromark-factory-destination": {
|
|
786
|
+
"version": "2.0.1",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
788
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
789
|
+
"dev": true,
|
|
790
|
+
"funding": [
|
|
791
|
+
{
|
|
792
|
+
"type": "GitHub Sponsors",
|
|
793
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"type": "OpenCollective",
|
|
797
|
+
"url": "https://opencollective.com/unified"
|
|
798
|
+
}
|
|
799
|
+
],
|
|
800
|
+
"license": "MIT",
|
|
801
|
+
"dependencies": {
|
|
802
|
+
"micromark-util-character": "^2.0.0",
|
|
803
|
+
"micromark-util-symbol": "^2.0.0",
|
|
804
|
+
"micromark-util-types": "^2.0.0"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
"node_modules/micromark-factory-label": {
|
|
808
|
+
"version": "2.0.1",
|
|
809
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
810
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
811
|
+
"dev": true,
|
|
812
|
+
"funding": [
|
|
813
|
+
{
|
|
814
|
+
"type": "GitHub Sponsors",
|
|
815
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": "OpenCollective",
|
|
819
|
+
"url": "https://opencollective.com/unified"
|
|
820
|
+
}
|
|
821
|
+
],
|
|
822
|
+
"license": "MIT",
|
|
823
|
+
"dependencies": {
|
|
824
|
+
"devlop": "^1.0.0",
|
|
825
|
+
"micromark-util-character": "^2.0.0",
|
|
826
|
+
"micromark-util-symbol": "^2.0.0",
|
|
827
|
+
"micromark-util-types": "^2.0.0"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"node_modules/micromark-factory-space": {
|
|
831
|
+
"version": "2.0.1",
|
|
832
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
833
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
834
|
+
"dev": true,
|
|
835
|
+
"funding": [
|
|
836
|
+
{
|
|
837
|
+
"type": "GitHub Sponsors",
|
|
838
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"type": "OpenCollective",
|
|
842
|
+
"url": "https://opencollective.com/unified"
|
|
843
|
+
}
|
|
844
|
+
],
|
|
845
|
+
"license": "MIT",
|
|
846
|
+
"dependencies": {
|
|
847
|
+
"micromark-util-character": "^2.0.0",
|
|
848
|
+
"micromark-util-types": "^2.0.0"
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"node_modules/micromark-factory-title": {
|
|
852
|
+
"version": "2.0.1",
|
|
853
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
854
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
855
|
+
"dev": true,
|
|
856
|
+
"funding": [
|
|
857
|
+
{
|
|
858
|
+
"type": "GitHub Sponsors",
|
|
859
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"type": "OpenCollective",
|
|
863
|
+
"url": "https://opencollective.com/unified"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"license": "MIT",
|
|
867
|
+
"dependencies": {
|
|
868
|
+
"micromark-factory-space": "^2.0.0",
|
|
869
|
+
"micromark-util-character": "^2.0.0",
|
|
870
|
+
"micromark-util-symbol": "^2.0.0",
|
|
871
|
+
"micromark-util-types": "^2.0.0"
|
|
872
|
+
}
|
|
873
|
+
},
|
|
874
|
+
"node_modules/micromark-factory-whitespace": {
|
|
875
|
+
"version": "2.0.1",
|
|
876
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
877
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
878
|
+
"dev": true,
|
|
879
|
+
"funding": [
|
|
880
|
+
{
|
|
881
|
+
"type": "GitHub Sponsors",
|
|
882
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"type": "OpenCollective",
|
|
886
|
+
"url": "https://opencollective.com/unified"
|
|
887
|
+
}
|
|
888
|
+
],
|
|
889
|
+
"license": "MIT",
|
|
890
|
+
"dependencies": {
|
|
891
|
+
"micromark-factory-space": "^2.0.0",
|
|
892
|
+
"micromark-util-character": "^2.0.0",
|
|
893
|
+
"micromark-util-symbol": "^2.0.0",
|
|
894
|
+
"micromark-util-types": "^2.0.0"
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"node_modules/micromark-util-character": {
|
|
898
|
+
"version": "2.1.1",
|
|
899
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
900
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
901
|
+
"dev": true,
|
|
902
|
+
"funding": [
|
|
903
|
+
{
|
|
904
|
+
"type": "GitHub Sponsors",
|
|
905
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"type": "OpenCollective",
|
|
909
|
+
"url": "https://opencollective.com/unified"
|
|
910
|
+
}
|
|
911
|
+
],
|
|
912
|
+
"license": "MIT",
|
|
913
|
+
"dependencies": {
|
|
914
|
+
"micromark-util-symbol": "^2.0.0",
|
|
915
|
+
"micromark-util-types": "^2.0.0"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"node_modules/micromark-util-chunked": {
|
|
919
|
+
"version": "2.0.1",
|
|
920
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
921
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
922
|
+
"dev": true,
|
|
923
|
+
"funding": [
|
|
924
|
+
{
|
|
925
|
+
"type": "GitHub Sponsors",
|
|
926
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"type": "OpenCollective",
|
|
930
|
+
"url": "https://opencollective.com/unified"
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
"license": "MIT",
|
|
934
|
+
"dependencies": {
|
|
935
|
+
"micromark-util-symbol": "^2.0.0"
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
"node_modules/micromark-util-classify-character": {
|
|
939
|
+
"version": "2.0.1",
|
|
940
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
941
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
942
|
+
"dev": true,
|
|
943
|
+
"funding": [
|
|
944
|
+
{
|
|
945
|
+
"type": "GitHub Sponsors",
|
|
946
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"type": "OpenCollective",
|
|
950
|
+
"url": "https://opencollective.com/unified"
|
|
951
|
+
}
|
|
952
|
+
],
|
|
953
|
+
"license": "MIT",
|
|
954
|
+
"dependencies": {
|
|
955
|
+
"micromark-util-character": "^2.0.0",
|
|
956
|
+
"micromark-util-symbol": "^2.0.0",
|
|
957
|
+
"micromark-util-types": "^2.0.0"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
961
|
+
"version": "2.0.1",
|
|
962
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
963
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
964
|
+
"dev": true,
|
|
965
|
+
"funding": [
|
|
966
|
+
{
|
|
967
|
+
"type": "GitHub Sponsors",
|
|
968
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"type": "OpenCollective",
|
|
972
|
+
"url": "https://opencollective.com/unified"
|
|
973
|
+
}
|
|
974
|
+
],
|
|
975
|
+
"license": "MIT",
|
|
976
|
+
"dependencies": {
|
|
977
|
+
"micromark-util-chunked": "^2.0.0",
|
|
978
|
+
"micromark-util-types": "^2.0.0"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
982
|
+
"version": "2.0.2",
|
|
983
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
984
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
985
|
+
"dev": true,
|
|
986
|
+
"funding": [
|
|
987
|
+
{
|
|
988
|
+
"type": "GitHub Sponsors",
|
|
989
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"type": "OpenCollective",
|
|
993
|
+
"url": "https://opencollective.com/unified"
|
|
994
|
+
}
|
|
995
|
+
],
|
|
996
|
+
"license": "MIT",
|
|
997
|
+
"dependencies": {
|
|
998
|
+
"micromark-util-symbol": "^2.0.0"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"node_modules/micromark-util-encode": {
|
|
1002
|
+
"version": "2.0.1",
|
|
1003
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
1004
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
1005
|
+
"dev": true,
|
|
1006
|
+
"funding": [
|
|
1007
|
+
{
|
|
1008
|
+
"type": "GitHub Sponsors",
|
|
1009
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
"type": "OpenCollective",
|
|
1013
|
+
"url": "https://opencollective.com/unified"
|
|
1014
|
+
}
|
|
1015
|
+
],
|
|
1016
|
+
"license": "MIT"
|
|
1017
|
+
},
|
|
1018
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
1019
|
+
"version": "2.0.1",
|
|
1020
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
1021
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
1022
|
+
"dev": true,
|
|
1023
|
+
"funding": [
|
|
1024
|
+
{
|
|
1025
|
+
"type": "GitHub Sponsors",
|
|
1026
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"type": "OpenCollective",
|
|
1030
|
+
"url": "https://opencollective.com/unified"
|
|
1031
|
+
}
|
|
1032
|
+
],
|
|
1033
|
+
"license": "MIT"
|
|
1034
|
+
},
|
|
1035
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
1036
|
+
"version": "2.0.1",
|
|
1037
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
1038
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
1039
|
+
"dev": true,
|
|
1040
|
+
"funding": [
|
|
1041
|
+
{
|
|
1042
|
+
"type": "GitHub Sponsors",
|
|
1043
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"type": "OpenCollective",
|
|
1047
|
+
"url": "https://opencollective.com/unified"
|
|
1048
|
+
}
|
|
1049
|
+
],
|
|
1050
|
+
"license": "MIT",
|
|
1051
|
+
"dependencies": {
|
|
1052
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
"node_modules/micromark-util-resolve-all": {
|
|
1056
|
+
"version": "2.0.1",
|
|
1057
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
1058
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
1059
|
+
"dev": true,
|
|
1060
|
+
"funding": [
|
|
1061
|
+
{
|
|
1062
|
+
"type": "GitHub Sponsors",
|
|
1063
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"type": "OpenCollective",
|
|
1067
|
+
"url": "https://opencollective.com/unified"
|
|
1068
|
+
}
|
|
1069
|
+
],
|
|
1070
|
+
"license": "MIT",
|
|
1071
|
+
"dependencies": {
|
|
1072
|
+
"micromark-util-types": "^2.0.0"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
1076
|
+
"version": "2.0.1",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
1078
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
1079
|
+
"dev": true,
|
|
1080
|
+
"funding": [
|
|
1081
|
+
{
|
|
1082
|
+
"type": "GitHub Sponsors",
|
|
1083
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"type": "OpenCollective",
|
|
1087
|
+
"url": "https://opencollective.com/unified"
|
|
1088
|
+
}
|
|
1089
|
+
],
|
|
1090
|
+
"license": "MIT",
|
|
1091
|
+
"dependencies": {
|
|
1092
|
+
"micromark-util-character": "^2.0.0",
|
|
1093
|
+
"micromark-util-encode": "^2.0.0",
|
|
1094
|
+
"micromark-util-symbol": "^2.0.0"
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
"node_modules/micromark-util-subtokenize": {
|
|
1098
|
+
"version": "2.1.0",
|
|
1099
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
|
|
1100
|
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
|
|
1101
|
+
"dev": true,
|
|
1102
|
+
"funding": [
|
|
1103
|
+
{
|
|
1104
|
+
"type": "GitHub Sponsors",
|
|
1105
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"type": "OpenCollective",
|
|
1109
|
+
"url": "https://opencollective.com/unified"
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"license": "MIT",
|
|
1113
|
+
"dependencies": {
|
|
1114
|
+
"devlop": "^1.0.0",
|
|
1115
|
+
"micromark-util-chunked": "^2.0.0",
|
|
1116
|
+
"micromark-util-symbol": "^2.0.0",
|
|
1117
|
+
"micromark-util-types": "^2.0.0"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
"node_modules/micromark-util-symbol": {
|
|
1121
|
+
"version": "2.0.1",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
1123
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
1124
|
+
"dev": true,
|
|
1125
|
+
"funding": [
|
|
1126
|
+
{
|
|
1127
|
+
"type": "GitHub Sponsors",
|
|
1128
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"type": "OpenCollective",
|
|
1132
|
+
"url": "https://opencollective.com/unified"
|
|
1133
|
+
}
|
|
1134
|
+
],
|
|
1135
|
+
"license": "MIT"
|
|
1136
|
+
},
|
|
1137
|
+
"node_modules/micromark-util-types": {
|
|
1138
|
+
"version": "2.0.2",
|
|
1139
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
|
|
1140
|
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
|
|
1141
|
+
"dev": true,
|
|
1142
|
+
"funding": [
|
|
1143
|
+
{
|
|
1144
|
+
"type": "GitHub Sponsors",
|
|
1145
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"type": "OpenCollective",
|
|
1149
|
+
"url": "https://opencollective.com/unified"
|
|
1150
|
+
}
|
|
1151
|
+
],
|
|
1152
|
+
"license": "MIT"
|
|
1153
|
+
},
|
|
347
1154
|
"node_modules/micromatch": {
|
|
348
1155
|
"version": "4.0.8",
|
|
349
1156
|
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
@@ -358,23 +1165,37 @@
|
|
|
358
1165
|
"node": ">=8.6"
|
|
359
1166
|
}
|
|
360
1167
|
},
|
|
361
|
-
"node_modules/
|
|
362
|
-
"version": "
|
|
363
|
-
"resolved": "https://registry.npmjs.org/
|
|
364
|
-
"integrity": "sha512-
|
|
1168
|
+
"node_modules/ms": {
|
|
1169
|
+
"version": "2.1.3",
|
|
1170
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1171
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1172
|
+
"dev": true,
|
|
1173
|
+
"license": "MIT"
|
|
1174
|
+
},
|
|
1175
|
+
"node_modules/parse-entities": {
|
|
1176
|
+
"version": "4.0.2",
|
|
1177
|
+
"resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
|
|
1178
|
+
"integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
|
|
365
1179
|
"dev": true,
|
|
366
1180
|
"license": "MIT",
|
|
367
|
-
"
|
|
368
|
-
"
|
|
1181
|
+
"dependencies": {
|
|
1182
|
+
"@types/unist": "^2.0.0",
|
|
1183
|
+
"character-entities-legacy": "^3.0.0",
|
|
1184
|
+
"character-reference-invalid": "^2.0.0",
|
|
1185
|
+
"decode-named-character-reference": "^1.0.0",
|
|
1186
|
+
"is-alphanumerical": "^2.0.0",
|
|
1187
|
+
"is-decimal": "^2.0.0",
|
|
1188
|
+
"is-hexadecimal": "^2.0.0"
|
|
369
1189
|
},
|
|
370
1190
|
"funding": {
|
|
371
|
-
"
|
|
1191
|
+
"type": "github",
|
|
1192
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
372
1193
|
}
|
|
373
1194
|
},
|
|
374
1195
|
"node_modules/picomatch": {
|
|
375
|
-
"version": "2.3.
|
|
376
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.
|
|
377
|
-
"integrity": "sha512-
|
|
1196
|
+
"version": "2.3.2",
|
|
1197
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
1198
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
378
1199
|
"dev": true,
|
|
379
1200
|
"license": "MIT",
|
|
380
1201
|
"engines": {
|
|
@@ -463,6 +1284,52 @@
|
|
|
463
1284
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
464
1285
|
}
|
|
465
1286
|
},
|
|
1287
|
+
"node_modules/smol-toml": {
|
|
1288
|
+
"version": "1.7.0",
|
|
1289
|
+
"resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.7.0.tgz",
|
|
1290
|
+
"integrity": "sha512-aqVvWoyO21L23mb+drl4RmMXbf6N7FdHjAhTRA9ZBL7apWBgfWC16KjrASI+1p9GAroljyMHj6fK67i0UiTNvQ==",
|
|
1291
|
+
"dev": true,
|
|
1292
|
+
"license": "BSD-3-Clause",
|
|
1293
|
+
"engines": {
|
|
1294
|
+
"node": ">= 18"
|
|
1295
|
+
},
|
|
1296
|
+
"funding": {
|
|
1297
|
+
"url": "https://github.com/sponsors/cyyynthia"
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
"node_modules/string-width": {
|
|
1301
|
+
"version": "8.2.1",
|
|
1302
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.1.tgz",
|
|
1303
|
+
"integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==",
|
|
1304
|
+
"dev": true,
|
|
1305
|
+
"license": "MIT",
|
|
1306
|
+
"dependencies": {
|
|
1307
|
+
"get-east-asian-width": "^1.5.0",
|
|
1308
|
+
"strip-ansi": "^7.1.2"
|
|
1309
|
+
},
|
|
1310
|
+
"engines": {
|
|
1311
|
+
"node": ">=20"
|
|
1312
|
+
},
|
|
1313
|
+
"funding": {
|
|
1314
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"node_modules/strip-ansi": {
|
|
1318
|
+
"version": "7.2.0",
|
|
1319
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz",
|
|
1320
|
+
"integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
|
|
1321
|
+
"dev": true,
|
|
1322
|
+
"license": "MIT",
|
|
1323
|
+
"dependencies": {
|
|
1324
|
+
"ansi-regex": "^6.2.2"
|
|
1325
|
+
},
|
|
1326
|
+
"engines": {
|
|
1327
|
+
"node": ">=12"
|
|
1328
|
+
},
|
|
1329
|
+
"funding": {
|
|
1330
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
466
1333
|
"node_modules/to-regex-range": {
|
|
467
1334
|
"version": "5.0.1",
|
|
468
1335
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
@@ -484,13 +1351,13 @@
|
|
|
484
1351
|
"license": "MIT"
|
|
485
1352
|
},
|
|
486
1353
|
"node_modules/unicorn-magic": {
|
|
487
|
-
"version": "0.
|
|
488
|
-
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.
|
|
489
|
-
"integrity": "sha512-
|
|
1354
|
+
"version": "0.4.0",
|
|
1355
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.4.0.tgz",
|
|
1356
|
+
"integrity": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==",
|
|
490
1357
|
"dev": true,
|
|
491
1358
|
"license": "MIT",
|
|
492
1359
|
"engines": {
|
|
493
|
-
"node": ">=
|
|
1360
|
+
"node": ">=20"
|
|
494
1361
|
},
|
|
495
1362
|
"funding": {
|
|
496
1363
|
"url": "https://github.com/sponsors/sindresorhus"
|