react-obsidian 0.0.40 → 0.0.41
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/dist/clearGraphs.js +2 -2
- package/dist/clearGraphs.js.map +1 -1
- package/dist/src/GraphProperties.js +9 -10
- package/dist/src/GraphProperties.js.map +1 -1
- package/dist/src/Obsidian.js +15 -18
- package/dist/src/Obsidian.js.map +1 -1
- package/dist/src/ProvidedPropertiesStore.js +13 -14
- package/dist/src/ProvidedPropertiesStore.js.map +1 -1
- package/dist/src/ReferenceCounter.js +9 -10
- package/dist/src/ReferenceCounter.js.map +1 -1
- package/dist/src/decorators/Graph.js +3 -4
- package/dist/src/decorators/Graph.js.map +1 -1
- package/dist/src/decorators/LifecycleBound.js +1 -1
- package/dist/src/decorators/LifecycleBound.js.map +1 -1
- package/dist/src/decorators/Memoize.js +3 -3
- package/dist/src/decorators/Memoize.js.map +1 -1
- package/dist/src/decorators/Singleton.js +1 -1
- package/dist/src/decorators/Singleton.js.map +1 -1
- package/dist/src/decorators/inject/Inject.js +4 -4
- package/dist/src/decorators/inject/Inject.js.map +1 -1
- package/dist/src/decorators/inject/Injectable.js +2 -2
- package/dist/src/decorators/inject/Injectable.js.map +1 -1
- package/dist/src/decorators/inject/LateInject.js +3 -3
- package/dist/src/decorators/inject/LateInject.js.map +1 -1
- package/dist/src/decorators/provides/MemoizeDescriptor.js +5 -9
- package/dist/src/decorators/provides/MemoizeDescriptor.js.map +1 -1
- package/dist/src/decorators/provides/Provides.js +3 -4
- package/dist/src/decorators/provides/Provides.js.map +1 -1
- package/dist/src/graph/ObjectGraph.js +19 -24
- package/dist/src/graph/ObjectGraph.js.map +1 -1
- package/dist/src/graph/PropertyRetriever.js +17 -18
- package/dist/src/graph/PropertyRetriever.js.map +1 -1
- package/dist/src/graph/ProviderBinder.js +3 -3
- package/dist/src/graph/ProviderBinder.js.map +1 -1
- package/dist/src/graph/ServiceLocatorFactory.js +9 -12
- package/dist/src/graph/ServiceLocatorFactory.js.map +1 -1
- package/dist/src/graph/registry/DefaultGraphResolver.js +5 -25
- package/dist/src/graph/registry/DefaultGraphResolver.js.map +1 -1
- package/dist/src/graph/registry/GraphMiddleware.js +3 -23
- package/dist/src/graph/registry/GraphMiddleware.js.map +1 -1
- package/dist/src/graph/registry/GraphMiddlewareChain.js +12 -14
- package/dist/src/graph/registry/GraphMiddlewareChain.js.map +1 -1
- package/dist/src/graph/registry/GraphRegistry.js +38 -41
- package/dist/src/graph/registry/GraphRegistry.js.map +1 -1
- package/dist/src/graph/registry/Middleware.js +11 -19
- package/dist/src/graph/registry/Middleware.js.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/injectors/class/ClassInjector.js +25 -40
- package/dist/src/injectors/class/ClassInjector.js.map +1 -1
- package/dist/src/injectors/class/ConstructorArgs.js +11 -12
- package/dist/src/injectors/class/ConstructorArgs.js.map +1 -1
- package/dist/src/injectors/class/InjectionMetadata.js +21 -22
- package/dist/src/injectors/class/InjectionMetadata.js.map +1 -1
- package/dist/src/injectors/class/LateInjector.js +12 -15
- package/dist/src/injectors/class/LateInjector.js.map +1 -1
- package/dist/src/injectors/components/ComponentInjector.js +18 -21
- package/dist/src/injectors/components/ComponentInjector.js.map +1 -1
- package/dist/src/injectors/components/InjectComponent.js +3 -3
- package/dist/src/injectors/components/InjectComponent.js.map +1 -1
- package/dist/src/injectors/components/PropsInjector.js +7 -9
- package/dist/src/injectors/components/PropsInjector.js.map +1 -1
- package/dist/src/injectors/components/useGraph.js +10 -10
- package/dist/src/injectors/components/useGraph.js.map +1 -1
- package/dist/src/injectors/hooks/HookInjector.js +12 -16
- package/dist/src/injectors/hooks/HookInjector.js.map +1 -1
- package/dist/src/injectors/hooks/InjectHook.js +2 -2
- package/dist/src/injectors/hooks/InjectHook.js.map +1 -1
- package/dist/src/observable/MediatorObservable.js +23 -34
- package/dist/src/observable/MediatorObservable.js.map +1 -1
- package/dist/src/observable/Observable.js +16 -22
- package/dist/src/observable/Observable.js.map +1 -1
- package/dist/src/observable/useObserver.js +4 -4
- package/dist/src/observable/useObserver.js.map +1 -1
- package/dist/src/utils/React.js +1 -1
- package/dist/src/utils/React.js.map +1 -1
- package/dist/test/fixtures/GraphWithOnBind.js +16 -36
- package/dist/test/fixtures/GraphWithOnBind.js.map +1 -1
- package/dist/test/fixtures/InjectedComponent.js +4 -7
- package/dist/test/fixtures/InjectedComponent.js.map +1 -1
- package/dist/test/fixtures/LifecycleBoundGraph.js +23 -42
- package/dist/test/fixtures/LifecycleBoundGraph.js.map +1 -1
- package/dist/test/fixtures/MainGraph.js +25 -45
- package/dist/test/fixtures/MainGraph.js.map +1 -1
- package/dist/test/fixtures/SingletonGraph.js +21 -39
- package/dist/test/fixtures/SingletonGraph.js.map +1 -1
- package/dist/test/fixtures/StringProvider.js +4 -6
- package/dist/test/fixtures/StringProvider.js.map +1 -1
- package/dist/test/fixtures/Subgraph.js +41 -61
- package/dist/test/fixtures/Subgraph.js.map +1 -1
- package/dist/test/fixtures/ThrowingMainGraph.js +15 -35
- package/dist/test/fixtures/ThrowingMainGraph.js.map +1 -1
- package/dist/test/fixtures/UniqueNumberGraph.js +27 -45
- package/dist/test/fixtures/UniqueNumberGraph.js.map +1 -1
- package/dist/testkit/index.js +12 -35
- package/dist/testkit/index.js.map +1 -1
- package/dist/transformers/babel-plugin-obsidian/helpers/index.js +11 -11
- package/dist/transformers/babel-plugin-obsidian/helpers/index.js.map +1 -1
- package/dist/transformers/babel-plugin-obsidian/index.js +8 -12
- package/dist/transformers/babel-plugin-obsidian/index.js.map +1 -1
- package/dist/transformers/babel-plugin-obsidian/unmagler/index.js +2 -2
- package/dist/transformers/babel-plugin-obsidian/unmagler/index.js.map +1 -1
- package/dist/transformers/babel-plugin-obsidian/unmagler/method.js +3 -3
- package/dist/transformers/babel-plugin-obsidian/unmagler/method.js.map +1 -1
- package/dist/transformers/babel-plugin-obsidian/unmagler/property.js +2 -2
- package/dist/transformers/babel-plugin-obsidian/unmagler/property.js.map +1 -1
- package/documentation/package-lock.json +1818 -87
- package/documentation/package.json +1 -0
- package/documentation/src/theme/SearchBar.js +22 -0
- package/package.json +2 -2
- package/tsconfig.base.json +1 -1
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"@docusaurus/preset-classic": "2.2.0",
|
|
13
13
|
"@mdx-js/react": "^1.6.22",
|
|
14
14
|
"clsx": "^1.2.1",
|
|
15
|
+
"enhancedocs-search": "^0.1.3",
|
|
15
16
|
"prism-react-renderer": "^1.3.5",
|
|
16
17
|
"react": "^17.0.2",
|
|
17
18
|
"react-dom": "^17.0.2"
|
|
@@ -3168,6 +3169,14 @@
|
|
|
3168
3169
|
"@types/node": "*"
|
|
3169
3170
|
}
|
|
3170
3171
|
},
|
|
3172
|
+
"node_modules/@types/debug": {
|
|
3173
|
+
"version": "4.1.7",
|
|
3174
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
|
|
3175
|
+
"integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
|
|
3176
|
+
"dependencies": {
|
|
3177
|
+
"@types/ms": "*"
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
3171
3180
|
"node_modules/@types/eslint": {
|
|
3172
3181
|
"version": "8.4.10",
|
|
3173
3182
|
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz",
|
|
@@ -3277,6 +3286,11 @@
|
|
|
3277
3286
|
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz",
|
|
3278
3287
|
"integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
|
|
3279
3288
|
},
|
|
3289
|
+
"node_modules/@types/ms": {
|
|
3290
|
+
"version": "0.7.31",
|
|
3291
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
|
|
3292
|
+
"integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
|
|
3293
|
+
},
|
|
3280
3294
|
"node_modules/@types/node": {
|
|
3281
3295
|
"version": "18.11.10",
|
|
3282
3296
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
@@ -5197,6 +5211,27 @@
|
|
|
5197
5211
|
}
|
|
5198
5212
|
}
|
|
5199
5213
|
},
|
|
5214
|
+
"node_modules/decode-named-character-reference": {
|
|
5215
|
+
"version": "1.0.2",
|
|
5216
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
|
|
5217
|
+
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
|
|
5218
|
+
"dependencies": {
|
|
5219
|
+
"character-entities": "^2.0.0"
|
|
5220
|
+
},
|
|
5221
|
+
"funding": {
|
|
5222
|
+
"type": "github",
|
|
5223
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
5224
|
+
}
|
|
5225
|
+
},
|
|
5226
|
+
"node_modules/decode-named-character-reference/node_modules/character-entities": {
|
|
5227
|
+
"version": "2.0.2",
|
|
5228
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
5229
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
|
|
5230
|
+
"funding": {
|
|
5231
|
+
"type": "github",
|
|
5232
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
5233
|
+
}
|
|
5234
|
+
},
|
|
5200
5235
|
"node_modules/decompress-response": {
|
|
5201
5236
|
"version": "3.3.0",
|
|
5202
5237
|
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
|
@@ -5292,6 +5327,14 @@
|
|
|
5292
5327
|
"node": ">= 0.8"
|
|
5293
5328
|
}
|
|
5294
5329
|
},
|
|
5330
|
+
"node_modules/dequal": {
|
|
5331
|
+
"version": "2.0.3",
|
|
5332
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
5333
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
5334
|
+
"engines": {
|
|
5335
|
+
"node": ">=6"
|
|
5336
|
+
}
|
|
5337
|
+
},
|
|
5295
5338
|
"node_modules/destroy": {
|
|
5296
5339
|
"version": "1.2.0",
|
|
5297
5340
|
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
@@ -5360,6 +5403,14 @@
|
|
|
5360
5403
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
|
5361
5404
|
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
|
|
5362
5405
|
},
|
|
5406
|
+
"node_modules/diff": {
|
|
5407
|
+
"version": "5.1.0",
|
|
5408
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz",
|
|
5409
|
+
"integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==",
|
|
5410
|
+
"engines": {
|
|
5411
|
+
"node": ">=0.3.1"
|
|
5412
|
+
}
|
|
5413
|
+
},
|
|
5363
5414
|
"node_modules/dir-glob": {
|
|
5364
5415
|
"version": "3.0.1",
|
|
5365
5416
|
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
|
|
@@ -5549,6 +5600,20 @@
|
|
|
5549
5600
|
"node": ">=10.13.0"
|
|
5550
5601
|
}
|
|
5551
5602
|
},
|
|
5603
|
+
"node_modules/enhancedocs-search": {
|
|
5604
|
+
"version": "0.1.3",
|
|
5605
|
+
"resolved": "https://registry.npmjs.org/enhancedocs-search/-/enhancedocs-search-0.1.3.tgz",
|
|
5606
|
+
"integrity": "sha512-gKAZV8b9tosT0bKzw+3KOUULg0SthmrDxzdUPSUspIMiz+rtgMYpEr5ziX77BMOCI9CALruxTMckEzd+8eDSmQ==",
|
|
5607
|
+
"dependencies": {
|
|
5608
|
+
"react-markdown": "^8.0.6",
|
|
5609
|
+
"react-modal": "^3.16.1",
|
|
5610
|
+
"typesense": "^1.5.3"
|
|
5611
|
+
},
|
|
5612
|
+
"peerDependencies": {
|
|
5613
|
+
"react": "^17.x || ^18.x",
|
|
5614
|
+
"react-dom": "^17.x || ^18.x"
|
|
5615
|
+
}
|
|
5616
|
+
},
|
|
5552
5617
|
"node_modules/entities": {
|
|
5553
5618
|
"version": "4.4.0",
|
|
5554
5619
|
"resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
|
|
@@ -5741,6 +5806,11 @@
|
|
|
5741
5806
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5742
5807
|
}
|
|
5743
5808
|
},
|
|
5809
|
+
"node_modules/exenv": {
|
|
5810
|
+
"version": "1.2.2",
|
|
5811
|
+
"resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz",
|
|
5812
|
+
"integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw=="
|
|
5813
|
+
},
|
|
5744
5814
|
"node_modules/express": {
|
|
5745
5815
|
"version": "4.18.2",
|
|
5746
5816
|
"resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
|
|
@@ -6610,6 +6680,15 @@
|
|
|
6610
6680
|
"url": "https://opencollective.com/unified"
|
|
6611
6681
|
}
|
|
6612
6682
|
},
|
|
6683
|
+
"node_modules/hast-util-whitespace": {
|
|
6684
|
+
"version": "2.0.1",
|
|
6685
|
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz",
|
|
6686
|
+
"integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==",
|
|
6687
|
+
"funding": {
|
|
6688
|
+
"type": "opencollective",
|
|
6689
|
+
"url": "https://opencollective.com/unified"
|
|
6690
|
+
}
|
|
6691
|
+
},
|
|
6613
6692
|
"node_modules/hastscript": {
|
|
6614
6693
|
"version": "6.0.0",
|
|
6615
6694
|
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
|
|
@@ -7585,6 +7664,18 @@
|
|
|
7585
7664
|
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
|
7586
7665
|
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
|
|
7587
7666
|
},
|
|
7667
|
+
"node_modules/loglevel": {
|
|
7668
|
+
"version": "1.8.1",
|
|
7669
|
+
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz",
|
|
7670
|
+
"integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==",
|
|
7671
|
+
"engines": {
|
|
7672
|
+
"node": ">= 0.6.0"
|
|
7673
|
+
},
|
|
7674
|
+
"funding": {
|
|
7675
|
+
"type": "tidelift",
|
|
7676
|
+
"url": "https://tidelift.com/funding/github/npm/loglevel"
|
|
7677
|
+
}
|
|
7678
|
+
},
|
|
7588
7679
|
"node_modules/loose-envify": {
|
|
7589
7680
|
"version": "1.4.0",
|
|
7590
7681
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
@@ -7678,6 +7769,53 @@
|
|
|
7678
7769
|
"url": "https://opencollective.com/unified"
|
|
7679
7770
|
}
|
|
7680
7771
|
},
|
|
7772
|
+
"node_modules/mdast-util-from-markdown": {
|
|
7773
|
+
"version": "1.3.0",
|
|
7774
|
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz",
|
|
7775
|
+
"integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==",
|
|
7776
|
+
"dependencies": {
|
|
7777
|
+
"@types/mdast": "^3.0.0",
|
|
7778
|
+
"@types/unist": "^2.0.0",
|
|
7779
|
+
"decode-named-character-reference": "^1.0.0",
|
|
7780
|
+
"mdast-util-to-string": "^3.1.0",
|
|
7781
|
+
"micromark": "^3.0.0",
|
|
7782
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
7783
|
+
"micromark-util-decode-string": "^1.0.0",
|
|
7784
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
7785
|
+
"micromark-util-symbol": "^1.0.0",
|
|
7786
|
+
"micromark-util-types": "^1.0.0",
|
|
7787
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
7788
|
+
"uvu": "^0.5.0"
|
|
7789
|
+
},
|
|
7790
|
+
"funding": {
|
|
7791
|
+
"type": "opencollective",
|
|
7792
|
+
"url": "https://opencollective.com/unified"
|
|
7793
|
+
}
|
|
7794
|
+
},
|
|
7795
|
+
"node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": {
|
|
7796
|
+
"version": "3.1.1",
|
|
7797
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz",
|
|
7798
|
+
"integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==",
|
|
7799
|
+
"dependencies": {
|
|
7800
|
+
"@types/mdast": "^3.0.0"
|
|
7801
|
+
},
|
|
7802
|
+
"funding": {
|
|
7803
|
+
"type": "opencollective",
|
|
7804
|
+
"url": "https://opencollective.com/unified"
|
|
7805
|
+
}
|
|
7806
|
+
},
|
|
7807
|
+
"node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": {
|
|
7808
|
+
"version": "3.0.3",
|
|
7809
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
7810
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
7811
|
+
"dependencies": {
|
|
7812
|
+
"@types/unist": "^2.0.0"
|
|
7813
|
+
},
|
|
7814
|
+
"funding": {
|
|
7815
|
+
"type": "opencollective",
|
|
7816
|
+
"url": "https://opencollective.com/unified"
|
|
7817
|
+
}
|
|
7818
|
+
},
|
|
7681
7819
|
"node_modules/mdast-util-to-hast": {
|
|
7682
7820
|
"version": "10.0.1",
|
|
7683
7821
|
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz",
|
|
@@ -7761,119 +7899,541 @@
|
|
|
7761
7899
|
"node": ">= 0.6"
|
|
7762
7900
|
}
|
|
7763
7901
|
},
|
|
7764
|
-
"node_modules/
|
|
7765
|
-
"version": "
|
|
7766
|
-
"resolved": "https://registry.npmjs.org/
|
|
7767
|
-
"integrity": "sha512-
|
|
7902
|
+
"node_modules/micromark": {
|
|
7903
|
+
"version": "3.1.0",
|
|
7904
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz",
|
|
7905
|
+
"integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==",
|
|
7906
|
+
"funding": [
|
|
7907
|
+
{
|
|
7908
|
+
"type": "GitHub Sponsors",
|
|
7909
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
7910
|
+
},
|
|
7911
|
+
{
|
|
7912
|
+
"type": "OpenCollective",
|
|
7913
|
+
"url": "https://opencollective.com/unified"
|
|
7914
|
+
}
|
|
7915
|
+
],
|
|
7768
7916
|
"dependencies": {
|
|
7769
|
-
"
|
|
7770
|
-
"
|
|
7771
|
-
|
|
7772
|
-
|
|
7773
|
-
"
|
|
7917
|
+
"@types/debug": "^4.0.0",
|
|
7918
|
+
"debug": "^4.0.0",
|
|
7919
|
+
"decode-named-character-reference": "^1.0.0",
|
|
7920
|
+
"micromark-core-commonmark": "^1.0.1",
|
|
7921
|
+
"micromark-factory-space": "^1.0.0",
|
|
7922
|
+
"micromark-util-character": "^1.0.0",
|
|
7923
|
+
"micromark-util-chunked": "^1.0.0",
|
|
7924
|
+
"micromark-util-combine-extensions": "^1.0.0",
|
|
7925
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
7926
|
+
"micromark-util-encode": "^1.0.0",
|
|
7927
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
7928
|
+
"micromark-util-resolve-all": "^1.0.0",
|
|
7929
|
+
"micromark-util-sanitize-uri": "^1.0.0",
|
|
7930
|
+
"micromark-util-subtokenize": "^1.0.0",
|
|
7931
|
+
"micromark-util-symbol": "^1.0.0",
|
|
7932
|
+
"micromark-util-types": "^1.0.1",
|
|
7933
|
+
"uvu": "^0.5.0"
|
|
7934
|
+
}
|
|
7935
|
+
},
|
|
7936
|
+
"node_modules/micromark-core-commonmark": {
|
|
7937
|
+
"version": "1.0.6",
|
|
7938
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
|
|
7939
|
+
"integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
|
|
7940
|
+
"funding": [
|
|
7941
|
+
{
|
|
7942
|
+
"type": "GitHub Sponsors",
|
|
7943
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
7944
|
+
},
|
|
7945
|
+
{
|
|
7946
|
+
"type": "OpenCollective",
|
|
7947
|
+
"url": "https://opencollective.com/unified"
|
|
7948
|
+
}
|
|
7949
|
+
],
|
|
7950
|
+
"dependencies": {
|
|
7951
|
+
"decode-named-character-reference": "^1.0.0",
|
|
7952
|
+
"micromark-factory-destination": "^1.0.0",
|
|
7953
|
+
"micromark-factory-label": "^1.0.0",
|
|
7954
|
+
"micromark-factory-space": "^1.0.0",
|
|
7955
|
+
"micromark-factory-title": "^1.0.0",
|
|
7956
|
+
"micromark-factory-whitespace": "^1.0.0",
|
|
7957
|
+
"micromark-util-character": "^1.0.0",
|
|
7958
|
+
"micromark-util-chunked": "^1.0.0",
|
|
7959
|
+
"micromark-util-classify-character": "^1.0.0",
|
|
7960
|
+
"micromark-util-html-tag-name": "^1.0.0",
|
|
7961
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
7962
|
+
"micromark-util-resolve-all": "^1.0.0",
|
|
7963
|
+
"micromark-util-subtokenize": "^1.0.0",
|
|
7964
|
+
"micromark-util-symbol": "^1.0.0",
|
|
7965
|
+
"micromark-util-types": "^1.0.1",
|
|
7966
|
+
"uvu": "^0.5.0"
|
|
7967
|
+
}
|
|
7968
|
+
},
|
|
7969
|
+
"node_modules/micromark-factory-destination": {
|
|
7970
|
+
"version": "1.0.0",
|
|
7971
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
|
|
7972
|
+
"integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
|
|
7973
|
+
"funding": [
|
|
7974
|
+
{
|
|
7975
|
+
"type": "GitHub Sponsors",
|
|
7976
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
7977
|
+
},
|
|
7978
|
+
{
|
|
7979
|
+
"type": "OpenCollective",
|
|
7980
|
+
"url": "https://opencollective.com/unified"
|
|
7981
|
+
}
|
|
7982
|
+
],
|
|
7983
|
+
"dependencies": {
|
|
7984
|
+
"micromark-util-character": "^1.0.0",
|
|
7985
|
+
"micromark-util-symbol": "^1.0.0",
|
|
7986
|
+
"micromark-util-types": "^1.0.0"
|
|
7774
7987
|
}
|
|
7775
7988
|
},
|
|
7776
|
-
"node_modules/
|
|
7777
|
-
"version": "1.
|
|
7778
|
-
"resolved": "https://registry.npmjs.org/
|
|
7779
|
-
"integrity": "sha512-
|
|
7780
|
-
"
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
|
|
7989
|
+
"node_modules/micromark-factory-label": {
|
|
7990
|
+
"version": "1.0.2",
|
|
7991
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
|
|
7992
|
+
"integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
|
|
7993
|
+
"funding": [
|
|
7994
|
+
{
|
|
7995
|
+
"type": "GitHub Sponsors",
|
|
7996
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"type": "OpenCollective",
|
|
8000
|
+
"url": "https://opencollective.com/unified"
|
|
8001
|
+
}
|
|
8002
|
+
],
|
|
8003
|
+
"dependencies": {
|
|
8004
|
+
"micromark-util-character": "^1.0.0",
|
|
8005
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8006
|
+
"micromark-util-types": "^1.0.0",
|
|
8007
|
+
"uvu": "^0.5.0"
|
|
7785
8008
|
}
|
|
7786
8009
|
},
|
|
7787
|
-
"node_modules/
|
|
7788
|
-
"version": "1.
|
|
7789
|
-
"resolved": "https://registry.npmjs.org/
|
|
7790
|
-
"integrity": "sha512-
|
|
7791
|
-
"
|
|
7792
|
-
|
|
8010
|
+
"node_modules/micromark-factory-space": {
|
|
8011
|
+
"version": "1.0.0",
|
|
8012
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
|
|
8013
|
+
"integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
|
|
8014
|
+
"funding": [
|
|
8015
|
+
{
|
|
8016
|
+
"type": "GitHub Sponsors",
|
|
8017
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8018
|
+
},
|
|
8019
|
+
{
|
|
8020
|
+
"type": "OpenCollective",
|
|
8021
|
+
"url": "https://opencollective.com/unified"
|
|
8022
|
+
}
|
|
8023
|
+
],
|
|
8024
|
+
"dependencies": {
|
|
8025
|
+
"micromark-util-character": "^1.0.0",
|
|
8026
|
+
"micromark-util-types": "^1.0.0"
|
|
7793
8027
|
}
|
|
7794
8028
|
},
|
|
7795
|
-
"node_modules/
|
|
7796
|
-
"version": "
|
|
7797
|
-
"resolved": "https://registry.npmjs.org/
|
|
7798
|
-
"integrity": "sha512-
|
|
8029
|
+
"node_modules/micromark-factory-title": {
|
|
8030
|
+
"version": "1.0.2",
|
|
8031
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
|
|
8032
|
+
"integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
|
|
8033
|
+
"funding": [
|
|
8034
|
+
{
|
|
8035
|
+
"type": "GitHub Sponsors",
|
|
8036
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8037
|
+
},
|
|
8038
|
+
{
|
|
8039
|
+
"type": "OpenCollective",
|
|
8040
|
+
"url": "https://opencollective.com/unified"
|
|
8041
|
+
}
|
|
8042
|
+
],
|
|
7799
8043
|
"dependencies": {
|
|
7800
|
-
"
|
|
7801
|
-
|
|
7802
|
-
|
|
7803
|
-
"
|
|
8044
|
+
"micromark-factory-space": "^1.0.0",
|
|
8045
|
+
"micromark-util-character": "^1.0.0",
|
|
8046
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8047
|
+
"micromark-util-types": "^1.0.0",
|
|
8048
|
+
"uvu": "^0.5.0"
|
|
7804
8049
|
}
|
|
7805
8050
|
},
|
|
7806
|
-
"node_modules/
|
|
7807
|
-
"version": "
|
|
7808
|
-
"resolved": "https://registry.npmjs.org/
|
|
7809
|
-
"integrity": "sha512-
|
|
7810
|
-
"
|
|
7811
|
-
|
|
8051
|
+
"node_modules/micromark-factory-whitespace": {
|
|
8052
|
+
"version": "1.0.0",
|
|
8053
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
|
|
8054
|
+
"integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
|
|
8055
|
+
"funding": [
|
|
8056
|
+
{
|
|
8057
|
+
"type": "GitHub Sponsors",
|
|
8058
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8059
|
+
},
|
|
8060
|
+
{
|
|
8061
|
+
"type": "OpenCollective",
|
|
8062
|
+
"url": "https://opencollective.com/unified"
|
|
8063
|
+
}
|
|
8064
|
+
],
|
|
8065
|
+
"dependencies": {
|
|
8066
|
+
"micromark-factory-space": "^1.0.0",
|
|
8067
|
+
"micromark-util-character": "^1.0.0",
|
|
8068
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8069
|
+
"micromark-util-types": "^1.0.0"
|
|
7812
8070
|
}
|
|
7813
8071
|
},
|
|
7814
|
-
"node_modules/
|
|
7815
|
-
"version": "1.0
|
|
7816
|
-
"resolved": "https://registry.npmjs.org/
|
|
7817
|
-
"integrity": "sha512-
|
|
7818
|
-
"
|
|
7819
|
-
|
|
8072
|
+
"node_modules/micromark-util-character": {
|
|
8073
|
+
"version": "1.1.0",
|
|
8074
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
|
|
8075
|
+
"integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
|
|
8076
|
+
"funding": [
|
|
8077
|
+
{
|
|
8078
|
+
"type": "GitHub Sponsors",
|
|
8079
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8080
|
+
},
|
|
8081
|
+
{
|
|
8082
|
+
"type": "OpenCollective",
|
|
8083
|
+
"url": "https://opencollective.com/unified"
|
|
8084
|
+
}
|
|
8085
|
+
],
|
|
8086
|
+
"dependencies": {
|
|
8087
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8088
|
+
"micromark-util-types": "^1.0.0"
|
|
7820
8089
|
}
|
|
7821
8090
|
},
|
|
7822
|
-
"node_modules/
|
|
7823
|
-
"version": "
|
|
7824
|
-
"resolved": "https://registry.npmjs.org/
|
|
7825
|
-
"integrity": "sha512-
|
|
8091
|
+
"node_modules/micromark-util-chunked": {
|
|
8092
|
+
"version": "1.0.0",
|
|
8093
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
|
|
8094
|
+
"integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
|
|
8095
|
+
"funding": [
|
|
8096
|
+
{
|
|
8097
|
+
"type": "GitHub Sponsors",
|
|
8098
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8099
|
+
},
|
|
8100
|
+
{
|
|
8101
|
+
"type": "OpenCollective",
|
|
8102
|
+
"url": "https://opencollective.com/unified"
|
|
8103
|
+
}
|
|
8104
|
+
],
|
|
7826
8105
|
"dependencies": {
|
|
7827
|
-
"
|
|
7828
|
-
},
|
|
7829
|
-
"engines": {
|
|
7830
|
-
"node": ">= 12.13.0"
|
|
7831
|
-
},
|
|
7832
|
-
"funding": {
|
|
7833
|
-
"type": "opencollective",
|
|
7834
|
-
"url": "https://opencollective.com/webpack"
|
|
7835
|
-
},
|
|
7836
|
-
"peerDependencies": {
|
|
7837
|
-
"webpack": "^5.0.0"
|
|
8106
|
+
"micromark-util-symbol": "^1.0.0"
|
|
7838
8107
|
}
|
|
7839
8108
|
},
|
|
7840
|
-
"node_modules/
|
|
7841
|
-
"version": "
|
|
7842
|
-
"resolved": "https://registry.npmjs.org/
|
|
7843
|
-
"integrity": "sha512-
|
|
8109
|
+
"node_modules/micromark-util-classify-character": {
|
|
8110
|
+
"version": "1.0.0",
|
|
8111
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
|
|
8112
|
+
"integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
|
|
8113
|
+
"funding": [
|
|
8114
|
+
{
|
|
8115
|
+
"type": "GitHub Sponsors",
|
|
8116
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8117
|
+
},
|
|
8118
|
+
{
|
|
8119
|
+
"type": "OpenCollective",
|
|
8120
|
+
"url": "https://opencollective.com/unified"
|
|
8121
|
+
}
|
|
8122
|
+
],
|
|
7844
8123
|
"dependencies": {
|
|
7845
|
-
"
|
|
7846
|
-
"
|
|
7847
|
-
"
|
|
7848
|
-
"uri-js": "^4.2.2"
|
|
7849
|
-
},
|
|
7850
|
-
"funding": {
|
|
7851
|
-
"type": "github",
|
|
7852
|
-
"url": "https://github.com/sponsors/epoberezkin"
|
|
8124
|
+
"micromark-util-character": "^1.0.0",
|
|
8125
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8126
|
+
"micromark-util-types": "^1.0.0"
|
|
7853
8127
|
}
|
|
7854
8128
|
},
|
|
7855
|
-
"node_modules/
|
|
7856
|
-
"version": "
|
|
7857
|
-
"resolved": "https://registry.npmjs.org/
|
|
7858
|
-
"integrity": "sha512-
|
|
8129
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
8130
|
+
"version": "1.0.0",
|
|
8131
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
|
|
8132
|
+
"integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
|
|
8133
|
+
"funding": [
|
|
8134
|
+
{
|
|
8135
|
+
"type": "GitHub Sponsors",
|
|
8136
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8137
|
+
},
|
|
8138
|
+
{
|
|
8139
|
+
"type": "OpenCollective",
|
|
8140
|
+
"url": "https://opencollective.com/unified"
|
|
8141
|
+
}
|
|
8142
|
+
],
|
|
7859
8143
|
"dependencies": {
|
|
7860
|
-
"
|
|
7861
|
-
|
|
7862
|
-
"peerDependencies": {
|
|
7863
|
-
"ajv": "^8.8.2"
|
|
8144
|
+
"micromark-util-chunked": "^1.0.0",
|
|
8145
|
+
"micromark-util-types": "^1.0.0"
|
|
7864
8146
|
}
|
|
7865
8147
|
},
|
|
7866
|
-
"node_modules/
|
|
8148
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
7867
8149
|
"version": "1.0.0",
|
|
7868
|
-
"resolved": "https://registry.npmjs.org/
|
|
7869
|
-
"integrity": "sha512-
|
|
8150
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
|
|
8151
|
+
"integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
|
|
8152
|
+
"funding": [
|
|
8153
|
+
{
|
|
8154
|
+
"type": "GitHub Sponsors",
|
|
8155
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8156
|
+
},
|
|
8157
|
+
{
|
|
8158
|
+
"type": "OpenCollective",
|
|
8159
|
+
"url": "https://opencollective.com/unified"
|
|
8160
|
+
}
|
|
8161
|
+
],
|
|
8162
|
+
"dependencies": {
|
|
8163
|
+
"micromark-util-symbol": "^1.0.0"
|
|
8164
|
+
}
|
|
7870
8165
|
},
|
|
7871
|
-
"node_modules/
|
|
7872
|
-
"version": "
|
|
7873
|
-
"resolved": "https://registry.npmjs.org/
|
|
7874
|
-
"integrity": "sha512-
|
|
8166
|
+
"node_modules/micromark-util-decode-string": {
|
|
8167
|
+
"version": "1.0.2",
|
|
8168
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
|
|
8169
|
+
"integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
|
|
8170
|
+
"funding": [
|
|
8171
|
+
{
|
|
8172
|
+
"type": "GitHub Sponsors",
|
|
8173
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8174
|
+
},
|
|
8175
|
+
{
|
|
8176
|
+
"type": "OpenCollective",
|
|
8177
|
+
"url": "https://opencollective.com/unified"
|
|
8178
|
+
}
|
|
8179
|
+
],
|
|
7875
8180
|
"dependencies": {
|
|
7876
|
-
"
|
|
8181
|
+
"decode-named-character-reference": "^1.0.0",
|
|
8182
|
+
"micromark-util-character": "^1.0.0",
|
|
8183
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
8184
|
+
"micromark-util-symbol": "^1.0.0"
|
|
8185
|
+
}
|
|
8186
|
+
},
|
|
8187
|
+
"node_modules/micromark-util-encode": {
|
|
8188
|
+
"version": "1.0.1",
|
|
8189
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
|
|
8190
|
+
"integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==",
|
|
8191
|
+
"funding": [
|
|
8192
|
+
{
|
|
8193
|
+
"type": "GitHub Sponsors",
|
|
8194
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8195
|
+
},
|
|
8196
|
+
{
|
|
8197
|
+
"type": "OpenCollective",
|
|
8198
|
+
"url": "https://opencollective.com/unified"
|
|
8199
|
+
}
|
|
8200
|
+
]
|
|
8201
|
+
},
|
|
8202
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
8203
|
+
"version": "1.1.0",
|
|
8204
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz",
|
|
8205
|
+
"integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==",
|
|
8206
|
+
"funding": [
|
|
8207
|
+
{
|
|
8208
|
+
"type": "GitHub Sponsors",
|
|
8209
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8210
|
+
},
|
|
8211
|
+
{
|
|
8212
|
+
"type": "OpenCollective",
|
|
8213
|
+
"url": "https://opencollective.com/unified"
|
|
8214
|
+
}
|
|
8215
|
+
]
|
|
8216
|
+
},
|
|
8217
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
8218
|
+
"version": "1.0.0",
|
|
8219
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
|
|
8220
|
+
"integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
|
|
8221
|
+
"funding": [
|
|
8222
|
+
{
|
|
8223
|
+
"type": "GitHub Sponsors",
|
|
8224
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8225
|
+
},
|
|
8226
|
+
{
|
|
8227
|
+
"type": "OpenCollective",
|
|
8228
|
+
"url": "https://opencollective.com/unified"
|
|
8229
|
+
}
|
|
8230
|
+
],
|
|
8231
|
+
"dependencies": {
|
|
8232
|
+
"micromark-util-symbol": "^1.0.0"
|
|
8233
|
+
}
|
|
8234
|
+
},
|
|
8235
|
+
"node_modules/micromark-util-resolve-all": {
|
|
8236
|
+
"version": "1.0.0",
|
|
8237
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
|
|
8238
|
+
"integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
|
|
8239
|
+
"funding": [
|
|
8240
|
+
{
|
|
8241
|
+
"type": "GitHub Sponsors",
|
|
8242
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8243
|
+
},
|
|
8244
|
+
{
|
|
8245
|
+
"type": "OpenCollective",
|
|
8246
|
+
"url": "https://opencollective.com/unified"
|
|
8247
|
+
}
|
|
8248
|
+
],
|
|
8249
|
+
"dependencies": {
|
|
8250
|
+
"micromark-util-types": "^1.0.0"
|
|
8251
|
+
}
|
|
8252
|
+
},
|
|
8253
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
8254
|
+
"version": "1.1.0",
|
|
8255
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz",
|
|
8256
|
+
"integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==",
|
|
8257
|
+
"funding": [
|
|
8258
|
+
{
|
|
8259
|
+
"type": "GitHub Sponsors",
|
|
8260
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8261
|
+
},
|
|
8262
|
+
{
|
|
8263
|
+
"type": "OpenCollective",
|
|
8264
|
+
"url": "https://opencollective.com/unified"
|
|
8265
|
+
}
|
|
8266
|
+
],
|
|
8267
|
+
"dependencies": {
|
|
8268
|
+
"micromark-util-character": "^1.0.0",
|
|
8269
|
+
"micromark-util-encode": "^1.0.0",
|
|
8270
|
+
"micromark-util-symbol": "^1.0.0"
|
|
8271
|
+
}
|
|
8272
|
+
},
|
|
8273
|
+
"node_modules/micromark-util-subtokenize": {
|
|
8274
|
+
"version": "1.0.2",
|
|
8275
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
|
|
8276
|
+
"integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
|
|
8277
|
+
"funding": [
|
|
8278
|
+
{
|
|
8279
|
+
"type": "GitHub Sponsors",
|
|
8280
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8281
|
+
},
|
|
8282
|
+
{
|
|
8283
|
+
"type": "OpenCollective",
|
|
8284
|
+
"url": "https://opencollective.com/unified"
|
|
8285
|
+
}
|
|
8286
|
+
],
|
|
8287
|
+
"dependencies": {
|
|
8288
|
+
"micromark-util-chunked": "^1.0.0",
|
|
8289
|
+
"micromark-util-symbol": "^1.0.0",
|
|
8290
|
+
"micromark-util-types": "^1.0.0",
|
|
8291
|
+
"uvu": "^0.5.0"
|
|
8292
|
+
}
|
|
8293
|
+
},
|
|
8294
|
+
"node_modules/micromark-util-symbol": {
|
|
8295
|
+
"version": "1.0.1",
|
|
8296
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
|
|
8297
|
+
"integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==",
|
|
8298
|
+
"funding": [
|
|
8299
|
+
{
|
|
8300
|
+
"type": "GitHub Sponsors",
|
|
8301
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8302
|
+
},
|
|
8303
|
+
{
|
|
8304
|
+
"type": "OpenCollective",
|
|
8305
|
+
"url": "https://opencollective.com/unified"
|
|
8306
|
+
}
|
|
8307
|
+
]
|
|
8308
|
+
},
|
|
8309
|
+
"node_modules/micromark-util-types": {
|
|
8310
|
+
"version": "1.0.2",
|
|
8311
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
|
|
8312
|
+
"integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==",
|
|
8313
|
+
"funding": [
|
|
8314
|
+
{
|
|
8315
|
+
"type": "GitHub Sponsors",
|
|
8316
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
8317
|
+
},
|
|
8318
|
+
{
|
|
8319
|
+
"type": "OpenCollective",
|
|
8320
|
+
"url": "https://opencollective.com/unified"
|
|
8321
|
+
}
|
|
8322
|
+
]
|
|
8323
|
+
},
|
|
8324
|
+
"node_modules/micromatch": {
|
|
8325
|
+
"version": "4.0.5",
|
|
8326
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
8327
|
+
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
|
|
8328
|
+
"dependencies": {
|
|
8329
|
+
"braces": "^3.0.2",
|
|
8330
|
+
"picomatch": "^2.3.1"
|
|
8331
|
+
},
|
|
8332
|
+
"engines": {
|
|
8333
|
+
"node": ">=8.6"
|
|
8334
|
+
}
|
|
8335
|
+
},
|
|
8336
|
+
"node_modules/mime": {
|
|
8337
|
+
"version": "1.6.0",
|
|
8338
|
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
|
8339
|
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
8340
|
+
"bin": {
|
|
8341
|
+
"mime": "cli.js"
|
|
8342
|
+
},
|
|
8343
|
+
"engines": {
|
|
8344
|
+
"node": ">=4"
|
|
8345
|
+
}
|
|
8346
|
+
},
|
|
8347
|
+
"node_modules/mime-db": {
|
|
8348
|
+
"version": "1.33.0",
|
|
8349
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
|
|
8350
|
+
"integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
|
|
8351
|
+
"engines": {
|
|
8352
|
+
"node": ">= 0.6"
|
|
8353
|
+
}
|
|
8354
|
+
},
|
|
8355
|
+
"node_modules/mime-types": {
|
|
8356
|
+
"version": "2.1.18",
|
|
8357
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
|
|
8358
|
+
"integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
|
|
8359
|
+
"dependencies": {
|
|
8360
|
+
"mime-db": "~1.33.0"
|
|
8361
|
+
},
|
|
8362
|
+
"engines": {
|
|
8363
|
+
"node": ">= 0.6"
|
|
8364
|
+
}
|
|
8365
|
+
},
|
|
8366
|
+
"node_modules/mimic-fn": {
|
|
8367
|
+
"version": "2.1.0",
|
|
8368
|
+
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
|
8369
|
+
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
|
8370
|
+
"engines": {
|
|
8371
|
+
"node": ">=6"
|
|
8372
|
+
}
|
|
8373
|
+
},
|
|
8374
|
+
"node_modules/mimic-response": {
|
|
8375
|
+
"version": "1.0.1",
|
|
8376
|
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
|
8377
|
+
"integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
|
|
8378
|
+
"engines": {
|
|
8379
|
+
"node": ">=4"
|
|
8380
|
+
}
|
|
8381
|
+
},
|
|
8382
|
+
"node_modules/mini-css-extract-plugin": {
|
|
8383
|
+
"version": "2.7.1",
|
|
8384
|
+
"resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.1.tgz",
|
|
8385
|
+
"integrity": "sha512-viOoaUFy+Z2w43VsGPbtfwFrr0tKwDctK9dUofG5MBViYhD1noGFUzzDIVw0KPwCGUP+c7zqLxm+acuQs7zLzw==",
|
|
8386
|
+
"dependencies": {
|
|
8387
|
+
"schema-utils": "^4.0.0"
|
|
8388
|
+
},
|
|
8389
|
+
"engines": {
|
|
8390
|
+
"node": ">= 12.13.0"
|
|
8391
|
+
},
|
|
8392
|
+
"funding": {
|
|
8393
|
+
"type": "opencollective",
|
|
8394
|
+
"url": "https://opencollective.com/webpack"
|
|
8395
|
+
},
|
|
8396
|
+
"peerDependencies": {
|
|
8397
|
+
"webpack": "^5.0.0"
|
|
8398
|
+
}
|
|
8399
|
+
},
|
|
8400
|
+
"node_modules/mini-css-extract-plugin/node_modules/ajv": {
|
|
8401
|
+
"version": "8.11.2",
|
|
8402
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz",
|
|
8403
|
+
"integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==",
|
|
8404
|
+
"dependencies": {
|
|
8405
|
+
"fast-deep-equal": "^3.1.1",
|
|
8406
|
+
"json-schema-traverse": "^1.0.0",
|
|
8407
|
+
"require-from-string": "^2.0.2",
|
|
8408
|
+
"uri-js": "^4.2.2"
|
|
8409
|
+
},
|
|
8410
|
+
"funding": {
|
|
8411
|
+
"type": "github",
|
|
8412
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
8413
|
+
}
|
|
8414
|
+
},
|
|
8415
|
+
"node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": {
|
|
8416
|
+
"version": "5.1.0",
|
|
8417
|
+
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
|
|
8418
|
+
"integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
|
|
8419
|
+
"dependencies": {
|
|
8420
|
+
"fast-deep-equal": "^3.1.3"
|
|
8421
|
+
},
|
|
8422
|
+
"peerDependencies": {
|
|
8423
|
+
"ajv": "^8.8.2"
|
|
8424
|
+
}
|
|
8425
|
+
},
|
|
8426
|
+
"node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": {
|
|
8427
|
+
"version": "1.0.0",
|
|
8428
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
8429
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
|
|
8430
|
+
},
|
|
8431
|
+
"node_modules/mini-css-extract-plugin/node_modules/schema-utils": {
|
|
8432
|
+
"version": "4.0.0",
|
|
8433
|
+
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz",
|
|
8434
|
+
"integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==",
|
|
8435
|
+
"dependencies": {
|
|
8436
|
+
"@types/json-schema": "^7.0.9",
|
|
7877
8437
|
"ajv": "^8.8.0",
|
|
7878
8438
|
"ajv-formats": "^2.1.1",
|
|
7879
8439
|
"ajv-keywords": "^5.0.0"
|
|
@@ -7910,6 +8470,14 @@
|
|
|
7910
8470
|
"url": "https://github.com/sponsors/ljharb"
|
|
7911
8471
|
}
|
|
7912
8472
|
},
|
|
8473
|
+
"node_modules/mri": {
|
|
8474
|
+
"version": "1.2.0",
|
|
8475
|
+
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
|
8476
|
+
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
|
|
8477
|
+
"engines": {
|
|
8478
|
+
"node": ">=4"
|
|
8479
|
+
}
|
|
8480
|
+
},
|
|
7913
8481
|
"node_modules/mrmime": {
|
|
7914
8482
|
"version": "1.0.1",
|
|
7915
8483
|
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz",
|
|
@@ -9506,6 +10074,234 @@
|
|
|
9506
10074
|
"webpack": ">=4.41.1 || 5.x"
|
|
9507
10075
|
}
|
|
9508
10076
|
},
|
|
10077
|
+
"node_modules/react-markdown": {
|
|
10078
|
+
"version": "8.0.6",
|
|
10079
|
+
"resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.6.tgz",
|
|
10080
|
+
"integrity": "sha512-KgPWsYgHuftdx510wwIzpwf+5js/iHqBR+fzxefv8Khk3mFbnioF1bmL2idHN3ler0LMQmICKeDrWnZrX9mtbQ==",
|
|
10081
|
+
"dependencies": {
|
|
10082
|
+
"@types/hast": "^2.0.0",
|
|
10083
|
+
"@types/prop-types": "^15.0.0",
|
|
10084
|
+
"@types/unist": "^2.0.0",
|
|
10085
|
+
"comma-separated-tokens": "^2.0.0",
|
|
10086
|
+
"hast-util-whitespace": "^2.0.0",
|
|
10087
|
+
"prop-types": "^15.0.0",
|
|
10088
|
+
"property-information": "^6.0.0",
|
|
10089
|
+
"react-is": "^18.0.0",
|
|
10090
|
+
"remark-parse": "^10.0.0",
|
|
10091
|
+
"remark-rehype": "^10.0.0",
|
|
10092
|
+
"space-separated-tokens": "^2.0.0",
|
|
10093
|
+
"style-to-object": "^0.4.0",
|
|
10094
|
+
"unified": "^10.0.0",
|
|
10095
|
+
"unist-util-visit": "^4.0.0",
|
|
10096
|
+
"vfile": "^5.0.0"
|
|
10097
|
+
},
|
|
10098
|
+
"funding": {
|
|
10099
|
+
"type": "opencollective",
|
|
10100
|
+
"url": "https://opencollective.com/unified"
|
|
10101
|
+
},
|
|
10102
|
+
"peerDependencies": {
|
|
10103
|
+
"@types/react": ">=16",
|
|
10104
|
+
"react": ">=16"
|
|
10105
|
+
}
|
|
10106
|
+
},
|
|
10107
|
+
"node_modules/react-markdown/node_modules/bail": {
|
|
10108
|
+
"version": "2.0.2",
|
|
10109
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
10110
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
|
|
10111
|
+
"funding": {
|
|
10112
|
+
"type": "github",
|
|
10113
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10114
|
+
}
|
|
10115
|
+
},
|
|
10116
|
+
"node_modules/react-markdown/node_modules/comma-separated-tokens": {
|
|
10117
|
+
"version": "2.0.3",
|
|
10118
|
+
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
|
|
10119
|
+
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
|
|
10120
|
+
"funding": {
|
|
10121
|
+
"type": "github",
|
|
10122
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10123
|
+
}
|
|
10124
|
+
},
|
|
10125
|
+
"node_modules/react-markdown/node_modules/is-plain-obj": {
|
|
10126
|
+
"version": "4.1.0",
|
|
10127
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
10128
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
10129
|
+
"engines": {
|
|
10130
|
+
"node": ">=12"
|
|
10131
|
+
},
|
|
10132
|
+
"funding": {
|
|
10133
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10134
|
+
}
|
|
10135
|
+
},
|
|
10136
|
+
"node_modules/react-markdown/node_modules/property-information": {
|
|
10137
|
+
"version": "6.2.0",
|
|
10138
|
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz",
|
|
10139
|
+
"integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==",
|
|
10140
|
+
"funding": {
|
|
10141
|
+
"type": "github",
|
|
10142
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10143
|
+
}
|
|
10144
|
+
},
|
|
10145
|
+
"node_modules/react-markdown/node_modules/react-is": {
|
|
10146
|
+
"version": "18.2.0",
|
|
10147
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
|
|
10148
|
+
"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
|
|
10149
|
+
},
|
|
10150
|
+
"node_modules/react-markdown/node_modules/remark-parse": {
|
|
10151
|
+
"version": "10.0.1",
|
|
10152
|
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
|
|
10153
|
+
"integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
|
|
10154
|
+
"dependencies": {
|
|
10155
|
+
"@types/mdast": "^3.0.0",
|
|
10156
|
+
"mdast-util-from-markdown": "^1.0.0",
|
|
10157
|
+
"unified": "^10.0.0"
|
|
10158
|
+
},
|
|
10159
|
+
"funding": {
|
|
10160
|
+
"type": "opencollective",
|
|
10161
|
+
"url": "https://opencollective.com/unified"
|
|
10162
|
+
}
|
|
10163
|
+
},
|
|
10164
|
+
"node_modules/react-markdown/node_modules/space-separated-tokens": {
|
|
10165
|
+
"version": "2.0.2",
|
|
10166
|
+
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
|
|
10167
|
+
"integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
|
|
10168
|
+
"funding": {
|
|
10169
|
+
"type": "github",
|
|
10170
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10171
|
+
}
|
|
10172
|
+
},
|
|
10173
|
+
"node_modules/react-markdown/node_modules/style-to-object": {
|
|
10174
|
+
"version": "0.4.1",
|
|
10175
|
+
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz",
|
|
10176
|
+
"integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==",
|
|
10177
|
+
"dependencies": {
|
|
10178
|
+
"inline-style-parser": "0.1.1"
|
|
10179
|
+
}
|
|
10180
|
+
},
|
|
10181
|
+
"node_modules/react-markdown/node_modules/trough": {
|
|
10182
|
+
"version": "2.1.0",
|
|
10183
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
|
|
10184
|
+
"integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==",
|
|
10185
|
+
"funding": {
|
|
10186
|
+
"type": "github",
|
|
10187
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10188
|
+
}
|
|
10189
|
+
},
|
|
10190
|
+
"node_modules/react-markdown/node_modules/unified": {
|
|
10191
|
+
"version": "10.1.2",
|
|
10192
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
|
|
10193
|
+
"integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
|
|
10194
|
+
"dependencies": {
|
|
10195
|
+
"@types/unist": "^2.0.0",
|
|
10196
|
+
"bail": "^2.0.0",
|
|
10197
|
+
"extend": "^3.0.0",
|
|
10198
|
+
"is-buffer": "^2.0.0",
|
|
10199
|
+
"is-plain-obj": "^4.0.0",
|
|
10200
|
+
"trough": "^2.0.0",
|
|
10201
|
+
"vfile": "^5.0.0"
|
|
10202
|
+
},
|
|
10203
|
+
"funding": {
|
|
10204
|
+
"type": "opencollective",
|
|
10205
|
+
"url": "https://opencollective.com/unified"
|
|
10206
|
+
}
|
|
10207
|
+
},
|
|
10208
|
+
"node_modules/react-markdown/node_modules/unist-util-is": {
|
|
10209
|
+
"version": "5.2.1",
|
|
10210
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz",
|
|
10211
|
+
"integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==",
|
|
10212
|
+
"dependencies": {
|
|
10213
|
+
"@types/unist": "^2.0.0"
|
|
10214
|
+
},
|
|
10215
|
+
"funding": {
|
|
10216
|
+
"type": "opencollective",
|
|
10217
|
+
"url": "https://opencollective.com/unified"
|
|
10218
|
+
}
|
|
10219
|
+
},
|
|
10220
|
+
"node_modules/react-markdown/node_modules/unist-util-stringify-position": {
|
|
10221
|
+
"version": "3.0.3",
|
|
10222
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
10223
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
10224
|
+
"dependencies": {
|
|
10225
|
+
"@types/unist": "^2.0.0"
|
|
10226
|
+
},
|
|
10227
|
+
"funding": {
|
|
10228
|
+
"type": "opencollective",
|
|
10229
|
+
"url": "https://opencollective.com/unified"
|
|
10230
|
+
}
|
|
10231
|
+
},
|
|
10232
|
+
"node_modules/react-markdown/node_modules/unist-util-visit": {
|
|
10233
|
+
"version": "4.1.2",
|
|
10234
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz",
|
|
10235
|
+
"integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==",
|
|
10236
|
+
"dependencies": {
|
|
10237
|
+
"@types/unist": "^2.0.0",
|
|
10238
|
+
"unist-util-is": "^5.0.0",
|
|
10239
|
+
"unist-util-visit-parents": "^5.1.1"
|
|
10240
|
+
},
|
|
10241
|
+
"funding": {
|
|
10242
|
+
"type": "opencollective",
|
|
10243
|
+
"url": "https://opencollective.com/unified"
|
|
10244
|
+
}
|
|
10245
|
+
},
|
|
10246
|
+
"node_modules/react-markdown/node_modules/unist-util-visit-parents": {
|
|
10247
|
+
"version": "5.1.3",
|
|
10248
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
|
|
10249
|
+
"integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
|
|
10250
|
+
"dependencies": {
|
|
10251
|
+
"@types/unist": "^2.0.0",
|
|
10252
|
+
"unist-util-is": "^5.0.0"
|
|
10253
|
+
},
|
|
10254
|
+
"funding": {
|
|
10255
|
+
"type": "opencollective",
|
|
10256
|
+
"url": "https://opencollective.com/unified"
|
|
10257
|
+
}
|
|
10258
|
+
},
|
|
10259
|
+
"node_modules/react-markdown/node_modules/vfile": {
|
|
10260
|
+
"version": "5.3.7",
|
|
10261
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz",
|
|
10262
|
+
"integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==",
|
|
10263
|
+
"dependencies": {
|
|
10264
|
+
"@types/unist": "^2.0.0",
|
|
10265
|
+
"is-buffer": "^2.0.0",
|
|
10266
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
10267
|
+
"vfile-message": "^3.0.0"
|
|
10268
|
+
},
|
|
10269
|
+
"funding": {
|
|
10270
|
+
"type": "opencollective",
|
|
10271
|
+
"url": "https://opencollective.com/unified"
|
|
10272
|
+
}
|
|
10273
|
+
},
|
|
10274
|
+
"node_modules/react-markdown/node_modules/vfile-message": {
|
|
10275
|
+
"version": "3.1.4",
|
|
10276
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz",
|
|
10277
|
+
"integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==",
|
|
10278
|
+
"dependencies": {
|
|
10279
|
+
"@types/unist": "^2.0.0",
|
|
10280
|
+
"unist-util-stringify-position": "^3.0.0"
|
|
10281
|
+
},
|
|
10282
|
+
"funding": {
|
|
10283
|
+
"type": "opencollective",
|
|
10284
|
+
"url": "https://opencollective.com/unified"
|
|
10285
|
+
}
|
|
10286
|
+
},
|
|
10287
|
+
"node_modules/react-modal": {
|
|
10288
|
+
"version": "3.16.1",
|
|
10289
|
+
"resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz",
|
|
10290
|
+
"integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==",
|
|
10291
|
+
"dependencies": {
|
|
10292
|
+
"exenv": "^1.2.0",
|
|
10293
|
+
"prop-types": "^15.7.2",
|
|
10294
|
+
"react-lifecycles-compat": "^3.0.0",
|
|
10295
|
+
"warning": "^4.0.3"
|
|
10296
|
+
},
|
|
10297
|
+
"engines": {
|
|
10298
|
+
"node": ">=8"
|
|
10299
|
+
},
|
|
10300
|
+
"peerDependencies": {
|
|
10301
|
+
"react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18",
|
|
10302
|
+
"react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18"
|
|
10303
|
+
}
|
|
10304
|
+
},
|
|
9509
10305
|
"node_modules/react-router": {
|
|
9510
10306
|
"version": "5.3.4",
|
|
9511
10307
|
"resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz",
|
|
@@ -9877,6 +10673,201 @@
|
|
|
9877
10673
|
"url": "https://opencollective.com/unified"
|
|
9878
10674
|
}
|
|
9879
10675
|
},
|
|
10676
|
+
"node_modules/remark-rehype": {
|
|
10677
|
+
"version": "10.1.0",
|
|
10678
|
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz",
|
|
10679
|
+
"integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==",
|
|
10680
|
+
"dependencies": {
|
|
10681
|
+
"@types/hast": "^2.0.0",
|
|
10682
|
+
"@types/mdast": "^3.0.0",
|
|
10683
|
+
"mdast-util-to-hast": "^12.1.0",
|
|
10684
|
+
"unified": "^10.0.0"
|
|
10685
|
+
},
|
|
10686
|
+
"funding": {
|
|
10687
|
+
"type": "opencollective",
|
|
10688
|
+
"url": "https://opencollective.com/unified"
|
|
10689
|
+
}
|
|
10690
|
+
},
|
|
10691
|
+
"node_modules/remark-rehype/node_modules/bail": {
|
|
10692
|
+
"version": "2.0.2",
|
|
10693
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
10694
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
|
|
10695
|
+
"funding": {
|
|
10696
|
+
"type": "github",
|
|
10697
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10698
|
+
}
|
|
10699
|
+
},
|
|
10700
|
+
"node_modules/remark-rehype/node_modules/is-plain-obj": {
|
|
10701
|
+
"version": "4.1.0",
|
|
10702
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
10703
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
10704
|
+
"engines": {
|
|
10705
|
+
"node": ">=12"
|
|
10706
|
+
},
|
|
10707
|
+
"funding": {
|
|
10708
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
10709
|
+
}
|
|
10710
|
+
},
|
|
10711
|
+
"node_modules/remark-rehype/node_modules/mdast-util-definitions": {
|
|
10712
|
+
"version": "5.1.2",
|
|
10713
|
+
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz",
|
|
10714
|
+
"integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==",
|
|
10715
|
+
"dependencies": {
|
|
10716
|
+
"@types/mdast": "^3.0.0",
|
|
10717
|
+
"@types/unist": "^2.0.0",
|
|
10718
|
+
"unist-util-visit": "^4.0.0"
|
|
10719
|
+
},
|
|
10720
|
+
"funding": {
|
|
10721
|
+
"type": "opencollective",
|
|
10722
|
+
"url": "https://opencollective.com/unified"
|
|
10723
|
+
}
|
|
10724
|
+
},
|
|
10725
|
+
"node_modules/remark-rehype/node_modules/mdast-util-to-hast": {
|
|
10726
|
+
"version": "12.3.0",
|
|
10727
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz",
|
|
10728
|
+
"integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==",
|
|
10729
|
+
"dependencies": {
|
|
10730
|
+
"@types/hast": "^2.0.0",
|
|
10731
|
+
"@types/mdast": "^3.0.0",
|
|
10732
|
+
"mdast-util-definitions": "^5.0.0",
|
|
10733
|
+
"micromark-util-sanitize-uri": "^1.1.0",
|
|
10734
|
+
"trim-lines": "^3.0.0",
|
|
10735
|
+
"unist-util-generated": "^2.0.0",
|
|
10736
|
+
"unist-util-position": "^4.0.0",
|
|
10737
|
+
"unist-util-visit": "^4.0.0"
|
|
10738
|
+
},
|
|
10739
|
+
"funding": {
|
|
10740
|
+
"type": "opencollective",
|
|
10741
|
+
"url": "https://opencollective.com/unified"
|
|
10742
|
+
}
|
|
10743
|
+
},
|
|
10744
|
+
"node_modules/remark-rehype/node_modules/trough": {
|
|
10745
|
+
"version": "2.1.0",
|
|
10746
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
|
|
10747
|
+
"integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==",
|
|
10748
|
+
"funding": {
|
|
10749
|
+
"type": "github",
|
|
10750
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
10751
|
+
}
|
|
10752
|
+
},
|
|
10753
|
+
"node_modules/remark-rehype/node_modules/unified": {
|
|
10754
|
+
"version": "10.1.2",
|
|
10755
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
|
|
10756
|
+
"integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
|
|
10757
|
+
"dependencies": {
|
|
10758
|
+
"@types/unist": "^2.0.0",
|
|
10759
|
+
"bail": "^2.0.0",
|
|
10760
|
+
"extend": "^3.0.0",
|
|
10761
|
+
"is-buffer": "^2.0.0",
|
|
10762
|
+
"is-plain-obj": "^4.0.0",
|
|
10763
|
+
"trough": "^2.0.0",
|
|
10764
|
+
"vfile": "^5.0.0"
|
|
10765
|
+
},
|
|
10766
|
+
"funding": {
|
|
10767
|
+
"type": "opencollective",
|
|
10768
|
+
"url": "https://opencollective.com/unified"
|
|
10769
|
+
}
|
|
10770
|
+
},
|
|
10771
|
+
"node_modules/remark-rehype/node_modules/unist-util-generated": {
|
|
10772
|
+
"version": "2.0.1",
|
|
10773
|
+
"resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz",
|
|
10774
|
+
"integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==",
|
|
10775
|
+
"funding": {
|
|
10776
|
+
"type": "opencollective",
|
|
10777
|
+
"url": "https://opencollective.com/unified"
|
|
10778
|
+
}
|
|
10779
|
+
},
|
|
10780
|
+
"node_modules/remark-rehype/node_modules/unist-util-is": {
|
|
10781
|
+
"version": "5.2.1",
|
|
10782
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz",
|
|
10783
|
+
"integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==",
|
|
10784
|
+
"dependencies": {
|
|
10785
|
+
"@types/unist": "^2.0.0"
|
|
10786
|
+
},
|
|
10787
|
+
"funding": {
|
|
10788
|
+
"type": "opencollective",
|
|
10789
|
+
"url": "https://opencollective.com/unified"
|
|
10790
|
+
}
|
|
10791
|
+
},
|
|
10792
|
+
"node_modules/remark-rehype/node_modules/unist-util-position": {
|
|
10793
|
+
"version": "4.0.4",
|
|
10794
|
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz",
|
|
10795
|
+
"integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==",
|
|
10796
|
+
"dependencies": {
|
|
10797
|
+
"@types/unist": "^2.0.0"
|
|
10798
|
+
},
|
|
10799
|
+
"funding": {
|
|
10800
|
+
"type": "opencollective",
|
|
10801
|
+
"url": "https://opencollective.com/unified"
|
|
10802
|
+
}
|
|
10803
|
+
},
|
|
10804
|
+
"node_modules/remark-rehype/node_modules/unist-util-stringify-position": {
|
|
10805
|
+
"version": "3.0.3",
|
|
10806
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
10807
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
10808
|
+
"dependencies": {
|
|
10809
|
+
"@types/unist": "^2.0.0"
|
|
10810
|
+
},
|
|
10811
|
+
"funding": {
|
|
10812
|
+
"type": "opencollective",
|
|
10813
|
+
"url": "https://opencollective.com/unified"
|
|
10814
|
+
}
|
|
10815
|
+
},
|
|
10816
|
+
"node_modules/remark-rehype/node_modules/unist-util-visit": {
|
|
10817
|
+
"version": "4.1.2",
|
|
10818
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz",
|
|
10819
|
+
"integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==",
|
|
10820
|
+
"dependencies": {
|
|
10821
|
+
"@types/unist": "^2.0.0",
|
|
10822
|
+
"unist-util-is": "^5.0.0",
|
|
10823
|
+
"unist-util-visit-parents": "^5.1.1"
|
|
10824
|
+
},
|
|
10825
|
+
"funding": {
|
|
10826
|
+
"type": "opencollective",
|
|
10827
|
+
"url": "https://opencollective.com/unified"
|
|
10828
|
+
}
|
|
10829
|
+
},
|
|
10830
|
+
"node_modules/remark-rehype/node_modules/unist-util-visit-parents": {
|
|
10831
|
+
"version": "5.1.3",
|
|
10832
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
|
|
10833
|
+
"integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
|
|
10834
|
+
"dependencies": {
|
|
10835
|
+
"@types/unist": "^2.0.0",
|
|
10836
|
+
"unist-util-is": "^5.0.0"
|
|
10837
|
+
},
|
|
10838
|
+
"funding": {
|
|
10839
|
+
"type": "opencollective",
|
|
10840
|
+
"url": "https://opencollective.com/unified"
|
|
10841
|
+
}
|
|
10842
|
+
},
|
|
10843
|
+
"node_modules/remark-rehype/node_modules/vfile": {
|
|
10844
|
+
"version": "5.3.7",
|
|
10845
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz",
|
|
10846
|
+
"integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==",
|
|
10847
|
+
"dependencies": {
|
|
10848
|
+
"@types/unist": "^2.0.0",
|
|
10849
|
+
"is-buffer": "^2.0.0",
|
|
10850
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
10851
|
+
"vfile-message": "^3.0.0"
|
|
10852
|
+
},
|
|
10853
|
+
"funding": {
|
|
10854
|
+
"type": "opencollective",
|
|
10855
|
+
"url": "https://opencollective.com/unified"
|
|
10856
|
+
}
|
|
10857
|
+
},
|
|
10858
|
+
"node_modules/remark-rehype/node_modules/vfile-message": {
|
|
10859
|
+
"version": "3.1.4",
|
|
10860
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz",
|
|
10861
|
+
"integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==",
|
|
10862
|
+
"dependencies": {
|
|
10863
|
+
"@types/unist": "^2.0.0",
|
|
10864
|
+
"unist-util-stringify-position": "^3.0.0"
|
|
10865
|
+
},
|
|
10866
|
+
"funding": {
|
|
10867
|
+
"type": "opencollective",
|
|
10868
|
+
"url": "https://opencollective.com/unified"
|
|
10869
|
+
}
|
|
10870
|
+
},
|
|
9880
10871
|
"node_modules/remark-squeeze-paragraphs": {
|
|
9881
10872
|
"version": "4.0.0",
|
|
9882
10873
|
"resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz",
|
|
@@ -10185,6 +11176,17 @@
|
|
|
10185
11176
|
"tslib": "^2.1.0"
|
|
10186
11177
|
}
|
|
10187
11178
|
},
|
|
11179
|
+
"node_modules/sade": {
|
|
11180
|
+
"version": "1.8.1",
|
|
11181
|
+
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
|
|
11182
|
+
"integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
|
|
11183
|
+
"dependencies": {
|
|
11184
|
+
"mri": "^1.1.0"
|
|
11185
|
+
},
|
|
11186
|
+
"engines": {
|
|
11187
|
+
"node": ">=6"
|
|
11188
|
+
}
|
|
11189
|
+
},
|
|
10188
11190
|
"node_modules/safe-buffer": {
|
|
10189
11191
|
"version": "5.2.1",
|
|
10190
11192
|
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
@@ -11132,6 +12134,15 @@
|
|
|
11132
12134
|
"resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
|
|
11133
12135
|
"integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ=="
|
|
11134
12136
|
},
|
|
12137
|
+
"node_modules/trim-lines": {
|
|
12138
|
+
"version": "3.0.1",
|
|
12139
|
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
|
12140
|
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
|
|
12141
|
+
"funding": {
|
|
12142
|
+
"type": "github",
|
|
12143
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
12144
|
+
}
|
|
12145
|
+
},
|
|
11135
12146
|
"node_modules/trim-trailing-lines": {
|
|
11136
12147
|
"version": "1.1.4",
|
|
11137
12148
|
"resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz",
|
|
@@ -11217,6 +12228,26 @@
|
|
|
11217
12228
|
"node": ">=4.2.0"
|
|
11218
12229
|
}
|
|
11219
12230
|
},
|
|
12231
|
+
"node_modules/typesense": {
|
|
12232
|
+
"version": "1.5.3",
|
|
12233
|
+
"resolved": "https://registry.npmjs.org/typesense/-/typesense-1.5.3.tgz",
|
|
12234
|
+
"integrity": "sha512-eLHBP6AHex04tT+q/a7Uc+dFjIuoKTRpvlsNJwVTyedh4n0qnJxbfoLJBCxzhhZn5eITjEK0oWvVZ5byc3E+Ww==",
|
|
12235
|
+
"dependencies": {
|
|
12236
|
+
"axios": "^0.26.0",
|
|
12237
|
+
"loglevel": "^1.8.0"
|
|
12238
|
+
},
|
|
12239
|
+
"peerDependencies": {
|
|
12240
|
+
"@babel/runtime": "^7.17.2"
|
|
12241
|
+
}
|
|
12242
|
+
},
|
|
12243
|
+
"node_modules/typesense/node_modules/axios": {
|
|
12244
|
+
"version": "0.26.1",
|
|
12245
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
|
|
12246
|
+
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
|
|
12247
|
+
"dependencies": {
|
|
12248
|
+
"follow-redirects": "^1.14.8"
|
|
12249
|
+
}
|
|
12250
|
+
},
|
|
11220
12251
|
"node_modules/ua-parser-js": {
|
|
11221
12252
|
"version": "0.7.32",
|
|
11222
12253
|
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz",
|
|
@@ -11727,6 +12758,31 @@
|
|
|
11727
12758
|
"uuid": "dist/bin/uuid"
|
|
11728
12759
|
}
|
|
11729
12760
|
},
|
|
12761
|
+
"node_modules/uvu": {
|
|
12762
|
+
"version": "0.5.6",
|
|
12763
|
+
"resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz",
|
|
12764
|
+
"integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==",
|
|
12765
|
+
"dependencies": {
|
|
12766
|
+
"dequal": "^2.0.0",
|
|
12767
|
+
"diff": "^5.0.0",
|
|
12768
|
+
"kleur": "^4.0.3",
|
|
12769
|
+
"sade": "^1.7.3"
|
|
12770
|
+
},
|
|
12771
|
+
"bin": {
|
|
12772
|
+
"uvu": "bin.js"
|
|
12773
|
+
},
|
|
12774
|
+
"engines": {
|
|
12775
|
+
"node": ">=8"
|
|
12776
|
+
}
|
|
12777
|
+
},
|
|
12778
|
+
"node_modules/uvu/node_modules/kleur": {
|
|
12779
|
+
"version": "4.1.5",
|
|
12780
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
|
|
12781
|
+
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
|
|
12782
|
+
"engines": {
|
|
12783
|
+
"node": ">=6"
|
|
12784
|
+
}
|
|
12785
|
+
},
|
|
11730
12786
|
"node_modules/value-equal": {
|
|
11731
12787
|
"version": "1.0.1",
|
|
11732
12788
|
"resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
|
|
@@ -11795,6 +12851,14 @@
|
|
|
11795
12851
|
"node": ">=10.0.0"
|
|
11796
12852
|
}
|
|
11797
12853
|
},
|
|
12854
|
+
"node_modules/warning": {
|
|
12855
|
+
"version": "4.0.3",
|
|
12856
|
+
"resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
|
|
12857
|
+
"integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
|
|
12858
|
+
"dependencies": {
|
|
12859
|
+
"loose-envify": "^1.0.0"
|
|
12860
|
+
}
|
|
12861
|
+
},
|
|
11798
12862
|
"node_modules/watchpack": {
|
|
11799
12863
|
"version": "2.4.0",
|
|
11800
12864
|
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
|
|
@@ -14626,6 +15690,14 @@
|
|
|
14626
15690
|
"@types/node": "*"
|
|
14627
15691
|
}
|
|
14628
15692
|
},
|
|
15693
|
+
"@types/debug": {
|
|
15694
|
+
"version": "4.1.7",
|
|
15695
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
|
|
15696
|
+
"integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==",
|
|
15697
|
+
"requires": {
|
|
15698
|
+
"@types/ms": "*"
|
|
15699
|
+
}
|
|
15700
|
+
},
|
|
14629
15701
|
"@types/eslint": {
|
|
14630
15702
|
"version": "8.4.10",
|
|
14631
15703
|
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz",
|
|
@@ -14735,6 +15807,11 @@
|
|
|
14735
15807
|
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz",
|
|
14736
15808
|
"integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
|
|
14737
15809
|
},
|
|
15810
|
+
"@types/ms": {
|
|
15811
|
+
"version": "0.7.31",
|
|
15812
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz",
|
|
15813
|
+
"integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
|
|
15814
|
+
},
|
|
14738
15815
|
"@types/node": {
|
|
14739
15816
|
"version": "18.11.10",
|
|
14740
15817
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.10.tgz",
|
|
@@ -16172,6 +17249,21 @@
|
|
|
16172
17249
|
"ms": "2.1.2"
|
|
16173
17250
|
}
|
|
16174
17251
|
},
|
|
17252
|
+
"decode-named-character-reference": {
|
|
17253
|
+
"version": "1.0.2",
|
|
17254
|
+
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz",
|
|
17255
|
+
"integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==",
|
|
17256
|
+
"requires": {
|
|
17257
|
+
"character-entities": "^2.0.0"
|
|
17258
|
+
},
|
|
17259
|
+
"dependencies": {
|
|
17260
|
+
"character-entities": {
|
|
17261
|
+
"version": "2.0.2",
|
|
17262
|
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
17263
|
+
"integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ=="
|
|
17264
|
+
}
|
|
17265
|
+
}
|
|
17266
|
+
},
|
|
16175
17267
|
"decompress-response": {
|
|
16176
17268
|
"version": "3.3.0",
|
|
16177
17269
|
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
|
|
@@ -16237,6 +17329,11 @@
|
|
|
16237
17329
|
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
|
16238
17330
|
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
|
|
16239
17331
|
},
|
|
17332
|
+
"dequal": {
|
|
17333
|
+
"version": "2.0.3",
|
|
17334
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
17335
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="
|
|
17336
|
+
},
|
|
16240
17337
|
"destroy": {
|
|
16241
17338
|
"version": "1.2.0",
|
|
16242
17339
|
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
|
@@ -16288,6 +17385,11 @@
|
|
|
16288
17385
|
}
|
|
16289
17386
|
}
|
|
16290
17387
|
},
|
|
17388
|
+
"diff": {
|
|
17389
|
+
"version": "5.1.0",
|
|
17390
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz",
|
|
17391
|
+
"integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw=="
|
|
17392
|
+
},
|
|
16291
17393
|
"dir-glob": {
|
|
16292
17394
|
"version": "3.0.1",
|
|
16293
17395
|
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
|
|
@@ -16436,6 +17538,16 @@
|
|
|
16436
17538
|
"tapable": "^2.2.0"
|
|
16437
17539
|
}
|
|
16438
17540
|
},
|
|
17541
|
+
"enhancedocs-search": {
|
|
17542
|
+
"version": "0.1.3",
|
|
17543
|
+
"resolved": "https://registry.npmjs.org/enhancedocs-search/-/enhancedocs-search-0.1.3.tgz",
|
|
17544
|
+
"integrity": "sha512-gKAZV8b9tosT0bKzw+3KOUULg0SthmrDxzdUPSUspIMiz+rtgMYpEr5ziX77BMOCI9CALruxTMckEzd+8eDSmQ==",
|
|
17545
|
+
"requires": {
|
|
17546
|
+
"react-markdown": "^8.0.6",
|
|
17547
|
+
"react-modal": "^3.16.1",
|
|
17548
|
+
"typesense": "^1.5.3"
|
|
17549
|
+
}
|
|
17550
|
+
},
|
|
16439
17551
|
"entities": {
|
|
16440
17552
|
"version": "4.4.0",
|
|
16441
17553
|
"resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
|
|
@@ -16565,6 +17677,11 @@
|
|
|
16565
17677
|
}
|
|
16566
17678
|
}
|
|
16567
17679
|
},
|
|
17680
|
+
"exenv": {
|
|
17681
|
+
"version": "1.2.2",
|
|
17682
|
+
"resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz",
|
|
17683
|
+
"integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw=="
|
|
17684
|
+
},
|
|
16568
17685
|
"express": {
|
|
16569
17686
|
"version": "4.18.2",
|
|
16570
17687
|
"resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
|
|
@@ -17222,6 +18339,11 @@
|
|
|
17222
18339
|
"zwitch": "^1.0.0"
|
|
17223
18340
|
}
|
|
17224
18341
|
},
|
|
18342
|
+
"hast-util-whitespace": {
|
|
18343
|
+
"version": "2.0.1",
|
|
18344
|
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz",
|
|
18345
|
+
"integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng=="
|
|
18346
|
+
},
|
|
17225
18347
|
"hastscript": {
|
|
17226
18348
|
"version": "6.0.0",
|
|
17227
18349
|
"resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
|
|
@@ -17918,6 +19040,11 @@
|
|
|
17918
19040
|
"resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
|
|
17919
19041
|
"integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ=="
|
|
17920
19042
|
},
|
|
19043
|
+
"loglevel": {
|
|
19044
|
+
"version": "1.8.1",
|
|
19045
|
+
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.1.tgz",
|
|
19046
|
+
"integrity": "sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg=="
|
|
19047
|
+
},
|
|
17921
19048
|
"loose-envify": {
|
|
17922
19049
|
"version": "1.4.0",
|
|
17923
19050
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
@@ -17983,6 +19110,43 @@
|
|
|
17983
19110
|
"unist-util-visit": "^2.0.0"
|
|
17984
19111
|
}
|
|
17985
19112
|
},
|
|
19113
|
+
"mdast-util-from-markdown": {
|
|
19114
|
+
"version": "1.3.0",
|
|
19115
|
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.0.tgz",
|
|
19116
|
+
"integrity": "sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==",
|
|
19117
|
+
"requires": {
|
|
19118
|
+
"@types/mdast": "^3.0.0",
|
|
19119
|
+
"@types/unist": "^2.0.0",
|
|
19120
|
+
"decode-named-character-reference": "^1.0.0",
|
|
19121
|
+
"mdast-util-to-string": "^3.1.0",
|
|
19122
|
+
"micromark": "^3.0.0",
|
|
19123
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
19124
|
+
"micromark-util-decode-string": "^1.0.0",
|
|
19125
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
19126
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19127
|
+
"micromark-util-types": "^1.0.0",
|
|
19128
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
19129
|
+
"uvu": "^0.5.0"
|
|
19130
|
+
},
|
|
19131
|
+
"dependencies": {
|
|
19132
|
+
"mdast-util-to-string": {
|
|
19133
|
+
"version": "3.1.1",
|
|
19134
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.1.tgz",
|
|
19135
|
+
"integrity": "sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==",
|
|
19136
|
+
"requires": {
|
|
19137
|
+
"@types/mdast": "^3.0.0"
|
|
19138
|
+
}
|
|
19139
|
+
},
|
|
19140
|
+
"unist-util-stringify-position": {
|
|
19141
|
+
"version": "3.0.3",
|
|
19142
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
19143
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
19144
|
+
"requires": {
|
|
19145
|
+
"@types/unist": "^2.0.0"
|
|
19146
|
+
}
|
|
19147
|
+
}
|
|
19148
|
+
}
|
|
19149
|
+
},
|
|
17986
19150
|
"mdast-util-to-hast": {
|
|
17987
19151
|
"version": "10.0.1",
|
|
17988
19152
|
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz",
|
|
@@ -18046,6 +19210,218 @@
|
|
|
18046
19210
|
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
|
18047
19211
|
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
|
|
18048
19212
|
},
|
|
19213
|
+
"micromark": {
|
|
19214
|
+
"version": "3.1.0",
|
|
19215
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz",
|
|
19216
|
+
"integrity": "sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==",
|
|
19217
|
+
"requires": {
|
|
19218
|
+
"@types/debug": "^4.0.0",
|
|
19219
|
+
"debug": "^4.0.0",
|
|
19220
|
+
"decode-named-character-reference": "^1.0.0",
|
|
19221
|
+
"micromark-core-commonmark": "^1.0.1",
|
|
19222
|
+
"micromark-factory-space": "^1.0.0",
|
|
19223
|
+
"micromark-util-character": "^1.0.0",
|
|
19224
|
+
"micromark-util-chunked": "^1.0.0",
|
|
19225
|
+
"micromark-util-combine-extensions": "^1.0.0",
|
|
19226
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
19227
|
+
"micromark-util-encode": "^1.0.0",
|
|
19228
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
19229
|
+
"micromark-util-resolve-all": "^1.0.0",
|
|
19230
|
+
"micromark-util-sanitize-uri": "^1.0.0",
|
|
19231
|
+
"micromark-util-subtokenize": "^1.0.0",
|
|
19232
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19233
|
+
"micromark-util-types": "^1.0.1",
|
|
19234
|
+
"uvu": "^0.5.0"
|
|
19235
|
+
}
|
|
19236
|
+
},
|
|
19237
|
+
"micromark-core-commonmark": {
|
|
19238
|
+
"version": "1.0.6",
|
|
19239
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz",
|
|
19240
|
+
"integrity": "sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==",
|
|
19241
|
+
"requires": {
|
|
19242
|
+
"decode-named-character-reference": "^1.0.0",
|
|
19243
|
+
"micromark-factory-destination": "^1.0.0",
|
|
19244
|
+
"micromark-factory-label": "^1.0.0",
|
|
19245
|
+
"micromark-factory-space": "^1.0.0",
|
|
19246
|
+
"micromark-factory-title": "^1.0.0",
|
|
19247
|
+
"micromark-factory-whitespace": "^1.0.0",
|
|
19248
|
+
"micromark-util-character": "^1.0.0",
|
|
19249
|
+
"micromark-util-chunked": "^1.0.0",
|
|
19250
|
+
"micromark-util-classify-character": "^1.0.0",
|
|
19251
|
+
"micromark-util-html-tag-name": "^1.0.0",
|
|
19252
|
+
"micromark-util-normalize-identifier": "^1.0.0",
|
|
19253
|
+
"micromark-util-resolve-all": "^1.0.0",
|
|
19254
|
+
"micromark-util-subtokenize": "^1.0.0",
|
|
19255
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19256
|
+
"micromark-util-types": "^1.0.1",
|
|
19257
|
+
"uvu": "^0.5.0"
|
|
19258
|
+
}
|
|
19259
|
+
},
|
|
19260
|
+
"micromark-factory-destination": {
|
|
19261
|
+
"version": "1.0.0",
|
|
19262
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz",
|
|
19263
|
+
"integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==",
|
|
19264
|
+
"requires": {
|
|
19265
|
+
"micromark-util-character": "^1.0.0",
|
|
19266
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19267
|
+
"micromark-util-types": "^1.0.0"
|
|
19268
|
+
}
|
|
19269
|
+
},
|
|
19270
|
+
"micromark-factory-label": {
|
|
19271
|
+
"version": "1.0.2",
|
|
19272
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz",
|
|
19273
|
+
"integrity": "sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==",
|
|
19274
|
+
"requires": {
|
|
19275
|
+
"micromark-util-character": "^1.0.0",
|
|
19276
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19277
|
+
"micromark-util-types": "^1.0.0",
|
|
19278
|
+
"uvu": "^0.5.0"
|
|
19279
|
+
}
|
|
19280
|
+
},
|
|
19281
|
+
"micromark-factory-space": {
|
|
19282
|
+
"version": "1.0.0",
|
|
19283
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz",
|
|
19284
|
+
"integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==",
|
|
19285
|
+
"requires": {
|
|
19286
|
+
"micromark-util-character": "^1.0.0",
|
|
19287
|
+
"micromark-util-types": "^1.0.0"
|
|
19288
|
+
}
|
|
19289
|
+
},
|
|
19290
|
+
"micromark-factory-title": {
|
|
19291
|
+
"version": "1.0.2",
|
|
19292
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz",
|
|
19293
|
+
"integrity": "sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==",
|
|
19294
|
+
"requires": {
|
|
19295
|
+
"micromark-factory-space": "^1.0.0",
|
|
19296
|
+
"micromark-util-character": "^1.0.0",
|
|
19297
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19298
|
+
"micromark-util-types": "^1.0.0",
|
|
19299
|
+
"uvu": "^0.5.0"
|
|
19300
|
+
}
|
|
19301
|
+
},
|
|
19302
|
+
"micromark-factory-whitespace": {
|
|
19303
|
+
"version": "1.0.0",
|
|
19304
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz",
|
|
19305
|
+
"integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==",
|
|
19306
|
+
"requires": {
|
|
19307
|
+
"micromark-factory-space": "^1.0.0",
|
|
19308
|
+
"micromark-util-character": "^1.0.0",
|
|
19309
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19310
|
+
"micromark-util-types": "^1.0.0"
|
|
19311
|
+
}
|
|
19312
|
+
},
|
|
19313
|
+
"micromark-util-character": {
|
|
19314
|
+
"version": "1.1.0",
|
|
19315
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz",
|
|
19316
|
+
"integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==",
|
|
19317
|
+
"requires": {
|
|
19318
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19319
|
+
"micromark-util-types": "^1.0.0"
|
|
19320
|
+
}
|
|
19321
|
+
},
|
|
19322
|
+
"micromark-util-chunked": {
|
|
19323
|
+
"version": "1.0.0",
|
|
19324
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz",
|
|
19325
|
+
"integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==",
|
|
19326
|
+
"requires": {
|
|
19327
|
+
"micromark-util-symbol": "^1.0.0"
|
|
19328
|
+
}
|
|
19329
|
+
},
|
|
19330
|
+
"micromark-util-classify-character": {
|
|
19331
|
+
"version": "1.0.0",
|
|
19332
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz",
|
|
19333
|
+
"integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==",
|
|
19334
|
+
"requires": {
|
|
19335
|
+
"micromark-util-character": "^1.0.0",
|
|
19336
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19337
|
+
"micromark-util-types": "^1.0.0"
|
|
19338
|
+
}
|
|
19339
|
+
},
|
|
19340
|
+
"micromark-util-combine-extensions": {
|
|
19341
|
+
"version": "1.0.0",
|
|
19342
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz",
|
|
19343
|
+
"integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==",
|
|
19344
|
+
"requires": {
|
|
19345
|
+
"micromark-util-chunked": "^1.0.0",
|
|
19346
|
+
"micromark-util-types": "^1.0.0"
|
|
19347
|
+
}
|
|
19348
|
+
},
|
|
19349
|
+
"micromark-util-decode-numeric-character-reference": {
|
|
19350
|
+
"version": "1.0.0",
|
|
19351
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz",
|
|
19352
|
+
"integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==",
|
|
19353
|
+
"requires": {
|
|
19354
|
+
"micromark-util-symbol": "^1.0.0"
|
|
19355
|
+
}
|
|
19356
|
+
},
|
|
19357
|
+
"micromark-util-decode-string": {
|
|
19358
|
+
"version": "1.0.2",
|
|
19359
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz",
|
|
19360
|
+
"integrity": "sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==",
|
|
19361
|
+
"requires": {
|
|
19362
|
+
"decode-named-character-reference": "^1.0.0",
|
|
19363
|
+
"micromark-util-character": "^1.0.0",
|
|
19364
|
+
"micromark-util-decode-numeric-character-reference": "^1.0.0",
|
|
19365
|
+
"micromark-util-symbol": "^1.0.0"
|
|
19366
|
+
}
|
|
19367
|
+
},
|
|
19368
|
+
"micromark-util-encode": {
|
|
19369
|
+
"version": "1.0.1",
|
|
19370
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz",
|
|
19371
|
+
"integrity": "sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA=="
|
|
19372
|
+
},
|
|
19373
|
+
"micromark-util-html-tag-name": {
|
|
19374
|
+
"version": "1.1.0",
|
|
19375
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz",
|
|
19376
|
+
"integrity": "sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA=="
|
|
19377
|
+
},
|
|
19378
|
+
"micromark-util-normalize-identifier": {
|
|
19379
|
+
"version": "1.0.0",
|
|
19380
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz",
|
|
19381
|
+
"integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==",
|
|
19382
|
+
"requires": {
|
|
19383
|
+
"micromark-util-symbol": "^1.0.0"
|
|
19384
|
+
}
|
|
19385
|
+
},
|
|
19386
|
+
"micromark-util-resolve-all": {
|
|
19387
|
+
"version": "1.0.0",
|
|
19388
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz",
|
|
19389
|
+
"integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==",
|
|
19390
|
+
"requires": {
|
|
19391
|
+
"micromark-util-types": "^1.0.0"
|
|
19392
|
+
}
|
|
19393
|
+
},
|
|
19394
|
+
"micromark-util-sanitize-uri": {
|
|
19395
|
+
"version": "1.1.0",
|
|
19396
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz",
|
|
19397
|
+
"integrity": "sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==",
|
|
19398
|
+
"requires": {
|
|
19399
|
+
"micromark-util-character": "^1.0.0",
|
|
19400
|
+
"micromark-util-encode": "^1.0.0",
|
|
19401
|
+
"micromark-util-symbol": "^1.0.0"
|
|
19402
|
+
}
|
|
19403
|
+
},
|
|
19404
|
+
"micromark-util-subtokenize": {
|
|
19405
|
+
"version": "1.0.2",
|
|
19406
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz",
|
|
19407
|
+
"integrity": "sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==",
|
|
19408
|
+
"requires": {
|
|
19409
|
+
"micromark-util-chunked": "^1.0.0",
|
|
19410
|
+
"micromark-util-symbol": "^1.0.0",
|
|
19411
|
+
"micromark-util-types": "^1.0.0",
|
|
19412
|
+
"uvu": "^0.5.0"
|
|
19413
|
+
}
|
|
19414
|
+
},
|
|
19415
|
+
"micromark-util-symbol": {
|
|
19416
|
+
"version": "1.0.1",
|
|
19417
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz",
|
|
19418
|
+
"integrity": "sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ=="
|
|
19419
|
+
},
|
|
19420
|
+
"micromark-util-types": {
|
|
19421
|
+
"version": "1.0.2",
|
|
19422
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz",
|
|
19423
|
+
"integrity": "sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w=="
|
|
19424
|
+
},
|
|
18049
19425
|
"micromatch": {
|
|
18050
19426
|
"version": "4.0.5",
|
|
18051
19427
|
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
|
|
@@ -18146,6 +19522,11 @@
|
|
|
18146
19522
|
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
|
|
18147
19523
|
"integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
|
|
18148
19524
|
},
|
|
19525
|
+
"mri": {
|
|
19526
|
+
"version": "1.2.0",
|
|
19527
|
+
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
|
19528
|
+
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="
|
|
19529
|
+
},
|
|
18149
19530
|
"mrmime": {
|
|
18150
19531
|
"version": "1.0.1",
|
|
18151
19532
|
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz",
|
|
@@ -19233,6 +20614,163 @@
|
|
|
19233
20614
|
"@babel/runtime": "^7.10.3"
|
|
19234
20615
|
}
|
|
19235
20616
|
},
|
|
20617
|
+
"react-markdown": {
|
|
20618
|
+
"version": "8.0.6",
|
|
20619
|
+
"resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.6.tgz",
|
|
20620
|
+
"integrity": "sha512-KgPWsYgHuftdx510wwIzpwf+5js/iHqBR+fzxefv8Khk3mFbnioF1bmL2idHN3ler0LMQmICKeDrWnZrX9mtbQ==",
|
|
20621
|
+
"requires": {
|
|
20622
|
+
"@types/hast": "^2.0.0",
|
|
20623
|
+
"@types/prop-types": "^15.0.0",
|
|
20624
|
+
"@types/unist": "^2.0.0",
|
|
20625
|
+
"comma-separated-tokens": "^2.0.0",
|
|
20626
|
+
"hast-util-whitespace": "^2.0.0",
|
|
20627
|
+
"prop-types": "^15.0.0",
|
|
20628
|
+
"property-information": "^6.0.0",
|
|
20629
|
+
"react-is": "^18.0.0",
|
|
20630
|
+
"remark-parse": "^10.0.0",
|
|
20631
|
+
"remark-rehype": "^10.0.0",
|
|
20632
|
+
"space-separated-tokens": "^2.0.0",
|
|
20633
|
+
"style-to-object": "^0.4.0",
|
|
20634
|
+
"unified": "^10.0.0",
|
|
20635
|
+
"unist-util-visit": "^4.0.0",
|
|
20636
|
+
"vfile": "^5.0.0"
|
|
20637
|
+
},
|
|
20638
|
+
"dependencies": {
|
|
20639
|
+
"bail": {
|
|
20640
|
+
"version": "2.0.2",
|
|
20641
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
20642
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="
|
|
20643
|
+
},
|
|
20644
|
+
"comma-separated-tokens": {
|
|
20645
|
+
"version": "2.0.3",
|
|
20646
|
+
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
|
|
20647
|
+
"integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg=="
|
|
20648
|
+
},
|
|
20649
|
+
"is-plain-obj": {
|
|
20650
|
+
"version": "4.1.0",
|
|
20651
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
20652
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="
|
|
20653
|
+
},
|
|
20654
|
+
"property-information": {
|
|
20655
|
+
"version": "6.2.0",
|
|
20656
|
+
"resolved": "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz",
|
|
20657
|
+
"integrity": "sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg=="
|
|
20658
|
+
},
|
|
20659
|
+
"react-is": {
|
|
20660
|
+
"version": "18.2.0",
|
|
20661
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
|
|
20662
|
+
"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
|
|
20663
|
+
},
|
|
20664
|
+
"remark-parse": {
|
|
20665
|
+
"version": "10.0.1",
|
|
20666
|
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz",
|
|
20667
|
+
"integrity": "sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==",
|
|
20668
|
+
"requires": {
|
|
20669
|
+
"@types/mdast": "^3.0.0",
|
|
20670
|
+
"mdast-util-from-markdown": "^1.0.0",
|
|
20671
|
+
"unified": "^10.0.0"
|
|
20672
|
+
}
|
|
20673
|
+
},
|
|
20674
|
+
"space-separated-tokens": {
|
|
20675
|
+
"version": "2.0.2",
|
|
20676
|
+
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
|
|
20677
|
+
"integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q=="
|
|
20678
|
+
},
|
|
20679
|
+
"style-to-object": {
|
|
20680
|
+
"version": "0.4.1",
|
|
20681
|
+
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.1.tgz",
|
|
20682
|
+
"integrity": "sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==",
|
|
20683
|
+
"requires": {
|
|
20684
|
+
"inline-style-parser": "0.1.1"
|
|
20685
|
+
}
|
|
20686
|
+
},
|
|
20687
|
+
"trough": {
|
|
20688
|
+
"version": "2.1.0",
|
|
20689
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
|
|
20690
|
+
"integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g=="
|
|
20691
|
+
},
|
|
20692
|
+
"unified": {
|
|
20693
|
+
"version": "10.1.2",
|
|
20694
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
|
|
20695
|
+
"integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
|
|
20696
|
+
"requires": {
|
|
20697
|
+
"@types/unist": "^2.0.0",
|
|
20698
|
+
"bail": "^2.0.0",
|
|
20699
|
+
"extend": "^3.0.0",
|
|
20700
|
+
"is-buffer": "^2.0.0",
|
|
20701
|
+
"is-plain-obj": "^4.0.0",
|
|
20702
|
+
"trough": "^2.0.0",
|
|
20703
|
+
"vfile": "^5.0.0"
|
|
20704
|
+
}
|
|
20705
|
+
},
|
|
20706
|
+
"unist-util-is": {
|
|
20707
|
+
"version": "5.2.1",
|
|
20708
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz",
|
|
20709
|
+
"integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==",
|
|
20710
|
+
"requires": {
|
|
20711
|
+
"@types/unist": "^2.0.0"
|
|
20712
|
+
}
|
|
20713
|
+
},
|
|
20714
|
+
"unist-util-stringify-position": {
|
|
20715
|
+
"version": "3.0.3",
|
|
20716
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
20717
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
20718
|
+
"requires": {
|
|
20719
|
+
"@types/unist": "^2.0.0"
|
|
20720
|
+
}
|
|
20721
|
+
},
|
|
20722
|
+
"unist-util-visit": {
|
|
20723
|
+
"version": "4.1.2",
|
|
20724
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz",
|
|
20725
|
+
"integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==",
|
|
20726
|
+
"requires": {
|
|
20727
|
+
"@types/unist": "^2.0.0",
|
|
20728
|
+
"unist-util-is": "^5.0.0",
|
|
20729
|
+
"unist-util-visit-parents": "^5.1.1"
|
|
20730
|
+
}
|
|
20731
|
+
},
|
|
20732
|
+
"unist-util-visit-parents": {
|
|
20733
|
+
"version": "5.1.3",
|
|
20734
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
|
|
20735
|
+
"integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
|
|
20736
|
+
"requires": {
|
|
20737
|
+
"@types/unist": "^2.0.0",
|
|
20738
|
+
"unist-util-is": "^5.0.0"
|
|
20739
|
+
}
|
|
20740
|
+
},
|
|
20741
|
+
"vfile": {
|
|
20742
|
+
"version": "5.3.7",
|
|
20743
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz",
|
|
20744
|
+
"integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==",
|
|
20745
|
+
"requires": {
|
|
20746
|
+
"@types/unist": "^2.0.0",
|
|
20747
|
+
"is-buffer": "^2.0.0",
|
|
20748
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
20749
|
+
"vfile-message": "^3.0.0"
|
|
20750
|
+
}
|
|
20751
|
+
},
|
|
20752
|
+
"vfile-message": {
|
|
20753
|
+
"version": "3.1.4",
|
|
20754
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz",
|
|
20755
|
+
"integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==",
|
|
20756
|
+
"requires": {
|
|
20757
|
+
"@types/unist": "^2.0.0",
|
|
20758
|
+
"unist-util-stringify-position": "^3.0.0"
|
|
20759
|
+
}
|
|
20760
|
+
}
|
|
20761
|
+
}
|
|
20762
|
+
},
|
|
20763
|
+
"react-modal": {
|
|
20764
|
+
"version": "3.16.1",
|
|
20765
|
+
"resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz",
|
|
20766
|
+
"integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==",
|
|
20767
|
+
"requires": {
|
|
20768
|
+
"exenv": "^1.2.0",
|
|
20769
|
+
"prop-types": "^15.7.2",
|
|
20770
|
+
"react-lifecycles-compat": "^3.0.0",
|
|
20771
|
+
"warning": "^4.0.3"
|
|
20772
|
+
}
|
|
20773
|
+
},
|
|
19236
20774
|
"react-router": {
|
|
19237
20775
|
"version": "5.3.4",
|
|
19238
20776
|
"resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz",
|
|
@@ -19524,6 +21062,141 @@
|
|
|
19524
21062
|
"xtend": "^4.0.1"
|
|
19525
21063
|
}
|
|
19526
21064
|
},
|
|
21065
|
+
"remark-rehype": {
|
|
21066
|
+
"version": "10.1.0",
|
|
21067
|
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz",
|
|
21068
|
+
"integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==",
|
|
21069
|
+
"requires": {
|
|
21070
|
+
"@types/hast": "^2.0.0",
|
|
21071
|
+
"@types/mdast": "^3.0.0",
|
|
21072
|
+
"mdast-util-to-hast": "^12.1.0",
|
|
21073
|
+
"unified": "^10.0.0"
|
|
21074
|
+
},
|
|
21075
|
+
"dependencies": {
|
|
21076
|
+
"bail": {
|
|
21077
|
+
"version": "2.0.2",
|
|
21078
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
21079
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="
|
|
21080
|
+
},
|
|
21081
|
+
"is-plain-obj": {
|
|
21082
|
+
"version": "4.1.0",
|
|
21083
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
21084
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg=="
|
|
21085
|
+
},
|
|
21086
|
+
"mdast-util-definitions": {
|
|
21087
|
+
"version": "5.1.2",
|
|
21088
|
+
"resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz",
|
|
21089
|
+
"integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==",
|
|
21090
|
+
"requires": {
|
|
21091
|
+
"@types/mdast": "^3.0.0",
|
|
21092
|
+
"@types/unist": "^2.0.0",
|
|
21093
|
+
"unist-util-visit": "^4.0.0"
|
|
21094
|
+
}
|
|
21095
|
+
},
|
|
21096
|
+
"mdast-util-to-hast": {
|
|
21097
|
+
"version": "12.3.0",
|
|
21098
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz",
|
|
21099
|
+
"integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==",
|
|
21100
|
+
"requires": {
|
|
21101
|
+
"@types/hast": "^2.0.0",
|
|
21102
|
+
"@types/mdast": "^3.0.0",
|
|
21103
|
+
"mdast-util-definitions": "^5.0.0",
|
|
21104
|
+
"micromark-util-sanitize-uri": "^1.1.0",
|
|
21105
|
+
"trim-lines": "^3.0.0",
|
|
21106
|
+
"unist-util-generated": "^2.0.0",
|
|
21107
|
+
"unist-util-position": "^4.0.0",
|
|
21108
|
+
"unist-util-visit": "^4.0.0"
|
|
21109
|
+
}
|
|
21110
|
+
},
|
|
21111
|
+
"trough": {
|
|
21112
|
+
"version": "2.1.0",
|
|
21113
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz",
|
|
21114
|
+
"integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g=="
|
|
21115
|
+
},
|
|
21116
|
+
"unified": {
|
|
21117
|
+
"version": "10.1.2",
|
|
21118
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz",
|
|
21119
|
+
"integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==",
|
|
21120
|
+
"requires": {
|
|
21121
|
+
"@types/unist": "^2.0.0",
|
|
21122
|
+
"bail": "^2.0.0",
|
|
21123
|
+
"extend": "^3.0.0",
|
|
21124
|
+
"is-buffer": "^2.0.0",
|
|
21125
|
+
"is-plain-obj": "^4.0.0",
|
|
21126
|
+
"trough": "^2.0.0",
|
|
21127
|
+
"vfile": "^5.0.0"
|
|
21128
|
+
}
|
|
21129
|
+
},
|
|
21130
|
+
"unist-util-generated": {
|
|
21131
|
+
"version": "2.0.1",
|
|
21132
|
+
"resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz",
|
|
21133
|
+
"integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A=="
|
|
21134
|
+
},
|
|
21135
|
+
"unist-util-is": {
|
|
21136
|
+
"version": "5.2.1",
|
|
21137
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz",
|
|
21138
|
+
"integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==",
|
|
21139
|
+
"requires": {
|
|
21140
|
+
"@types/unist": "^2.0.0"
|
|
21141
|
+
}
|
|
21142
|
+
},
|
|
21143
|
+
"unist-util-position": {
|
|
21144
|
+
"version": "4.0.4",
|
|
21145
|
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz",
|
|
21146
|
+
"integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==",
|
|
21147
|
+
"requires": {
|
|
21148
|
+
"@types/unist": "^2.0.0"
|
|
21149
|
+
}
|
|
21150
|
+
},
|
|
21151
|
+
"unist-util-stringify-position": {
|
|
21152
|
+
"version": "3.0.3",
|
|
21153
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz",
|
|
21154
|
+
"integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==",
|
|
21155
|
+
"requires": {
|
|
21156
|
+
"@types/unist": "^2.0.0"
|
|
21157
|
+
}
|
|
21158
|
+
},
|
|
21159
|
+
"unist-util-visit": {
|
|
21160
|
+
"version": "4.1.2",
|
|
21161
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz",
|
|
21162
|
+
"integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==",
|
|
21163
|
+
"requires": {
|
|
21164
|
+
"@types/unist": "^2.0.0",
|
|
21165
|
+
"unist-util-is": "^5.0.0",
|
|
21166
|
+
"unist-util-visit-parents": "^5.1.1"
|
|
21167
|
+
}
|
|
21168
|
+
},
|
|
21169
|
+
"unist-util-visit-parents": {
|
|
21170
|
+
"version": "5.1.3",
|
|
21171
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
|
|
21172
|
+
"integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
|
|
21173
|
+
"requires": {
|
|
21174
|
+
"@types/unist": "^2.0.0",
|
|
21175
|
+
"unist-util-is": "^5.0.0"
|
|
21176
|
+
}
|
|
21177
|
+
},
|
|
21178
|
+
"vfile": {
|
|
21179
|
+
"version": "5.3.7",
|
|
21180
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz",
|
|
21181
|
+
"integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==",
|
|
21182
|
+
"requires": {
|
|
21183
|
+
"@types/unist": "^2.0.0",
|
|
21184
|
+
"is-buffer": "^2.0.0",
|
|
21185
|
+
"unist-util-stringify-position": "^3.0.0",
|
|
21186
|
+
"vfile-message": "^3.0.0"
|
|
21187
|
+
}
|
|
21188
|
+
},
|
|
21189
|
+
"vfile-message": {
|
|
21190
|
+
"version": "3.1.4",
|
|
21191
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz",
|
|
21192
|
+
"integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==",
|
|
21193
|
+
"requires": {
|
|
21194
|
+
"@types/unist": "^2.0.0",
|
|
21195
|
+
"unist-util-stringify-position": "^3.0.0"
|
|
21196
|
+
}
|
|
21197
|
+
}
|
|
21198
|
+
}
|
|
21199
|
+
},
|
|
19527
21200
|
"remark-squeeze-paragraphs": {
|
|
19528
21201
|
"version": "4.0.0",
|
|
19529
21202
|
"resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz",
|
|
@@ -19735,6 +21408,14 @@
|
|
|
19735
21408
|
"tslib": "^2.1.0"
|
|
19736
21409
|
}
|
|
19737
21410
|
},
|
|
21411
|
+
"sade": {
|
|
21412
|
+
"version": "1.8.1",
|
|
21413
|
+
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
|
|
21414
|
+
"integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
|
|
21415
|
+
"requires": {
|
|
21416
|
+
"mri": "^1.1.0"
|
|
21417
|
+
}
|
|
21418
|
+
},
|
|
19738
21419
|
"safe-buffer": {
|
|
19739
21420
|
"version": "5.2.1",
|
|
19740
21421
|
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
@@ -20445,6 +22126,11 @@
|
|
|
20445
22126
|
"resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz",
|
|
20446
22127
|
"integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ=="
|
|
20447
22128
|
},
|
|
22129
|
+
"trim-lines": {
|
|
22130
|
+
"version": "3.0.1",
|
|
22131
|
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
|
22132
|
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg=="
|
|
22133
|
+
},
|
|
20448
22134
|
"trim-trailing-lines": {
|
|
20449
22135
|
"version": "1.1.4",
|
|
20450
22136
|
"resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz",
|
|
@@ -20502,6 +22188,25 @@
|
|
|
20502
22188
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz",
|
|
20503
22189
|
"integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="
|
|
20504
22190
|
},
|
|
22191
|
+
"typesense": {
|
|
22192
|
+
"version": "1.5.3",
|
|
22193
|
+
"resolved": "https://registry.npmjs.org/typesense/-/typesense-1.5.3.tgz",
|
|
22194
|
+
"integrity": "sha512-eLHBP6AHex04tT+q/a7Uc+dFjIuoKTRpvlsNJwVTyedh4n0qnJxbfoLJBCxzhhZn5eITjEK0oWvVZ5byc3E+Ww==",
|
|
22195
|
+
"requires": {
|
|
22196
|
+
"axios": "^0.26.0",
|
|
22197
|
+
"loglevel": "^1.8.0"
|
|
22198
|
+
},
|
|
22199
|
+
"dependencies": {
|
|
22200
|
+
"axios": {
|
|
22201
|
+
"version": "0.26.1",
|
|
22202
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
|
|
22203
|
+
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
|
|
22204
|
+
"requires": {
|
|
22205
|
+
"follow-redirects": "^1.14.8"
|
|
22206
|
+
}
|
|
22207
|
+
}
|
|
22208
|
+
}
|
|
22209
|
+
},
|
|
20505
22210
|
"ua-parser-js": {
|
|
20506
22211
|
"version": "0.7.32",
|
|
20507
22212
|
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz",
|
|
@@ -20827,6 +22532,24 @@
|
|
|
20827
22532
|
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
|
20828
22533
|
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
|
|
20829
22534
|
},
|
|
22535
|
+
"uvu": {
|
|
22536
|
+
"version": "0.5.6",
|
|
22537
|
+
"resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz",
|
|
22538
|
+
"integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==",
|
|
22539
|
+
"requires": {
|
|
22540
|
+
"dequal": "^2.0.0",
|
|
22541
|
+
"diff": "^5.0.0",
|
|
22542
|
+
"kleur": "^4.0.3",
|
|
22543
|
+
"sade": "^1.7.3"
|
|
22544
|
+
},
|
|
22545
|
+
"dependencies": {
|
|
22546
|
+
"kleur": {
|
|
22547
|
+
"version": "4.1.5",
|
|
22548
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
|
|
22549
|
+
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="
|
|
22550
|
+
}
|
|
22551
|
+
}
|
|
22552
|
+
},
|
|
20830
22553
|
"value-equal": {
|
|
20831
22554
|
"version": "1.0.1",
|
|
20832
22555
|
"resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
|
|
@@ -20874,6 +22597,14 @@
|
|
|
20874
22597
|
"rxjs": "^7.5.4"
|
|
20875
22598
|
}
|
|
20876
22599
|
},
|
|
22600
|
+
"warning": {
|
|
22601
|
+
"version": "4.0.3",
|
|
22602
|
+
"resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
|
|
22603
|
+
"integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
|
|
22604
|
+
"requires": {
|
|
22605
|
+
"loose-envify": "^1.0.0"
|
|
22606
|
+
}
|
|
22607
|
+
},
|
|
20877
22608
|
"watchpack": {
|
|
20878
22609
|
"version": "2.4.0",
|
|
20879
22610
|
"resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
|