flowyml 1.7.1__py3-none-any.whl → 1.8.0__py3-none-any.whl
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.
- flowyml/assets/base.py +15 -0
- flowyml/assets/dataset.py +570 -17
- flowyml/assets/metrics.py +5 -0
- flowyml/assets/model.py +1052 -15
- flowyml/cli/main.py +709 -0
- flowyml/cli/stack_cli.py +138 -25
- flowyml/core/__init__.py +17 -0
- flowyml/core/executor.py +231 -37
- flowyml/core/image_builder.py +129 -0
- flowyml/core/log_streamer.py +227 -0
- flowyml/core/orchestrator.py +59 -4
- flowyml/core/pipeline.py +65 -13
- flowyml/core/routing.py +558 -0
- flowyml/core/scheduler.py +88 -5
- flowyml/core/step.py +9 -1
- flowyml/core/step_grouping.py +49 -35
- flowyml/core/types.py +407 -0
- flowyml/integrations/keras.py +247 -82
- flowyml/monitoring/alerts.py +10 -0
- flowyml/monitoring/notifications.py +104 -25
- flowyml/monitoring/slack_blocks.py +323 -0
- flowyml/plugins/__init__.py +251 -0
- flowyml/plugins/alerters/__init__.py +1 -0
- flowyml/plugins/alerters/slack.py +168 -0
- flowyml/plugins/base.py +752 -0
- flowyml/plugins/config.py +478 -0
- flowyml/plugins/deployers/__init__.py +22 -0
- flowyml/plugins/deployers/gcp_cloud_run.py +200 -0
- flowyml/plugins/deployers/sagemaker.py +306 -0
- flowyml/plugins/deployers/vertex.py +290 -0
- flowyml/plugins/integration.py +369 -0
- flowyml/plugins/manager.py +510 -0
- flowyml/plugins/model_registries/__init__.py +22 -0
- flowyml/plugins/model_registries/mlflow.py +159 -0
- flowyml/plugins/model_registries/sagemaker.py +489 -0
- flowyml/plugins/model_registries/vertex.py +386 -0
- flowyml/plugins/orchestrators/__init__.py +13 -0
- flowyml/plugins/orchestrators/sagemaker.py +443 -0
- flowyml/plugins/orchestrators/vertex_ai.py +461 -0
- flowyml/plugins/registries/__init__.py +13 -0
- flowyml/plugins/registries/ecr.py +321 -0
- flowyml/plugins/registries/gcr.py +313 -0
- flowyml/plugins/registry.py +454 -0
- flowyml/plugins/stack.py +494 -0
- flowyml/plugins/stack_config.py +537 -0
- flowyml/plugins/stores/__init__.py +13 -0
- flowyml/plugins/stores/gcs.py +460 -0
- flowyml/plugins/stores/s3.py +453 -0
- flowyml/plugins/trackers/__init__.py +11 -0
- flowyml/plugins/trackers/mlflow.py +316 -0
- flowyml/plugins/validators/__init__.py +3 -0
- flowyml/plugins/validators/deepchecks.py +119 -0
- flowyml/registry/__init__.py +2 -1
- flowyml/registry/model_environment.py +109 -0
- flowyml/registry/model_registry.py +241 -96
- flowyml/serving/__init__.py +17 -0
- flowyml/serving/model_server.py +628 -0
- flowyml/stacks/__init__.py +60 -0
- flowyml/stacks/aws.py +93 -0
- flowyml/stacks/base.py +62 -0
- flowyml/stacks/components.py +12 -0
- flowyml/stacks/gcp.py +44 -9
- flowyml/stacks/plugins.py +115 -0
- flowyml/stacks/registry.py +2 -1
- flowyml/storage/sql.py +401 -12
- flowyml/tracking/experiment.py +8 -5
- flowyml/ui/backend/Dockerfile +87 -16
- flowyml/ui/backend/auth.py +12 -2
- flowyml/ui/backend/main.py +149 -5
- flowyml/ui/backend/routers/ai_context.py +226 -0
- flowyml/ui/backend/routers/assets.py +23 -4
- flowyml/ui/backend/routers/auth.py +96 -0
- flowyml/ui/backend/routers/deployments.py +660 -0
- flowyml/ui/backend/routers/model_explorer.py +597 -0
- flowyml/ui/backend/routers/plugins.py +103 -51
- flowyml/ui/backend/routers/projects.py +91 -8
- flowyml/ui/backend/routers/runs.py +132 -1
- flowyml/ui/backend/routers/schedules.py +54 -29
- flowyml/ui/backend/routers/templates.py +319 -0
- flowyml/ui/backend/routers/websocket.py +2 -2
- flowyml/ui/frontend/Dockerfile +55 -6
- flowyml/ui/frontend/dist/assets/index-B5AsPTSz.css +1 -0
- flowyml/ui/frontend/dist/assets/index-dFbZ8wD8.js +753 -0
- flowyml/ui/frontend/dist/index.html +2 -2
- flowyml/ui/frontend/dist/logo.png +0 -0
- flowyml/ui/frontend/nginx.conf +65 -4
- flowyml/ui/frontend/package-lock.json +1415 -74
- flowyml/ui/frontend/package.json +4 -0
- flowyml/ui/frontend/public/logo.png +0 -0
- flowyml/ui/frontend/src/App.jsx +10 -7
- flowyml/ui/frontend/src/app/assets/page.jsx +890 -321
- flowyml/ui/frontend/src/app/auth/Login.jsx +90 -0
- flowyml/ui/frontend/src/app/dashboard/page.jsx +8 -8
- flowyml/ui/frontend/src/app/deployments/page.jsx +786 -0
- flowyml/ui/frontend/src/app/model-explorer/page.jsx +1031 -0
- flowyml/ui/frontend/src/app/pipelines/page.jsx +12 -2
- flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectExperimentsList.jsx +19 -6
- flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectMetricsPanel.jsx +1 -1
- flowyml/ui/frontend/src/app/runs/[runId]/page.jsx +601 -101
- flowyml/ui/frontend/src/app/runs/page.jsx +8 -2
- flowyml/ui/frontend/src/app/settings/page.jsx +267 -253
- flowyml/ui/frontend/src/components/ArtifactViewer.jsx +62 -2
- flowyml/ui/frontend/src/components/AssetDetailsPanel.jsx +424 -29
- flowyml/ui/frontend/src/components/AssetTreeHierarchy.jsx +119 -11
- flowyml/ui/frontend/src/components/DatasetViewer.jsx +753 -0
- flowyml/ui/frontend/src/components/Layout.jsx +6 -0
- flowyml/ui/frontend/src/components/PipelineGraph.jsx +79 -29
- flowyml/ui/frontend/src/components/RunDetailsPanel.jsx +36 -6
- flowyml/ui/frontend/src/components/RunMetaPanel.jsx +113 -0
- flowyml/ui/frontend/src/components/TrainingHistoryChart.jsx +514 -0
- flowyml/ui/frontend/src/components/TrainingMetricsPanel.jsx +175 -0
- flowyml/ui/frontend/src/components/ai/AIAssistantButton.jsx +71 -0
- flowyml/ui/frontend/src/components/ai/AIAssistantPanel.jsx +420 -0
- flowyml/ui/frontend/src/components/header/Header.jsx +22 -0
- flowyml/ui/frontend/src/components/plugins/PluginManager.jsx +4 -4
- flowyml/ui/frontend/src/components/plugins/{ZenMLIntegration.jsx → StackImport.jsx} +38 -12
- flowyml/ui/frontend/src/components/sidebar/Sidebar.jsx +36 -13
- flowyml/ui/frontend/src/contexts/AIAssistantContext.jsx +245 -0
- flowyml/ui/frontend/src/contexts/AuthContext.jsx +108 -0
- flowyml/ui/frontend/src/hooks/useAIContext.js +156 -0
- flowyml/ui/frontend/src/hooks/useWebGPU.js +54 -0
- flowyml/ui/frontend/src/layouts/MainLayout.jsx +6 -0
- flowyml/ui/frontend/src/router/index.jsx +47 -20
- flowyml/ui/frontend/src/services/pluginService.js +3 -1
- flowyml/ui/server_manager.py +5 -5
- flowyml/ui/utils.py +157 -39
- flowyml/utils/config.py +37 -15
- flowyml/utils/model_introspection.py +123 -0
- flowyml/utils/observability.py +30 -0
- flowyml-1.8.0.dist-info/METADATA +174 -0
- {flowyml-1.7.1.dist-info → flowyml-1.8.0.dist-info}/RECORD +134 -73
- {flowyml-1.7.1.dist-info → flowyml-1.8.0.dist-info}/WHEEL +1 -1
- flowyml/ui/frontend/dist/assets/index-BqDQvp63.js +0 -630
- flowyml/ui/frontend/dist/assets/index-By4trVyv.css +0 -1
- flowyml-1.7.1.dist-info/METADATA +0 -477
- {flowyml-1.7.1.dist-info → flowyml-1.8.0.dist-info}/entry_points.txt +0 -0
- {flowyml-1.7.1.dist-info → flowyml-1.8.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"packages": {
|
|
5
5
|
"": {
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@mlc-ai/web-llm": "^0.2.80",
|
|
7
8
|
"clsx": "^2.1.1",
|
|
8
9
|
"dagre": "^0.8.5",
|
|
9
10
|
"date-fns": "^4.1.0",
|
|
@@ -11,10 +12,13 @@
|
|
|
11
12
|
"lucide-react": "^0.344.0",
|
|
12
13
|
"react": "^18.2.0",
|
|
13
14
|
"react-dom": "^18.2.0",
|
|
15
|
+
"react-markdown": "^10.1.0",
|
|
16
|
+
"react-resizable-panels": "^3.0.6",
|
|
14
17
|
"react-router-dom": "^6.22.0",
|
|
15
18
|
"react-syntax-highlighter": "^16.1.0",
|
|
16
19
|
"reactflow": "^11.11.4",
|
|
17
20
|
"recharts": "^2.12.0",
|
|
21
|
+
"remark-gfm": "^4.0.1",
|
|
18
22
|
"tailwind-merge": "^2.6.0"
|
|
19
23
|
},
|
|
20
24
|
"devDependencies": {
|
|
@@ -774,6 +778,15 @@
|
|
|
774
778
|
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
775
779
|
"version": "0.3.31"
|
|
776
780
|
},
|
|
781
|
+
"node_modules/@mlc-ai/web-llm": {
|
|
782
|
+
"dependencies": {
|
|
783
|
+
"loglevel": "^1.9.1"
|
|
784
|
+
},
|
|
785
|
+
"integrity": "sha512-Hwy1OCsK5cOU4nKr2wIJ2qA1g595PENtO5f2d9Wd/GgFsj5X04uxfaaJfqED8eFAJOpQpn/DirogdEY/yp5jQg==",
|
|
786
|
+
"license": "Apache-2.0",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/@mlc-ai/web-llm/-/web-llm-0.2.80.tgz",
|
|
788
|
+
"version": "0.2.80"
|
|
789
|
+
},
|
|
777
790
|
"node_modules/@nodelib/fs.scandir": {
|
|
778
791
|
"dependencies": {
|
|
779
792
|
"@nodelib/fs.stat": "2.0.5",
|
|
@@ -1536,13 +1549,30 @@
|
|
|
1536
1549
|
"resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
|
|
1537
1550
|
"version": "3.0.8"
|
|
1538
1551
|
},
|
|
1552
|
+
"node_modules/@types/debug": {
|
|
1553
|
+
"dependencies": {
|
|
1554
|
+
"@types/ms": "*"
|
|
1555
|
+
},
|
|
1556
|
+
"integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
|
|
1557
|
+
"license": "MIT",
|
|
1558
|
+
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
|
|
1559
|
+
"version": "4.1.12"
|
|
1560
|
+
},
|
|
1539
1561
|
"node_modules/@types/estree": {
|
|
1540
|
-
"dev": true,
|
|
1541
1562
|
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1542
1563
|
"license": "MIT",
|
|
1543
1564
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1544
1565
|
"version": "1.0.8"
|
|
1545
1566
|
},
|
|
1567
|
+
"node_modules/@types/estree-jsx": {
|
|
1568
|
+
"dependencies": {
|
|
1569
|
+
"@types/estree": "*"
|
|
1570
|
+
},
|
|
1571
|
+
"integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
|
|
1572
|
+
"license": "MIT",
|
|
1573
|
+
"resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
|
|
1574
|
+
"version": "1.0.5"
|
|
1575
|
+
},
|
|
1546
1576
|
"node_modules/@types/geojson": {
|
|
1547
1577
|
"integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==",
|
|
1548
1578
|
"license": "MIT",
|
|
@@ -1558,6 +1588,21 @@
|
|
|
1558
1588
|
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
|
|
1559
1589
|
"version": "3.0.4"
|
|
1560
1590
|
},
|
|
1591
|
+
"node_modules/@types/mdast": {
|
|
1592
|
+
"dependencies": {
|
|
1593
|
+
"@types/unist": "*"
|
|
1594
|
+
},
|
|
1595
|
+
"integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
|
|
1596
|
+
"license": "MIT",
|
|
1597
|
+
"resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
|
|
1598
|
+
"version": "4.0.4"
|
|
1599
|
+
},
|
|
1600
|
+
"node_modules/@types/ms": {
|
|
1601
|
+
"integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
|
|
1602
|
+
"license": "MIT",
|
|
1603
|
+
"resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
|
|
1604
|
+
"version": "2.1.0"
|
|
1605
|
+
},
|
|
1561
1606
|
"node_modules/@types/prismjs": {
|
|
1562
1607
|
"integrity": "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==",
|
|
1563
1608
|
"license": "MIT",
|
|
@@ -1565,7 +1610,6 @@
|
|
|
1565
1610
|
"version": "1.26.5"
|
|
1566
1611
|
},
|
|
1567
1612
|
"node_modules/@types/prop-types": {
|
|
1568
|
-
"devOptional": true,
|
|
1569
1613
|
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
|
1570
1614
|
"license": "MIT",
|
|
1571
1615
|
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
|
|
@@ -1576,7 +1620,6 @@
|
|
|
1576
1620
|
"@types/prop-types": "*",
|
|
1577
1621
|
"csstype": "^3.2.2"
|
|
1578
1622
|
},
|
|
1579
|
-
"devOptional": true,
|
|
1580
1623
|
"integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==",
|
|
1581
1624
|
"license": "MIT",
|
|
1582
1625
|
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz",
|
|
@@ -1598,6 +1641,12 @@
|
|
|
1598
1641
|
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
|
1599
1642
|
"version": "3.0.3"
|
|
1600
1643
|
},
|
|
1644
|
+
"node_modules/@ungap/structured-clone": {
|
|
1645
|
+
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
|
|
1646
|
+
"license": "ISC",
|
|
1647
|
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
|
|
1648
|
+
"version": "1.3.0"
|
|
1649
|
+
},
|
|
1601
1650
|
"node_modules/@vitejs/plugin-react": {
|
|
1602
1651
|
"dependencies": {
|
|
1603
1652
|
"@babel/core": "^7.28.0",
|
|
@@ -1685,6 +1734,16 @@
|
|
|
1685
1734
|
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz",
|
|
1686
1735
|
"version": "10.4.22"
|
|
1687
1736
|
},
|
|
1737
|
+
"node_modules/bail": {
|
|
1738
|
+
"funding": {
|
|
1739
|
+
"type": "github",
|
|
1740
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1741
|
+
},
|
|
1742
|
+
"integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
|
|
1743
|
+
"license": "MIT",
|
|
1744
|
+
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
1745
|
+
"version": "2.0.2"
|
|
1746
|
+
},
|
|
1688
1747
|
"node_modules/baseline-browser-mapping": {
|
|
1689
1748
|
"bin": {
|
|
1690
1749
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -1786,6 +1845,16 @@
|
|
|
1786
1845
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz",
|
|
1787
1846
|
"version": "1.0.30001756"
|
|
1788
1847
|
},
|
|
1848
|
+
"node_modules/ccount": {
|
|
1849
|
+
"funding": {
|
|
1850
|
+
"type": "github",
|
|
1851
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1852
|
+
},
|
|
1853
|
+
"integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
|
|
1854
|
+
"license": "MIT",
|
|
1855
|
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
|
|
1856
|
+
"version": "2.0.1"
|
|
1857
|
+
},
|
|
1789
1858
|
"node_modules/character-entities": {
|
|
1790
1859
|
"funding": {
|
|
1791
1860
|
"type": "github",
|
|
@@ -1796,6 +1865,16 @@
|
|
|
1796
1865
|
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
|
|
1797
1866
|
"version": "2.0.2"
|
|
1798
1867
|
},
|
|
1868
|
+
"node_modules/character-entities-html4": {
|
|
1869
|
+
"funding": {
|
|
1870
|
+
"type": "github",
|
|
1871
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
1872
|
+
},
|
|
1873
|
+
"integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
|
|
1874
|
+
"license": "MIT",
|
|
1875
|
+
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
|
|
1876
|
+
"version": "2.1.0"
|
|
1877
|
+
},
|
|
1799
1878
|
"node_modules/character-entities-legacy": {
|
|
1800
1879
|
"funding": {
|
|
1801
1880
|
"type": "github",
|
|
@@ -2126,7 +2205,6 @@
|
|
|
2126
2205
|
"dependencies": {
|
|
2127
2206
|
"ms": "^2.1.3"
|
|
2128
2207
|
},
|
|
2129
|
-
"dev": true,
|
|
2130
2208
|
"engines": {
|
|
2131
2209
|
"node": ">=6.0"
|
|
2132
2210
|
},
|
|
@@ -2159,6 +2237,28 @@
|
|
|
2159
2237
|
"resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
|
|
2160
2238
|
"version": "1.2.0"
|
|
2161
2239
|
},
|
|
2240
|
+
"node_modules/dequal": {
|
|
2241
|
+
"engines": {
|
|
2242
|
+
"node": ">=6"
|
|
2243
|
+
},
|
|
2244
|
+
"integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
|
|
2245
|
+
"license": "MIT",
|
|
2246
|
+
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
2247
|
+
"version": "2.0.3"
|
|
2248
|
+
},
|
|
2249
|
+
"node_modules/devlop": {
|
|
2250
|
+
"dependencies": {
|
|
2251
|
+
"dequal": "^2.0.0"
|
|
2252
|
+
},
|
|
2253
|
+
"funding": {
|
|
2254
|
+
"type": "github",
|
|
2255
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2256
|
+
},
|
|
2257
|
+
"integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
|
|
2258
|
+
"license": "MIT",
|
|
2259
|
+
"resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
|
|
2260
|
+
"version": "1.1.0"
|
|
2261
|
+
},
|
|
2162
2262
|
"node_modules/didyoumean": {
|
|
2163
2263
|
"dev": true,
|
|
2164
2264
|
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
|
|
@@ -2239,12 +2339,40 @@
|
|
|
2239
2339
|
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
2240
2340
|
"version": "3.2.0"
|
|
2241
2341
|
},
|
|
2342
|
+
"node_modules/escape-string-regexp": {
|
|
2343
|
+
"engines": {
|
|
2344
|
+
"node": ">=12"
|
|
2345
|
+
},
|
|
2346
|
+
"funding": {
|
|
2347
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2348
|
+
},
|
|
2349
|
+
"integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
|
|
2350
|
+
"license": "MIT",
|
|
2351
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
|
|
2352
|
+
"version": "5.0.0"
|
|
2353
|
+
},
|
|
2354
|
+
"node_modules/estree-util-is-identifier-name": {
|
|
2355
|
+
"funding": {
|
|
2356
|
+
"type": "opencollective",
|
|
2357
|
+
"url": "https://opencollective.com/unified"
|
|
2358
|
+
},
|
|
2359
|
+
"integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
|
|
2360
|
+
"license": "MIT",
|
|
2361
|
+
"resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
|
|
2362
|
+
"version": "3.0.0"
|
|
2363
|
+
},
|
|
2242
2364
|
"node_modules/eventemitter3": {
|
|
2243
2365
|
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
|
2244
2366
|
"license": "MIT",
|
|
2245
2367
|
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
|
|
2246
2368
|
"version": "4.0.7"
|
|
2247
2369
|
},
|
|
2370
|
+
"node_modules/extend": {
|
|
2371
|
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
2372
|
+
"license": "MIT",
|
|
2373
|
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
2374
|
+
"version": "3.0.2"
|
|
2375
|
+
},
|
|
2248
2376
|
"node_modules/fast-equals": {
|
|
2249
2377
|
"engines": {
|
|
2250
2378
|
"node": ">=6.0.0"
|
|
@@ -2452,6 +2580,46 @@
|
|
|
2452
2580
|
"resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz",
|
|
2453
2581
|
"version": "4.0.0"
|
|
2454
2582
|
},
|
|
2583
|
+
"node_modules/hast-util-to-jsx-runtime": {
|
|
2584
|
+
"dependencies": {
|
|
2585
|
+
"@types/estree": "^1.0.0",
|
|
2586
|
+
"@types/hast": "^3.0.0",
|
|
2587
|
+
"@types/unist": "^3.0.0",
|
|
2588
|
+
"comma-separated-tokens": "^2.0.0",
|
|
2589
|
+
"devlop": "^1.0.0",
|
|
2590
|
+
"estree-util-is-identifier-name": "^3.0.0",
|
|
2591
|
+
"hast-util-whitespace": "^3.0.0",
|
|
2592
|
+
"mdast-util-mdx-expression": "^2.0.0",
|
|
2593
|
+
"mdast-util-mdx-jsx": "^3.0.0",
|
|
2594
|
+
"mdast-util-mdxjs-esm": "^2.0.0",
|
|
2595
|
+
"property-information": "^7.0.0",
|
|
2596
|
+
"space-separated-tokens": "^2.0.0",
|
|
2597
|
+
"style-to-js": "^1.0.0",
|
|
2598
|
+
"unist-util-position": "^5.0.0",
|
|
2599
|
+
"vfile-message": "^4.0.0"
|
|
2600
|
+
},
|
|
2601
|
+
"funding": {
|
|
2602
|
+
"type": "opencollective",
|
|
2603
|
+
"url": "https://opencollective.com/unified"
|
|
2604
|
+
},
|
|
2605
|
+
"integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
|
|
2606
|
+
"license": "MIT",
|
|
2607
|
+
"resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
|
|
2608
|
+
"version": "2.3.6"
|
|
2609
|
+
},
|
|
2610
|
+
"node_modules/hast-util-whitespace": {
|
|
2611
|
+
"dependencies": {
|
|
2612
|
+
"@types/hast": "^3.0.0"
|
|
2613
|
+
},
|
|
2614
|
+
"funding": {
|
|
2615
|
+
"type": "opencollective",
|
|
2616
|
+
"url": "https://opencollective.com/unified"
|
|
2617
|
+
},
|
|
2618
|
+
"integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
|
|
2619
|
+
"license": "MIT",
|
|
2620
|
+
"resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
|
|
2621
|
+
"version": "3.0.0"
|
|
2622
|
+
},
|
|
2455
2623
|
"node_modules/hastscript": {
|
|
2456
2624
|
"dependencies": {
|
|
2457
2625
|
"@types/hast": "^3.0.0",
|
|
@@ -2484,6 +2652,22 @@
|
|
|
2484
2652
|
"resolved": "https://registry.npmjs.org/highlightjs-vue/-/highlightjs-vue-1.0.0.tgz",
|
|
2485
2653
|
"version": "1.0.0"
|
|
2486
2654
|
},
|
|
2655
|
+
"node_modules/html-url-attributes": {
|
|
2656
|
+
"funding": {
|
|
2657
|
+
"type": "opencollective",
|
|
2658
|
+
"url": "https://opencollective.com/unified"
|
|
2659
|
+
},
|
|
2660
|
+
"integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
|
|
2661
|
+
"license": "MIT",
|
|
2662
|
+
"resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
|
|
2663
|
+
"version": "3.0.1"
|
|
2664
|
+
},
|
|
2665
|
+
"node_modules/inline-style-parser": {
|
|
2666
|
+
"integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
|
|
2667
|
+
"license": "MIT",
|
|
2668
|
+
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
2669
|
+
"version": "0.2.7"
|
|
2670
|
+
},
|
|
2487
2671
|
"node_modules/internmap": {
|
|
2488
2672
|
"engines": {
|
|
2489
2673
|
"node": ">=12"
|
|
@@ -2599,6 +2783,18 @@
|
|
|
2599
2783
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
2600
2784
|
"version": "7.0.0"
|
|
2601
2785
|
},
|
|
2786
|
+
"node_modules/is-plain-obj": {
|
|
2787
|
+
"engines": {
|
|
2788
|
+
"node": ">=12"
|
|
2789
|
+
},
|
|
2790
|
+
"funding": {
|
|
2791
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2792
|
+
},
|
|
2793
|
+
"integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
|
|
2794
|
+
"license": "MIT",
|
|
2795
|
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
|
|
2796
|
+
"version": "4.1.0"
|
|
2797
|
+
},
|
|
2602
2798
|
"node_modules/jiti": {
|
|
2603
2799
|
"bin": {
|
|
2604
2800
|
"jiti": "bin/jiti.js"
|
|
@@ -2667,6 +2863,29 @@
|
|
|
2667
2863
|
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
2668
2864
|
"version": "4.17.21"
|
|
2669
2865
|
},
|
|
2866
|
+
"node_modules/loglevel": {
|
|
2867
|
+
"engines": {
|
|
2868
|
+
"node": ">= 0.6.0"
|
|
2869
|
+
},
|
|
2870
|
+
"funding": {
|
|
2871
|
+
"type": "tidelift",
|
|
2872
|
+
"url": "https://tidelift.com/funding/github/npm/loglevel"
|
|
2873
|
+
},
|
|
2874
|
+
"integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==",
|
|
2875
|
+
"license": "MIT",
|
|
2876
|
+
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz",
|
|
2877
|
+
"version": "1.9.2"
|
|
2878
|
+
},
|
|
2879
|
+
"node_modules/longest-streak": {
|
|
2880
|
+
"funding": {
|
|
2881
|
+
"type": "github",
|
|
2882
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2883
|
+
},
|
|
2884
|
+
"integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
|
|
2885
|
+
"license": "MIT",
|
|
2886
|
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
|
|
2887
|
+
"version": "3.1.0"
|
|
2888
|
+
},
|
|
2670
2889
|
"node_modules/loose-envify": {
|
|
2671
2890
|
"bin": {
|
|
2672
2891
|
"loose-envify": "cli.js"
|
|
@@ -2712,106 +2931,948 @@
|
|
|
2712
2931
|
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.344.0.tgz",
|
|
2713
2932
|
"version": "0.344.0"
|
|
2714
2933
|
},
|
|
2715
|
-
"node_modules/
|
|
2716
|
-
"
|
|
2717
|
-
|
|
2718
|
-
"
|
|
2934
|
+
"node_modules/markdown-table": {
|
|
2935
|
+
"funding": {
|
|
2936
|
+
"type": "github",
|
|
2937
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2719
2938
|
},
|
|
2720
|
-
"integrity": "sha512-
|
|
2939
|
+
"integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
|
|
2721
2940
|
"license": "MIT",
|
|
2722
|
-
"resolved": "https://registry.npmjs.org/
|
|
2723
|
-
"version": "
|
|
2941
|
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
|
|
2942
|
+
"version": "3.0.4"
|
|
2724
2943
|
},
|
|
2725
|
-
"node_modules/
|
|
2944
|
+
"node_modules/mdast-util-find-and-replace": {
|
|
2726
2945
|
"dependencies": {
|
|
2727
|
-
"
|
|
2728
|
-
"
|
|
2946
|
+
"@types/mdast": "^4.0.0",
|
|
2947
|
+
"escape-string-regexp": "^5.0.0",
|
|
2948
|
+
"unist-util-is": "^6.0.0",
|
|
2949
|
+
"unist-util-visit-parents": "^6.0.0"
|
|
2729
2950
|
},
|
|
2730
|
-
"
|
|
2731
|
-
|
|
2732
|
-
"
|
|
2951
|
+
"funding": {
|
|
2952
|
+
"type": "opencollective",
|
|
2953
|
+
"url": "https://opencollective.com/unified"
|
|
2733
2954
|
},
|
|
2734
|
-
"integrity": "sha512-
|
|
2955
|
+
"integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
|
|
2735
2956
|
"license": "MIT",
|
|
2736
|
-
"resolved": "https://registry.npmjs.org/
|
|
2737
|
-
"version": "
|
|
2957
|
+
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
|
|
2958
|
+
"version": "3.0.2"
|
|
2738
2959
|
},
|
|
2739
|
-
"node_modules/
|
|
2960
|
+
"node_modules/mdast-util-from-markdown": {
|
|
2740
2961
|
"dependencies": {
|
|
2741
|
-
"
|
|
2962
|
+
"@types/mdast": "^4.0.0",
|
|
2963
|
+
"@types/unist": "^3.0.0",
|
|
2964
|
+
"decode-named-character-reference": "^1.0.0",
|
|
2965
|
+
"devlop": "^1.0.0",
|
|
2966
|
+
"mdast-util-to-string": "^4.0.0",
|
|
2967
|
+
"micromark": "^4.0.0",
|
|
2968
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
2969
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
2970
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
2971
|
+
"micromark-util-symbol": "^2.0.0",
|
|
2972
|
+
"micromark-util-types": "^2.0.0",
|
|
2973
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
2742
2974
|
},
|
|
2743
|
-
"
|
|
2975
|
+
"funding": {
|
|
2976
|
+
"type": "opencollective",
|
|
2977
|
+
"url": "https://opencollective.com/unified"
|
|
2978
|
+
},
|
|
2979
|
+
"integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
|
|
2744
2980
|
"license": "MIT",
|
|
2745
|
-
"resolved": "https://registry.npmjs.org/
|
|
2746
|
-
"version": "
|
|
2981
|
+
"resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
|
|
2982
|
+
"version": "2.0.2"
|
|
2747
2983
|
},
|
|
2748
|
-
"node_modules/
|
|
2749
|
-
"
|
|
2984
|
+
"node_modules/mdast-util-gfm": {
|
|
2985
|
+
"dependencies": {
|
|
2986
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
2987
|
+
"mdast-util-gfm-autolink-literal": "^2.0.0",
|
|
2988
|
+
"mdast-util-gfm-footnote": "^2.0.0",
|
|
2989
|
+
"mdast-util-gfm-strikethrough": "^2.0.0",
|
|
2990
|
+
"mdast-util-gfm-table": "^2.0.0",
|
|
2991
|
+
"mdast-util-gfm-task-list-item": "^2.0.0",
|
|
2992
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
2993
|
+
},
|
|
2994
|
+
"funding": {
|
|
2995
|
+
"type": "opencollective",
|
|
2996
|
+
"url": "https://opencollective.com/unified"
|
|
2997
|
+
},
|
|
2998
|
+
"integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
|
|
2750
2999
|
"license": "MIT",
|
|
2751
|
-
"resolved": "https://registry.npmjs.org/
|
|
2752
|
-
"version": "
|
|
3000
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
|
|
3001
|
+
"version": "3.1.0"
|
|
2753
3002
|
},
|
|
2754
|
-
"node_modules/
|
|
2755
|
-
"
|
|
2756
|
-
|
|
3003
|
+
"node_modules/mdast-util-gfm-autolink-literal": {
|
|
3004
|
+
"dependencies": {
|
|
3005
|
+
"@types/mdast": "^4.0.0",
|
|
3006
|
+
"ccount": "^2.0.0",
|
|
3007
|
+
"devlop": "^1.0.0",
|
|
3008
|
+
"mdast-util-find-and-replace": "^3.0.0",
|
|
3009
|
+
"micromark-util-character": "^2.0.0"
|
|
3010
|
+
},
|
|
3011
|
+
"funding": {
|
|
3012
|
+
"type": "opencollective",
|
|
3013
|
+
"url": "https://opencollective.com/unified"
|
|
3014
|
+
},
|
|
3015
|
+
"integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
|
|
2757
3016
|
"license": "MIT",
|
|
2758
|
-
"resolved": "https://registry.npmjs.org/
|
|
2759
|
-
"version": "2.1
|
|
3017
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
|
|
3018
|
+
"version": "2.0.1"
|
|
2760
3019
|
},
|
|
2761
|
-
"node_modules/
|
|
3020
|
+
"node_modules/mdast-util-gfm-footnote": {
|
|
2762
3021
|
"dependencies": {
|
|
2763
|
-
"
|
|
2764
|
-
"
|
|
2765
|
-
"
|
|
3022
|
+
"@types/mdast": "^4.0.0",
|
|
3023
|
+
"devlop": "^1.1.0",
|
|
3024
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3025
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
3026
|
+
"micromark-util-normalize-identifier": "^2.0.0"
|
|
2766
3027
|
},
|
|
2767
|
-
"
|
|
2768
|
-
|
|
3028
|
+
"funding": {
|
|
3029
|
+
"type": "opencollective",
|
|
3030
|
+
"url": "https://opencollective.com/unified"
|
|
3031
|
+
},
|
|
3032
|
+
"integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
|
|
2769
3033
|
"license": "MIT",
|
|
2770
|
-
"resolved": "https://registry.npmjs.org/
|
|
2771
|
-
"version": "2.
|
|
3034
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
|
|
3035
|
+
"version": "2.1.0"
|
|
2772
3036
|
},
|
|
2773
|
-
"node_modules/
|
|
2774
|
-
"
|
|
2775
|
-
"
|
|
3037
|
+
"node_modules/mdast-util-gfm-strikethrough": {
|
|
3038
|
+
"dependencies": {
|
|
3039
|
+
"@types/mdast": "^4.0.0",
|
|
3040
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3041
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
2776
3042
|
},
|
|
2777
|
-
"
|
|
2778
|
-
|
|
2779
|
-
"
|
|
3043
|
+
"funding": {
|
|
3044
|
+
"type": "opencollective",
|
|
3045
|
+
"url": "https://opencollective.com/unified"
|
|
2780
3046
|
},
|
|
2781
|
-
"
|
|
2782
|
-
{
|
|
2783
|
-
"type": "github",
|
|
2784
|
-
"url": "https://github.com/sponsors/ai"
|
|
2785
|
-
}
|
|
2786
|
-
],
|
|
2787
|
-
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
3047
|
+
"integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
|
|
2788
3048
|
"license": "MIT",
|
|
2789
|
-
"resolved": "https://registry.npmjs.org/
|
|
2790
|
-
"version": "
|
|
3049
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
|
|
3050
|
+
"version": "2.0.0"
|
|
2791
3051
|
},
|
|
2792
|
-
"node_modules/
|
|
2793
|
-
"
|
|
2794
|
-
|
|
3052
|
+
"node_modules/mdast-util-gfm-table": {
|
|
3053
|
+
"dependencies": {
|
|
3054
|
+
"@types/mdast": "^4.0.0",
|
|
3055
|
+
"devlop": "^1.0.0",
|
|
3056
|
+
"markdown-table": "^3.0.0",
|
|
3057
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3058
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
3059
|
+
},
|
|
3060
|
+
"funding": {
|
|
3061
|
+
"type": "opencollective",
|
|
3062
|
+
"url": "https://opencollective.com/unified"
|
|
3063
|
+
},
|
|
3064
|
+
"integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
|
|
2795
3065
|
"license": "MIT",
|
|
2796
|
-
"resolved": "https://registry.npmjs.org/
|
|
2797
|
-
"version": "2.0.
|
|
3066
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
|
|
3067
|
+
"version": "2.0.0"
|
|
2798
3068
|
},
|
|
2799
|
-
"node_modules/
|
|
2800
|
-
"
|
|
2801
|
-
|
|
2802
|
-
"
|
|
3069
|
+
"node_modules/mdast-util-gfm-task-list-item": {
|
|
3070
|
+
"dependencies": {
|
|
3071
|
+
"@types/mdast": "^4.0.0",
|
|
3072
|
+
"devlop": "^1.0.0",
|
|
3073
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3074
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
2803
3075
|
},
|
|
2804
|
-
"
|
|
3076
|
+
"funding": {
|
|
3077
|
+
"type": "opencollective",
|
|
3078
|
+
"url": "https://opencollective.com/unified"
|
|
3079
|
+
},
|
|
3080
|
+
"integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
|
|
2805
3081
|
"license": "MIT",
|
|
2806
|
-
"resolved": "https://registry.npmjs.org/
|
|
2807
|
-
"version": "
|
|
3082
|
+
"resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
|
|
3083
|
+
"version": "2.0.0"
|
|
2808
3084
|
},
|
|
2809
|
-
"node_modules/
|
|
2810
|
-
"
|
|
2811
|
-
|
|
2812
|
-
"
|
|
3085
|
+
"node_modules/mdast-util-mdx-expression": {
|
|
3086
|
+
"dependencies": {
|
|
3087
|
+
"@types/estree-jsx": "^1.0.0",
|
|
3088
|
+
"@types/hast": "^3.0.0",
|
|
3089
|
+
"@types/mdast": "^4.0.0",
|
|
3090
|
+
"devlop": "^1.0.0",
|
|
3091
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3092
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
2813
3093
|
},
|
|
2814
|
-
"
|
|
3094
|
+
"funding": {
|
|
3095
|
+
"type": "opencollective",
|
|
3096
|
+
"url": "https://opencollective.com/unified"
|
|
3097
|
+
},
|
|
3098
|
+
"integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
|
|
3099
|
+
"license": "MIT",
|
|
3100
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
|
|
3101
|
+
"version": "2.0.1"
|
|
3102
|
+
},
|
|
3103
|
+
"node_modules/mdast-util-mdx-jsx": {
|
|
3104
|
+
"dependencies": {
|
|
3105
|
+
"@types/estree-jsx": "^1.0.0",
|
|
3106
|
+
"@types/hast": "^3.0.0",
|
|
3107
|
+
"@types/mdast": "^4.0.0",
|
|
3108
|
+
"@types/unist": "^3.0.0",
|
|
3109
|
+
"ccount": "^2.0.0",
|
|
3110
|
+
"devlop": "^1.1.0",
|
|
3111
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3112
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
3113
|
+
"parse-entities": "^4.0.0",
|
|
3114
|
+
"stringify-entities": "^4.0.0",
|
|
3115
|
+
"unist-util-stringify-position": "^4.0.0",
|
|
3116
|
+
"vfile-message": "^4.0.0"
|
|
3117
|
+
},
|
|
3118
|
+
"funding": {
|
|
3119
|
+
"type": "opencollective",
|
|
3120
|
+
"url": "https://opencollective.com/unified"
|
|
3121
|
+
},
|
|
3122
|
+
"integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
|
|
3123
|
+
"license": "MIT",
|
|
3124
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
|
|
3125
|
+
"version": "3.2.0"
|
|
3126
|
+
},
|
|
3127
|
+
"node_modules/mdast-util-mdxjs-esm": {
|
|
3128
|
+
"dependencies": {
|
|
3129
|
+
"@types/estree-jsx": "^1.0.0",
|
|
3130
|
+
"@types/hast": "^3.0.0",
|
|
3131
|
+
"@types/mdast": "^4.0.0",
|
|
3132
|
+
"devlop": "^1.0.0",
|
|
3133
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
3134
|
+
"mdast-util-to-markdown": "^2.0.0"
|
|
3135
|
+
},
|
|
3136
|
+
"funding": {
|
|
3137
|
+
"type": "opencollective",
|
|
3138
|
+
"url": "https://opencollective.com/unified"
|
|
3139
|
+
},
|
|
3140
|
+
"integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
|
|
3141
|
+
"license": "MIT",
|
|
3142
|
+
"resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
|
|
3143
|
+
"version": "2.0.1"
|
|
3144
|
+
},
|
|
3145
|
+
"node_modules/mdast-util-phrasing": {
|
|
3146
|
+
"dependencies": {
|
|
3147
|
+
"@types/mdast": "^4.0.0",
|
|
3148
|
+
"unist-util-is": "^6.0.0"
|
|
3149
|
+
},
|
|
3150
|
+
"funding": {
|
|
3151
|
+
"type": "opencollective",
|
|
3152
|
+
"url": "https://opencollective.com/unified"
|
|
3153
|
+
},
|
|
3154
|
+
"integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
|
|
3155
|
+
"license": "MIT",
|
|
3156
|
+
"resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
|
|
3157
|
+
"version": "4.1.0"
|
|
3158
|
+
},
|
|
3159
|
+
"node_modules/mdast-util-to-hast": {
|
|
3160
|
+
"dependencies": {
|
|
3161
|
+
"@types/hast": "^3.0.0",
|
|
3162
|
+
"@types/mdast": "^4.0.0",
|
|
3163
|
+
"@ungap/structured-clone": "^1.0.0",
|
|
3164
|
+
"devlop": "^1.0.0",
|
|
3165
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
3166
|
+
"trim-lines": "^3.0.0",
|
|
3167
|
+
"unist-util-position": "^5.0.0",
|
|
3168
|
+
"unist-util-visit": "^5.0.0",
|
|
3169
|
+
"vfile": "^6.0.0"
|
|
3170
|
+
},
|
|
3171
|
+
"funding": {
|
|
3172
|
+
"type": "opencollective",
|
|
3173
|
+
"url": "https://opencollective.com/unified"
|
|
3174
|
+
},
|
|
3175
|
+
"integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
|
|
3176
|
+
"license": "MIT",
|
|
3177
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
|
|
3178
|
+
"version": "13.2.1"
|
|
3179
|
+
},
|
|
3180
|
+
"node_modules/mdast-util-to-markdown": {
|
|
3181
|
+
"dependencies": {
|
|
3182
|
+
"@types/mdast": "^4.0.0",
|
|
3183
|
+
"@types/unist": "^3.0.0",
|
|
3184
|
+
"longest-streak": "^3.0.0",
|
|
3185
|
+
"mdast-util-phrasing": "^4.0.0",
|
|
3186
|
+
"mdast-util-to-string": "^4.0.0",
|
|
3187
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
3188
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
3189
|
+
"unist-util-visit": "^5.0.0",
|
|
3190
|
+
"zwitch": "^2.0.0"
|
|
3191
|
+
},
|
|
3192
|
+
"funding": {
|
|
3193
|
+
"type": "opencollective",
|
|
3194
|
+
"url": "https://opencollective.com/unified"
|
|
3195
|
+
},
|
|
3196
|
+
"integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
|
|
3197
|
+
"license": "MIT",
|
|
3198
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
|
|
3199
|
+
"version": "2.1.2"
|
|
3200
|
+
},
|
|
3201
|
+
"node_modules/mdast-util-to-string": {
|
|
3202
|
+
"dependencies": {
|
|
3203
|
+
"@types/mdast": "^4.0.0"
|
|
3204
|
+
},
|
|
3205
|
+
"funding": {
|
|
3206
|
+
"type": "opencollective",
|
|
3207
|
+
"url": "https://opencollective.com/unified"
|
|
3208
|
+
},
|
|
3209
|
+
"integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
|
|
3210
|
+
"license": "MIT",
|
|
3211
|
+
"resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
|
|
3212
|
+
"version": "4.0.0"
|
|
3213
|
+
},
|
|
3214
|
+
"node_modules/merge2": {
|
|
3215
|
+
"dev": true,
|
|
3216
|
+
"engines": {
|
|
3217
|
+
"node": ">= 8"
|
|
3218
|
+
},
|
|
3219
|
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
|
3220
|
+
"license": "MIT",
|
|
3221
|
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
3222
|
+
"version": "1.4.1"
|
|
3223
|
+
},
|
|
3224
|
+
"node_modules/micromark": {
|
|
3225
|
+
"dependencies": {
|
|
3226
|
+
"@types/debug": "^4.0.0",
|
|
3227
|
+
"debug": "^4.0.0",
|
|
3228
|
+
"decode-named-character-reference": "^1.0.0",
|
|
3229
|
+
"devlop": "^1.0.0",
|
|
3230
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
3231
|
+
"micromark-factory-space": "^2.0.0",
|
|
3232
|
+
"micromark-util-character": "^2.0.0",
|
|
3233
|
+
"micromark-util-chunked": "^2.0.0",
|
|
3234
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
3235
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
3236
|
+
"micromark-util-encode": "^2.0.0",
|
|
3237
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
3238
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
3239
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
3240
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
3241
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3242
|
+
"micromark-util-types": "^2.0.0"
|
|
3243
|
+
},
|
|
3244
|
+
"funding": [
|
|
3245
|
+
{
|
|
3246
|
+
"type": "GitHub Sponsors",
|
|
3247
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3248
|
+
},
|
|
3249
|
+
{
|
|
3250
|
+
"type": "OpenCollective",
|
|
3251
|
+
"url": "https://opencollective.com/unified"
|
|
3252
|
+
}
|
|
3253
|
+
],
|
|
3254
|
+
"integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
|
|
3255
|
+
"license": "MIT",
|
|
3256
|
+
"resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
|
|
3257
|
+
"version": "4.0.2"
|
|
3258
|
+
},
|
|
3259
|
+
"node_modules/micromark-core-commonmark": {
|
|
3260
|
+
"dependencies": {
|
|
3261
|
+
"decode-named-character-reference": "^1.0.0",
|
|
3262
|
+
"devlop": "^1.0.0",
|
|
3263
|
+
"micromark-factory-destination": "^2.0.0",
|
|
3264
|
+
"micromark-factory-label": "^2.0.0",
|
|
3265
|
+
"micromark-factory-space": "^2.0.0",
|
|
3266
|
+
"micromark-factory-title": "^2.0.0",
|
|
3267
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
3268
|
+
"micromark-util-character": "^2.0.0",
|
|
3269
|
+
"micromark-util-chunked": "^2.0.0",
|
|
3270
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
3271
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
3272
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
3273
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
3274
|
+
"micromark-util-subtokenize": "^2.0.0",
|
|
3275
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3276
|
+
"micromark-util-types": "^2.0.0"
|
|
3277
|
+
},
|
|
3278
|
+
"funding": [
|
|
3279
|
+
{
|
|
3280
|
+
"type": "GitHub Sponsors",
|
|
3281
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
"type": "OpenCollective",
|
|
3285
|
+
"url": "https://opencollective.com/unified"
|
|
3286
|
+
}
|
|
3287
|
+
],
|
|
3288
|
+
"integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
|
|
3289
|
+
"license": "MIT",
|
|
3290
|
+
"resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
|
|
3291
|
+
"version": "2.0.3"
|
|
3292
|
+
},
|
|
3293
|
+
"node_modules/micromark-extension-gfm": {
|
|
3294
|
+
"dependencies": {
|
|
3295
|
+
"micromark-extension-gfm-autolink-literal": "^2.0.0",
|
|
3296
|
+
"micromark-extension-gfm-footnote": "^2.0.0",
|
|
3297
|
+
"micromark-extension-gfm-strikethrough": "^2.0.0",
|
|
3298
|
+
"micromark-extension-gfm-table": "^2.0.0",
|
|
3299
|
+
"micromark-extension-gfm-tagfilter": "^2.0.0",
|
|
3300
|
+
"micromark-extension-gfm-task-list-item": "^2.0.0",
|
|
3301
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
3302
|
+
"micromark-util-types": "^2.0.0"
|
|
3303
|
+
},
|
|
3304
|
+
"funding": {
|
|
3305
|
+
"type": "opencollective",
|
|
3306
|
+
"url": "https://opencollective.com/unified"
|
|
3307
|
+
},
|
|
3308
|
+
"integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
|
|
3309
|
+
"license": "MIT",
|
|
3310
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
|
|
3311
|
+
"version": "3.0.0"
|
|
3312
|
+
},
|
|
3313
|
+
"node_modules/micromark-extension-gfm-autolink-literal": {
|
|
3314
|
+
"dependencies": {
|
|
3315
|
+
"micromark-util-character": "^2.0.0",
|
|
3316
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
3317
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3318
|
+
"micromark-util-types": "^2.0.0"
|
|
3319
|
+
},
|
|
3320
|
+
"funding": {
|
|
3321
|
+
"type": "opencollective",
|
|
3322
|
+
"url": "https://opencollective.com/unified"
|
|
3323
|
+
},
|
|
3324
|
+
"integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
|
|
3325
|
+
"license": "MIT",
|
|
3326
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
|
|
3327
|
+
"version": "2.1.0"
|
|
3328
|
+
},
|
|
3329
|
+
"node_modules/micromark-extension-gfm-footnote": {
|
|
3330
|
+
"dependencies": {
|
|
3331
|
+
"devlop": "^1.0.0",
|
|
3332
|
+
"micromark-core-commonmark": "^2.0.0",
|
|
3333
|
+
"micromark-factory-space": "^2.0.0",
|
|
3334
|
+
"micromark-util-character": "^2.0.0",
|
|
3335
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
3336
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
3337
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3338
|
+
"micromark-util-types": "^2.0.0"
|
|
3339
|
+
},
|
|
3340
|
+
"funding": {
|
|
3341
|
+
"type": "opencollective",
|
|
3342
|
+
"url": "https://opencollective.com/unified"
|
|
3343
|
+
},
|
|
3344
|
+
"integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
|
|
3345
|
+
"license": "MIT",
|
|
3346
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
|
|
3347
|
+
"version": "2.1.0"
|
|
3348
|
+
},
|
|
3349
|
+
"node_modules/micromark-extension-gfm-strikethrough": {
|
|
3350
|
+
"dependencies": {
|
|
3351
|
+
"devlop": "^1.0.0",
|
|
3352
|
+
"micromark-util-chunked": "^2.0.0",
|
|
3353
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
3354
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
3355
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3356
|
+
"micromark-util-types": "^2.0.0"
|
|
3357
|
+
},
|
|
3358
|
+
"funding": {
|
|
3359
|
+
"type": "opencollective",
|
|
3360
|
+
"url": "https://opencollective.com/unified"
|
|
3361
|
+
},
|
|
3362
|
+
"integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
|
|
3363
|
+
"license": "MIT",
|
|
3364
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
|
|
3365
|
+
"version": "2.1.0"
|
|
3366
|
+
},
|
|
3367
|
+
"node_modules/micromark-extension-gfm-table": {
|
|
3368
|
+
"dependencies": {
|
|
3369
|
+
"devlop": "^1.0.0",
|
|
3370
|
+
"micromark-factory-space": "^2.0.0",
|
|
3371
|
+
"micromark-util-character": "^2.0.0",
|
|
3372
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3373
|
+
"micromark-util-types": "^2.0.0"
|
|
3374
|
+
},
|
|
3375
|
+
"funding": {
|
|
3376
|
+
"type": "opencollective",
|
|
3377
|
+
"url": "https://opencollective.com/unified"
|
|
3378
|
+
},
|
|
3379
|
+
"integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
|
|
3380
|
+
"license": "MIT",
|
|
3381
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
|
|
3382
|
+
"version": "2.1.1"
|
|
3383
|
+
},
|
|
3384
|
+
"node_modules/micromark-extension-gfm-tagfilter": {
|
|
3385
|
+
"dependencies": {
|
|
3386
|
+
"micromark-util-types": "^2.0.0"
|
|
3387
|
+
},
|
|
3388
|
+
"funding": {
|
|
3389
|
+
"type": "opencollective",
|
|
3390
|
+
"url": "https://opencollective.com/unified"
|
|
3391
|
+
},
|
|
3392
|
+
"integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
|
|
3393
|
+
"license": "MIT",
|
|
3394
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
|
|
3395
|
+
"version": "2.0.0"
|
|
3396
|
+
},
|
|
3397
|
+
"node_modules/micromark-extension-gfm-task-list-item": {
|
|
3398
|
+
"dependencies": {
|
|
3399
|
+
"devlop": "^1.0.0",
|
|
3400
|
+
"micromark-factory-space": "^2.0.0",
|
|
3401
|
+
"micromark-util-character": "^2.0.0",
|
|
3402
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3403
|
+
"micromark-util-types": "^2.0.0"
|
|
3404
|
+
},
|
|
3405
|
+
"funding": {
|
|
3406
|
+
"type": "opencollective",
|
|
3407
|
+
"url": "https://opencollective.com/unified"
|
|
3408
|
+
},
|
|
3409
|
+
"integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
|
|
3410
|
+
"license": "MIT",
|
|
3411
|
+
"resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
|
|
3412
|
+
"version": "2.1.0"
|
|
3413
|
+
},
|
|
3414
|
+
"node_modules/micromark-factory-destination": {
|
|
3415
|
+
"dependencies": {
|
|
3416
|
+
"micromark-util-character": "^2.0.0",
|
|
3417
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3418
|
+
"micromark-util-types": "^2.0.0"
|
|
3419
|
+
},
|
|
3420
|
+
"funding": [
|
|
3421
|
+
{
|
|
3422
|
+
"type": "GitHub Sponsors",
|
|
3423
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"type": "OpenCollective",
|
|
3427
|
+
"url": "https://opencollective.com/unified"
|
|
3428
|
+
}
|
|
3429
|
+
],
|
|
3430
|
+
"integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
|
|
3431
|
+
"license": "MIT",
|
|
3432
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
|
|
3433
|
+
"version": "2.0.1"
|
|
3434
|
+
},
|
|
3435
|
+
"node_modules/micromark-factory-label": {
|
|
3436
|
+
"dependencies": {
|
|
3437
|
+
"devlop": "^1.0.0",
|
|
3438
|
+
"micromark-util-character": "^2.0.0",
|
|
3439
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3440
|
+
"micromark-util-types": "^2.0.0"
|
|
3441
|
+
},
|
|
3442
|
+
"funding": [
|
|
3443
|
+
{
|
|
3444
|
+
"type": "GitHub Sponsors",
|
|
3445
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3446
|
+
},
|
|
3447
|
+
{
|
|
3448
|
+
"type": "OpenCollective",
|
|
3449
|
+
"url": "https://opencollective.com/unified"
|
|
3450
|
+
}
|
|
3451
|
+
],
|
|
3452
|
+
"integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
|
|
3453
|
+
"license": "MIT",
|
|
3454
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
|
|
3455
|
+
"version": "2.0.1"
|
|
3456
|
+
},
|
|
3457
|
+
"node_modules/micromark-factory-space": {
|
|
3458
|
+
"dependencies": {
|
|
3459
|
+
"micromark-util-character": "^2.0.0",
|
|
3460
|
+
"micromark-util-types": "^2.0.0"
|
|
3461
|
+
},
|
|
3462
|
+
"funding": [
|
|
3463
|
+
{
|
|
3464
|
+
"type": "GitHub Sponsors",
|
|
3465
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
"type": "OpenCollective",
|
|
3469
|
+
"url": "https://opencollective.com/unified"
|
|
3470
|
+
}
|
|
3471
|
+
],
|
|
3472
|
+
"integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
|
|
3473
|
+
"license": "MIT",
|
|
3474
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
|
|
3475
|
+
"version": "2.0.1"
|
|
3476
|
+
},
|
|
3477
|
+
"node_modules/micromark-factory-title": {
|
|
3478
|
+
"dependencies": {
|
|
3479
|
+
"micromark-factory-space": "^2.0.0",
|
|
3480
|
+
"micromark-util-character": "^2.0.0",
|
|
3481
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3482
|
+
"micromark-util-types": "^2.0.0"
|
|
3483
|
+
},
|
|
3484
|
+
"funding": [
|
|
3485
|
+
{
|
|
3486
|
+
"type": "GitHub Sponsors",
|
|
3487
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
"type": "OpenCollective",
|
|
3491
|
+
"url": "https://opencollective.com/unified"
|
|
3492
|
+
}
|
|
3493
|
+
],
|
|
3494
|
+
"integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
|
|
3495
|
+
"license": "MIT",
|
|
3496
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
|
|
3497
|
+
"version": "2.0.1"
|
|
3498
|
+
},
|
|
3499
|
+
"node_modules/micromark-factory-whitespace": {
|
|
3500
|
+
"dependencies": {
|
|
3501
|
+
"micromark-factory-space": "^2.0.0",
|
|
3502
|
+
"micromark-util-character": "^2.0.0",
|
|
3503
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3504
|
+
"micromark-util-types": "^2.0.0"
|
|
3505
|
+
},
|
|
3506
|
+
"funding": [
|
|
3507
|
+
{
|
|
3508
|
+
"type": "GitHub Sponsors",
|
|
3509
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3510
|
+
},
|
|
3511
|
+
{
|
|
3512
|
+
"type": "OpenCollective",
|
|
3513
|
+
"url": "https://opencollective.com/unified"
|
|
3514
|
+
}
|
|
3515
|
+
],
|
|
3516
|
+
"integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
|
|
3517
|
+
"license": "MIT",
|
|
3518
|
+
"resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
|
|
3519
|
+
"version": "2.0.1"
|
|
3520
|
+
},
|
|
3521
|
+
"node_modules/micromark-util-character": {
|
|
3522
|
+
"dependencies": {
|
|
3523
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3524
|
+
"micromark-util-types": "^2.0.0"
|
|
3525
|
+
},
|
|
3526
|
+
"funding": [
|
|
3527
|
+
{
|
|
3528
|
+
"type": "GitHub Sponsors",
|
|
3529
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
"type": "OpenCollective",
|
|
3533
|
+
"url": "https://opencollective.com/unified"
|
|
3534
|
+
}
|
|
3535
|
+
],
|
|
3536
|
+
"integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
|
|
3537
|
+
"license": "MIT",
|
|
3538
|
+
"resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
|
|
3539
|
+
"version": "2.1.1"
|
|
3540
|
+
},
|
|
3541
|
+
"node_modules/micromark-util-chunked": {
|
|
3542
|
+
"dependencies": {
|
|
3543
|
+
"micromark-util-symbol": "^2.0.0"
|
|
3544
|
+
},
|
|
3545
|
+
"funding": [
|
|
3546
|
+
{
|
|
3547
|
+
"type": "GitHub Sponsors",
|
|
3548
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3549
|
+
},
|
|
3550
|
+
{
|
|
3551
|
+
"type": "OpenCollective",
|
|
3552
|
+
"url": "https://opencollective.com/unified"
|
|
3553
|
+
}
|
|
3554
|
+
],
|
|
3555
|
+
"integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
|
|
3556
|
+
"license": "MIT",
|
|
3557
|
+
"resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
|
|
3558
|
+
"version": "2.0.1"
|
|
3559
|
+
},
|
|
3560
|
+
"node_modules/micromark-util-classify-character": {
|
|
3561
|
+
"dependencies": {
|
|
3562
|
+
"micromark-util-character": "^2.0.0",
|
|
3563
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3564
|
+
"micromark-util-types": "^2.0.0"
|
|
3565
|
+
},
|
|
3566
|
+
"funding": [
|
|
3567
|
+
{
|
|
3568
|
+
"type": "GitHub Sponsors",
|
|
3569
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3570
|
+
},
|
|
3571
|
+
{
|
|
3572
|
+
"type": "OpenCollective",
|
|
3573
|
+
"url": "https://opencollective.com/unified"
|
|
3574
|
+
}
|
|
3575
|
+
],
|
|
3576
|
+
"integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
|
|
3577
|
+
"license": "MIT",
|
|
3578
|
+
"resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
|
|
3579
|
+
"version": "2.0.1"
|
|
3580
|
+
},
|
|
3581
|
+
"node_modules/micromark-util-combine-extensions": {
|
|
3582
|
+
"dependencies": {
|
|
3583
|
+
"micromark-util-chunked": "^2.0.0",
|
|
3584
|
+
"micromark-util-types": "^2.0.0"
|
|
3585
|
+
},
|
|
3586
|
+
"funding": [
|
|
3587
|
+
{
|
|
3588
|
+
"type": "GitHub Sponsors",
|
|
3589
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3590
|
+
},
|
|
3591
|
+
{
|
|
3592
|
+
"type": "OpenCollective",
|
|
3593
|
+
"url": "https://opencollective.com/unified"
|
|
3594
|
+
}
|
|
3595
|
+
],
|
|
3596
|
+
"integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
|
|
3597
|
+
"license": "MIT",
|
|
3598
|
+
"resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
|
|
3599
|
+
"version": "2.0.1"
|
|
3600
|
+
},
|
|
3601
|
+
"node_modules/micromark-util-decode-numeric-character-reference": {
|
|
3602
|
+
"dependencies": {
|
|
3603
|
+
"micromark-util-symbol": "^2.0.0"
|
|
3604
|
+
},
|
|
3605
|
+
"funding": [
|
|
3606
|
+
{
|
|
3607
|
+
"type": "GitHub Sponsors",
|
|
3608
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"type": "OpenCollective",
|
|
3612
|
+
"url": "https://opencollective.com/unified"
|
|
3613
|
+
}
|
|
3614
|
+
],
|
|
3615
|
+
"integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
|
|
3616
|
+
"license": "MIT",
|
|
3617
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
|
|
3618
|
+
"version": "2.0.2"
|
|
3619
|
+
},
|
|
3620
|
+
"node_modules/micromark-util-decode-string": {
|
|
3621
|
+
"dependencies": {
|
|
3622
|
+
"decode-named-character-reference": "^1.0.0",
|
|
3623
|
+
"micromark-util-character": "^2.0.0",
|
|
3624
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.0",
|
|
3625
|
+
"micromark-util-symbol": "^2.0.0"
|
|
3626
|
+
},
|
|
3627
|
+
"funding": [
|
|
3628
|
+
{
|
|
3629
|
+
"type": "GitHub Sponsors",
|
|
3630
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3631
|
+
},
|
|
3632
|
+
{
|
|
3633
|
+
"type": "OpenCollective",
|
|
3634
|
+
"url": "https://opencollective.com/unified"
|
|
3635
|
+
}
|
|
3636
|
+
],
|
|
3637
|
+
"integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
|
|
3638
|
+
"license": "MIT",
|
|
3639
|
+
"resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
|
|
3640
|
+
"version": "2.0.1"
|
|
3641
|
+
},
|
|
3642
|
+
"node_modules/micromark-util-encode": {
|
|
3643
|
+
"funding": [
|
|
3644
|
+
{
|
|
3645
|
+
"type": "GitHub Sponsors",
|
|
3646
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3647
|
+
},
|
|
3648
|
+
{
|
|
3649
|
+
"type": "OpenCollective",
|
|
3650
|
+
"url": "https://opencollective.com/unified"
|
|
3651
|
+
}
|
|
3652
|
+
],
|
|
3653
|
+
"integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
|
|
3654
|
+
"license": "MIT",
|
|
3655
|
+
"resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
|
|
3656
|
+
"version": "2.0.1"
|
|
3657
|
+
},
|
|
3658
|
+
"node_modules/micromark-util-html-tag-name": {
|
|
3659
|
+
"funding": [
|
|
3660
|
+
{
|
|
3661
|
+
"type": "GitHub Sponsors",
|
|
3662
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3663
|
+
},
|
|
3664
|
+
{
|
|
3665
|
+
"type": "OpenCollective",
|
|
3666
|
+
"url": "https://opencollective.com/unified"
|
|
3667
|
+
}
|
|
3668
|
+
],
|
|
3669
|
+
"integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
|
|
3670
|
+
"license": "MIT",
|
|
3671
|
+
"resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
|
|
3672
|
+
"version": "2.0.1"
|
|
3673
|
+
},
|
|
3674
|
+
"node_modules/micromark-util-normalize-identifier": {
|
|
3675
|
+
"dependencies": {
|
|
3676
|
+
"micromark-util-symbol": "^2.0.0"
|
|
3677
|
+
},
|
|
3678
|
+
"funding": [
|
|
3679
|
+
{
|
|
3680
|
+
"type": "GitHub Sponsors",
|
|
3681
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"type": "OpenCollective",
|
|
3685
|
+
"url": "https://opencollective.com/unified"
|
|
3686
|
+
}
|
|
3687
|
+
],
|
|
3688
|
+
"integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
|
|
3689
|
+
"license": "MIT",
|
|
3690
|
+
"resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
|
|
3691
|
+
"version": "2.0.1"
|
|
3692
|
+
},
|
|
3693
|
+
"node_modules/micromark-util-resolve-all": {
|
|
3694
|
+
"dependencies": {
|
|
3695
|
+
"micromark-util-types": "^2.0.0"
|
|
3696
|
+
},
|
|
3697
|
+
"funding": [
|
|
3698
|
+
{
|
|
3699
|
+
"type": "GitHub Sponsors",
|
|
3700
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3701
|
+
},
|
|
3702
|
+
{
|
|
3703
|
+
"type": "OpenCollective",
|
|
3704
|
+
"url": "https://opencollective.com/unified"
|
|
3705
|
+
}
|
|
3706
|
+
],
|
|
3707
|
+
"integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
|
|
3708
|
+
"license": "MIT",
|
|
3709
|
+
"resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
|
|
3710
|
+
"version": "2.0.1"
|
|
3711
|
+
},
|
|
3712
|
+
"node_modules/micromark-util-sanitize-uri": {
|
|
3713
|
+
"dependencies": {
|
|
3714
|
+
"micromark-util-character": "^2.0.0",
|
|
3715
|
+
"micromark-util-encode": "^2.0.0",
|
|
3716
|
+
"micromark-util-symbol": "^2.0.0"
|
|
3717
|
+
},
|
|
3718
|
+
"funding": [
|
|
3719
|
+
{
|
|
3720
|
+
"type": "GitHub Sponsors",
|
|
3721
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
"type": "OpenCollective",
|
|
3725
|
+
"url": "https://opencollective.com/unified"
|
|
3726
|
+
}
|
|
3727
|
+
],
|
|
3728
|
+
"integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
|
|
3729
|
+
"license": "MIT",
|
|
3730
|
+
"resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
|
|
3731
|
+
"version": "2.0.1"
|
|
3732
|
+
},
|
|
3733
|
+
"node_modules/micromark-util-subtokenize": {
|
|
3734
|
+
"dependencies": {
|
|
3735
|
+
"devlop": "^1.0.0",
|
|
3736
|
+
"micromark-util-chunked": "^2.0.0",
|
|
3737
|
+
"micromark-util-symbol": "^2.0.0",
|
|
3738
|
+
"micromark-util-types": "^2.0.0"
|
|
3739
|
+
},
|
|
3740
|
+
"funding": [
|
|
3741
|
+
{
|
|
3742
|
+
"type": "GitHub Sponsors",
|
|
3743
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3744
|
+
},
|
|
3745
|
+
{
|
|
3746
|
+
"type": "OpenCollective",
|
|
3747
|
+
"url": "https://opencollective.com/unified"
|
|
3748
|
+
}
|
|
3749
|
+
],
|
|
3750
|
+
"integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
|
|
3751
|
+
"license": "MIT",
|
|
3752
|
+
"resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
|
|
3753
|
+
"version": "2.1.0"
|
|
3754
|
+
},
|
|
3755
|
+
"node_modules/micromark-util-symbol": {
|
|
3756
|
+
"funding": [
|
|
3757
|
+
{
|
|
3758
|
+
"type": "GitHub Sponsors",
|
|
3759
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3760
|
+
},
|
|
3761
|
+
{
|
|
3762
|
+
"type": "OpenCollective",
|
|
3763
|
+
"url": "https://opencollective.com/unified"
|
|
3764
|
+
}
|
|
3765
|
+
],
|
|
3766
|
+
"integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
|
|
3767
|
+
"license": "MIT",
|
|
3768
|
+
"resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
|
|
3769
|
+
"version": "2.0.1"
|
|
3770
|
+
},
|
|
3771
|
+
"node_modules/micromark-util-types": {
|
|
3772
|
+
"funding": [
|
|
3773
|
+
{
|
|
3774
|
+
"type": "GitHub Sponsors",
|
|
3775
|
+
"url": "https://github.com/sponsors/unifiedjs"
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
"type": "OpenCollective",
|
|
3779
|
+
"url": "https://opencollective.com/unified"
|
|
3780
|
+
}
|
|
3781
|
+
],
|
|
3782
|
+
"integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
|
|
3783
|
+
"license": "MIT",
|
|
3784
|
+
"resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
|
|
3785
|
+
"version": "2.0.2"
|
|
3786
|
+
},
|
|
3787
|
+
"node_modules/micromatch": {
|
|
3788
|
+
"dependencies": {
|
|
3789
|
+
"braces": "^3.0.3",
|
|
3790
|
+
"picomatch": "^2.3.1"
|
|
3791
|
+
},
|
|
3792
|
+
"dev": true,
|
|
3793
|
+
"engines": {
|
|
3794
|
+
"node": ">=8.6"
|
|
3795
|
+
},
|
|
3796
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
3797
|
+
"license": "MIT",
|
|
3798
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
3799
|
+
"version": "4.0.8"
|
|
3800
|
+
},
|
|
3801
|
+
"node_modules/motion-dom": {
|
|
3802
|
+
"dependencies": {
|
|
3803
|
+
"motion-utils": "^12.23.6"
|
|
3804
|
+
},
|
|
3805
|
+
"integrity": "sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==",
|
|
3806
|
+
"license": "MIT",
|
|
3807
|
+
"resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.23.tgz",
|
|
3808
|
+
"version": "12.23.23"
|
|
3809
|
+
},
|
|
3810
|
+
"node_modules/motion-utils": {
|
|
3811
|
+
"integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==",
|
|
3812
|
+
"license": "MIT",
|
|
3813
|
+
"resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz",
|
|
3814
|
+
"version": "12.23.6"
|
|
3815
|
+
},
|
|
3816
|
+
"node_modules/ms": {
|
|
3817
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
3818
|
+
"license": "MIT",
|
|
3819
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
3820
|
+
"version": "2.1.3"
|
|
3821
|
+
},
|
|
3822
|
+
"node_modules/mz": {
|
|
3823
|
+
"dependencies": {
|
|
3824
|
+
"any-promise": "^1.0.0",
|
|
3825
|
+
"object-assign": "^4.0.1",
|
|
3826
|
+
"thenify-all": "^1.0.0"
|
|
3827
|
+
},
|
|
3828
|
+
"dev": true,
|
|
3829
|
+
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
|
|
3830
|
+
"license": "MIT",
|
|
3831
|
+
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
|
|
3832
|
+
"version": "2.7.0"
|
|
3833
|
+
},
|
|
3834
|
+
"node_modules/nanoid": {
|
|
3835
|
+
"bin": {
|
|
3836
|
+
"nanoid": "bin/nanoid.cjs"
|
|
3837
|
+
},
|
|
3838
|
+
"dev": true,
|
|
3839
|
+
"engines": {
|
|
3840
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
3841
|
+
},
|
|
3842
|
+
"funding": [
|
|
3843
|
+
{
|
|
3844
|
+
"type": "github",
|
|
3845
|
+
"url": "https://github.com/sponsors/ai"
|
|
3846
|
+
}
|
|
3847
|
+
],
|
|
3848
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
3849
|
+
"license": "MIT",
|
|
3850
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
3851
|
+
"version": "3.3.11"
|
|
3852
|
+
},
|
|
3853
|
+
"node_modules/node-releases": {
|
|
3854
|
+
"dev": true,
|
|
3855
|
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
|
3856
|
+
"license": "MIT",
|
|
3857
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
|
3858
|
+
"version": "2.0.27"
|
|
3859
|
+
},
|
|
3860
|
+
"node_modules/normalize-path": {
|
|
3861
|
+
"dev": true,
|
|
3862
|
+
"engines": {
|
|
3863
|
+
"node": ">=0.10.0"
|
|
3864
|
+
},
|
|
3865
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
3866
|
+
"license": "MIT",
|
|
3867
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
3868
|
+
"version": "3.0.0"
|
|
3869
|
+
},
|
|
3870
|
+
"node_modules/normalize-range": {
|
|
3871
|
+
"dev": true,
|
|
3872
|
+
"engines": {
|
|
3873
|
+
"node": ">=0.10.0"
|
|
3874
|
+
},
|
|
3875
|
+
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
|
|
2815
3876
|
"license": "MIT",
|
|
2816
3877
|
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
|
2817
3878
|
"version": "0.1.2"
|
|
@@ -3158,6 +4219,33 @@
|
|
|
3158
4219
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
|
|
3159
4220
|
"version": "18.3.1"
|
|
3160
4221
|
},
|
|
4222
|
+
"node_modules/react-markdown": {
|
|
4223
|
+
"dependencies": {
|
|
4224
|
+
"@types/hast": "^3.0.0",
|
|
4225
|
+
"@types/mdast": "^4.0.0",
|
|
4226
|
+
"devlop": "^1.0.0",
|
|
4227
|
+
"hast-util-to-jsx-runtime": "^2.0.0",
|
|
4228
|
+
"html-url-attributes": "^3.0.0",
|
|
4229
|
+
"mdast-util-to-hast": "^13.0.0",
|
|
4230
|
+
"remark-parse": "^11.0.0",
|
|
4231
|
+
"remark-rehype": "^11.0.0",
|
|
4232
|
+
"unified": "^11.0.0",
|
|
4233
|
+
"unist-util-visit": "^5.0.0",
|
|
4234
|
+
"vfile": "^6.0.0"
|
|
4235
|
+
},
|
|
4236
|
+
"funding": {
|
|
4237
|
+
"type": "opencollective",
|
|
4238
|
+
"url": "https://opencollective.com/unified"
|
|
4239
|
+
},
|
|
4240
|
+
"integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
|
|
4241
|
+
"license": "MIT",
|
|
4242
|
+
"peerDependencies": {
|
|
4243
|
+
"@types/react": ">=18",
|
|
4244
|
+
"react": ">=18"
|
|
4245
|
+
},
|
|
4246
|
+
"resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
|
|
4247
|
+
"version": "10.1.0"
|
|
4248
|
+
},
|
|
3161
4249
|
"node_modules/react-refresh": {
|
|
3162
4250
|
"dev": true,
|
|
3163
4251
|
"engines": {
|
|
@@ -3168,6 +4256,16 @@
|
|
|
3168
4256
|
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
3169
4257
|
"version": "0.17.0"
|
|
3170
4258
|
},
|
|
4259
|
+
"node_modules/react-resizable-panels": {
|
|
4260
|
+
"integrity": "sha512-b3qKHQ3MLqOgSS+FRYKapNkJZf5EQzuf6+RLiq1/IlTHw99YrZ2NJZLk4hQIzTnnIkRg2LUqyVinu6YWWpUYew==",
|
|
4261
|
+
"license": "MIT",
|
|
4262
|
+
"peerDependencies": {
|
|
4263
|
+
"react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
4264
|
+
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|
|
4265
|
+
},
|
|
4266
|
+
"resolved": "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-3.0.6.tgz",
|
|
4267
|
+
"version": "3.0.6"
|
|
4268
|
+
},
|
|
3171
4269
|
"node_modules/react-router": {
|
|
3172
4270
|
"dependencies": {
|
|
3173
4271
|
"@remix-run/router": "1.23.1"
|
|
@@ -3340,6 +4438,72 @@
|
|
|
3340
4438
|
"resolved": "https://registry.npmjs.org/refractor/-/refractor-5.0.0.tgz",
|
|
3341
4439
|
"version": "5.0.0"
|
|
3342
4440
|
},
|
|
4441
|
+
"node_modules/remark-gfm": {
|
|
4442
|
+
"dependencies": {
|
|
4443
|
+
"@types/mdast": "^4.0.0",
|
|
4444
|
+
"mdast-util-gfm": "^3.0.0",
|
|
4445
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
4446
|
+
"remark-parse": "^11.0.0",
|
|
4447
|
+
"remark-stringify": "^11.0.0",
|
|
4448
|
+
"unified": "^11.0.0"
|
|
4449
|
+
},
|
|
4450
|
+
"funding": {
|
|
4451
|
+
"type": "opencollective",
|
|
4452
|
+
"url": "https://opencollective.com/unified"
|
|
4453
|
+
},
|
|
4454
|
+
"integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
|
|
4455
|
+
"license": "MIT",
|
|
4456
|
+
"resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
|
|
4457
|
+
"version": "4.0.1"
|
|
4458
|
+
},
|
|
4459
|
+
"node_modules/remark-parse": {
|
|
4460
|
+
"dependencies": {
|
|
4461
|
+
"@types/mdast": "^4.0.0",
|
|
4462
|
+
"mdast-util-from-markdown": "^2.0.0",
|
|
4463
|
+
"micromark-util-types": "^2.0.0",
|
|
4464
|
+
"unified": "^11.0.0"
|
|
4465
|
+
},
|
|
4466
|
+
"funding": {
|
|
4467
|
+
"type": "opencollective",
|
|
4468
|
+
"url": "https://opencollective.com/unified"
|
|
4469
|
+
},
|
|
4470
|
+
"integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
|
|
4471
|
+
"license": "MIT",
|
|
4472
|
+
"resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
|
|
4473
|
+
"version": "11.0.0"
|
|
4474
|
+
},
|
|
4475
|
+
"node_modules/remark-rehype": {
|
|
4476
|
+
"dependencies": {
|
|
4477
|
+
"@types/hast": "^3.0.0",
|
|
4478
|
+
"@types/mdast": "^4.0.0",
|
|
4479
|
+
"mdast-util-to-hast": "^13.0.0",
|
|
4480
|
+
"unified": "^11.0.0",
|
|
4481
|
+
"vfile": "^6.0.0"
|
|
4482
|
+
},
|
|
4483
|
+
"funding": {
|
|
4484
|
+
"type": "opencollective",
|
|
4485
|
+
"url": "https://opencollective.com/unified"
|
|
4486
|
+
},
|
|
4487
|
+
"integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
|
|
4488
|
+
"license": "MIT",
|
|
4489
|
+
"resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
|
|
4490
|
+
"version": "11.1.2"
|
|
4491
|
+
},
|
|
4492
|
+
"node_modules/remark-stringify": {
|
|
4493
|
+
"dependencies": {
|
|
4494
|
+
"@types/mdast": "^4.0.0",
|
|
4495
|
+
"mdast-util-to-markdown": "^2.0.0",
|
|
4496
|
+
"unified": "^11.0.0"
|
|
4497
|
+
},
|
|
4498
|
+
"funding": {
|
|
4499
|
+
"type": "opencollective",
|
|
4500
|
+
"url": "https://opencollective.com/unified"
|
|
4501
|
+
},
|
|
4502
|
+
"integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
|
|
4503
|
+
"license": "MIT",
|
|
4504
|
+
"resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
|
|
4505
|
+
"version": "11.0.0"
|
|
4506
|
+
},
|
|
3343
4507
|
"node_modules/resolve": {
|
|
3344
4508
|
"bin": {
|
|
3345
4509
|
"resolve": "bin/resolve"
|
|
@@ -3477,6 +4641,38 @@
|
|
|
3477
4641
|
"resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
|
|
3478
4642
|
"version": "2.0.2"
|
|
3479
4643
|
},
|
|
4644
|
+
"node_modules/stringify-entities": {
|
|
4645
|
+
"dependencies": {
|
|
4646
|
+
"character-entities-html4": "^2.0.0",
|
|
4647
|
+
"character-entities-legacy": "^3.0.0"
|
|
4648
|
+
},
|
|
4649
|
+
"funding": {
|
|
4650
|
+
"type": "github",
|
|
4651
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
4652
|
+
},
|
|
4653
|
+
"integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
|
|
4654
|
+
"license": "MIT",
|
|
4655
|
+
"resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
|
|
4656
|
+
"version": "4.0.4"
|
|
4657
|
+
},
|
|
4658
|
+
"node_modules/style-to-js": {
|
|
4659
|
+
"dependencies": {
|
|
4660
|
+
"style-to-object": "1.0.14"
|
|
4661
|
+
},
|
|
4662
|
+
"integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
|
|
4663
|
+
"license": "MIT",
|
|
4664
|
+
"resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
|
|
4665
|
+
"version": "1.1.21"
|
|
4666
|
+
},
|
|
4667
|
+
"node_modules/style-to-object": {
|
|
4668
|
+
"dependencies": {
|
|
4669
|
+
"inline-style-parser": "0.2.7"
|
|
4670
|
+
},
|
|
4671
|
+
"integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
|
|
4672
|
+
"license": "MIT",
|
|
4673
|
+
"resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
|
|
4674
|
+
"version": "1.0.14"
|
|
4675
|
+
},
|
|
3480
4676
|
"node_modules/sucrase": {
|
|
3481
4677
|
"bin": {
|
|
3482
4678
|
"sucrase": "bin/sucrase",
|
|
@@ -3651,6 +4847,26 @@
|
|
|
3651
4847
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
3652
4848
|
"version": "5.0.1"
|
|
3653
4849
|
},
|
|
4850
|
+
"node_modules/trim-lines": {
|
|
4851
|
+
"funding": {
|
|
4852
|
+
"type": "github",
|
|
4853
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
4854
|
+
},
|
|
4855
|
+
"integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
|
|
4856
|
+
"license": "MIT",
|
|
4857
|
+
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
|
4858
|
+
"version": "3.0.1"
|
|
4859
|
+
},
|
|
4860
|
+
"node_modules/trough": {
|
|
4861
|
+
"funding": {
|
|
4862
|
+
"type": "github",
|
|
4863
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
4864
|
+
},
|
|
4865
|
+
"integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
|
|
4866
|
+
"license": "MIT",
|
|
4867
|
+
"resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
|
|
4868
|
+
"version": "2.2.0"
|
|
4869
|
+
},
|
|
3654
4870
|
"node_modules/ts-interface-checker": {
|
|
3655
4871
|
"dev": true,
|
|
3656
4872
|
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
|
|
@@ -3664,6 +4880,93 @@
|
|
|
3664
4880
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
3665
4881
|
"version": "2.8.1"
|
|
3666
4882
|
},
|
|
4883
|
+
"node_modules/unified": {
|
|
4884
|
+
"dependencies": {
|
|
4885
|
+
"@types/unist": "^3.0.0",
|
|
4886
|
+
"bail": "^2.0.0",
|
|
4887
|
+
"devlop": "^1.0.0",
|
|
4888
|
+
"extend": "^3.0.0",
|
|
4889
|
+
"is-plain-obj": "^4.0.0",
|
|
4890
|
+
"trough": "^2.0.0",
|
|
4891
|
+
"vfile": "^6.0.0"
|
|
4892
|
+
},
|
|
4893
|
+
"funding": {
|
|
4894
|
+
"type": "opencollective",
|
|
4895
|
+
"url": "https://opencollective.com/unified"
|
|
4896
|
+
},
|
|
4897
|
+
"integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
|
|
4898
|
+
"license": "MIT",
|
|
4899
|
+
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
|
|
4900
|
+
"version": "11.0.5"
|
|
4901
|
+
},
|
|
4902
|
+
"node_modules/unist-util-is": {
|
|
4903
|
+
"dependencies": {
|
|
4904
|
+
"@types/unist": "^3.0.0"
|
|
4905
|
+
},
|
|
4906
|
+
"funding": {
|
|
4907
|
+
"type": "opencollective",
|
|
4908
|
+
"url": "https://opencollective.com/unified"
|
|
4909
|
+
},
|
|
4910
|
+
"integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
|
|
4911
|
+
"license": "MIT",
|
|
4912
|
+
"resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
|
|
4913
|
+
"version": "6.0.1"
|
|
4914
|
+
},
|
|
4915
|
+
"node_modules/unist-util-position": {
|
|
4916
|
+
"dependencies": {
|
|
4917
|
+
"@types/unist": "^3.0.0"
|
|
4918
|
+
},
|
|
4919
|
+
"funding": {
|
|
4920
|
+
"type": "opencollective",
|
|
4921
|
+
"url": "https://opencollective.com/unified"
|
|
4922
|
+
},
|
|
4923
|
+
"integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
|
|
4924
|
+
"license": "MIT",
|
|
4925
|
+
"resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
|
|
4926
|
+
"version": "5.0.0"
|
|
4927
|
+
},
|
|
4928
|
+
"node_modules/unist-util-stringify-position": {
|
|
4929
|
+
"dependencies": {
|
|
4930
|
+
"@types/unist": "^3.0.0"
|
|
4931
|
+
},
|
|
4932
|
+
"funding": {
|
|
4933
|
+
"type": "opencollective",
|
|
4934
|
+
"url": "https://opencollective.com/unified"
|
|
4935
|
+
},
|
|
4936
|
+
"integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
|
|
4937
|
+
"license": "MIT",
|
|
4938
|
+
"resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
|
|
4939
|
+
"version": "4.0.0"
|
|
4940
|
+
},
|
|
4941
|
+
"node_modules/unist-util-visit": {
|
|
4942
|
+
"dependencies": {
|
|
4943
|
+
"@types/unist": "^3.0.0",
|
|
4944
|
+
"unist-util-is": "^6.0.0",
|
|
4945
|
+
"unist-util-visit-parents": "^6.0.0"
|
|
4946
|
+
},
|
|
4947
|
+
"funding": {
|
|
4948
|
+
"type": "opencollective",
|
|
4949
|
+
"url": "https://opencollective.com/unified"
|
|
4950
|
+
},
|
|
4951
|
+
"integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
|
|
4952
|
+
"license": "MIT",
|
|
4953
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
|
|
4954
|
+
"version": "5.1.0"
|
|
4955
|
+
},
|
|
4956
|
+
"node_modules/unist-util-visit-parents": {
|
|
4957
|
+
"dependencies": {
|
|
4958
|
+
"@types/unist": "^3.0.0",
|
|
4959
|
+
"unist-util-is": "^6.0.0"
|
|
4960
|
+
},
|
|
4961
|
+
"funding": {
|
|
4962
|
+
"type": "opencollective",
|
|
4963
|
+
"url": "https://opencollective.com/unified"
|
|
4964
|
+
},
|
|
4965
|
+
"integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
|
|
4966
|
+
"license": "MIT",
|
|
4967
|
+
"resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
|
|
4968
|
+
"version": "6.0.2"
|
|
4969
|
+
},
|
|
3667
4970
|
"node_modules/update-browserslist-db": {
|
|
3668
4971
|
"bin": {
|
|
3669
4972
|
"update-browserslist-db": "cli.js"
|
|
@@ -3711,6 +5014,34 @@
|
|
|
3711
5014
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
3712
5015
|
"version": "1.0.2"
|
|
3713
5016
|
},
|
|
5017
|
+
"node_modules/vfile": {
|
|
5018
|
+
"dependencies": {
|
|
5019
|
+
"@types/unist": "^3.0.0",
|
|
5020
|
+
"vfile-message": "^4.0.0"
|
|
5021
|
+
},
|
|
5022
|
+
"funding": {
|
|
5023
|
+
"type": "opencollective",
|
|
5024
|
+
"url": "https://opencollective.com/unified"
|
|
5025
|
+
},
|
|
5026
|
+
"integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
|
|
5027
|
+
"license": "MIT",
|
|
5028
|
+
"resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
|
|
5029
|
+
"version": "6.0.3"
|
|
5030
|
+
},
|
|
5031
|
+
"node_modules/vfile-message": {
|
|
5032
|
+
"dependencies": {
|
|
5033
|
+
"@types/unist": "^3.0.0",
|
|
5034
|
+
"unist-util-stringify-position": "^4.0.0"
|
|
5035
|
+
},
|
|
5036
|
+
"funding": {
|
|
5037
|
+
"type": "opencollective",
|
|
5038
|
+
"url": "https://opencollective.com/unified"
|
|
5039
|
+
},
|
|
5040
|
+
"integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
|
|
5041
|
+
"license": "MIT",
|
|
5042
|
+
"resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
|
|
5043
|
+
"version": "4.0.3"
|
|
5044
|
+
},
|
|
3714
5045
|
"node_modules/victory-vendor": {
|
|
3715
5046
|
"dependencies": {
|
|
3716
5047
|
"@types/d3-array": "^3.0.3",
|
|
@@ -3827,6 +5158,16 @@
|
|
|
3827
5158
|
},
|
|
3828
5159
|
"resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
|
|
3829
5160
|
"version": "4.5.7"
|
|
5161
|
+
},
|
|
5162
|
+
"node_modules/zwitch": {
|
|
5163
|
+
"funding": {
|
|
5164
|
+
"type": "github",
|
|
5165
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
5166
|
+
},
|
|
5167
|
+
"integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
|
|
5168
|
+
"license": "MIT",
|
|
5169
|
+
"resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
|
|
5170
|
+
"version": "2.0.4"
|
|
3830
5171
|
}
|
|
3831
5172
|
},
|
|
3832
5173
|
"requires": true,
|