summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormontezdesousa <79287829+montezdesousa@users.noreply.github.com>2024-05-15 12:28:52 +0100
committerGitHub <noreply@github.com>2024-05-15 11:28:52 +0000
commit83990431f88e001258556b971e528d710533e04e (patch)
treec6aa4a6d2d66e09dcb2f3c7878e2923e437fbf08
parent74652ece6ec30e5ffa4dbdcd41536f3e943f617c (diff)
[BugFix] - Update GitHub workflows (#6418)
* Fix technical example * Remove blocking wf command * rename wf file * rename wf file * fix: gh pages wf * gh pages * pip install toml * toml * activate venv? * activate venv? * simpler? * ^ * install toml in venv * install the full project first * Update poetry after venv * setuptools & venvs * install requests instead * package-lock.json -> yarn.lock * wf name --------- Co-authored-by: Henrique Joaquim <henriquecjoaquim@gmail.com>
-rw-r--r--.github/workflows/README.md12
-rw-r--r--.github/workflows/deploy-gh-pages.yml (renamed from .github/workflows/gh-pages.yml)24
-rw-r--r--.github/workflows/general-linting.yml2
-rw-r--r--.github/workflows/gh-branch-name-check.yml (renamed from .github/workflows/branch-name-check.yml)0
-rw-r--r--.github/workflows/gh-pr-labels.yml6
-rw-r--r--openbb_platform/extensions/technical/openbb_technical/technical_router.py3
-rw-r--r--website/package-lock.json16217
-rw-r--r--website/yarn.lock9205
8 files changed, 9227 insertions, 16242 deletions
diff --git a/.github/workflows/README.md b/.github/workflows/README.md
index 6b03303131b..50c9587d9dc 100644
--- a/.github/workflows/README.md
+++ b/.github/workflows/README.md
@@ -2,6 +2,10 @@
This directory contains the workflows for the OpenBB ๐Ÿฆ‹ Project. The workflows are:
+## ๐Ÿ“‘ Deploy to GitHub Pages
+
+This GitHub Actions workflow is responsible for building the documentation and deploying it to GitHub Pages. This workflow is triggered when a new change is pushed to the `main` or `release` branch of the repository, and the documentation is published to GitHub Pages.
+
## Branch Name Check
Objective: To check if pull request branch names follow the GitFlow naming convention before merging.
@@ -58,7 +62,7 @@ Note: The code uses the `pypa/build` package for building the binary wheel and s
This GitHub Actions workflow is designed to automatically generate and update draft releases in a GitHub repository. The workflow is triggered when it is manually dispatched, allowing you to control when the draft releases are updated.
-## General Linting
+## ๐Ÿงน General Linting
This GitHub Actions workflow is responsible for running linting checks on the codebase. This workflow is triggered on pull request events such as `opened`, `synchronize`, and `edited`, and push events on branches with names that start with `feature/`, `hotfix/`, or `release/`. The workflow also sets a number of environment variables and uses Github Actions caching to improve performance.
@@ -79,11 +83,7 @@ The first job, `code-linting`, runs on an Ubuntu machine and performs several li
The second job, `markdown-link-check`, runs on an Ubuntu machine and performs linting of the markdown files in the repository. It uses a Docker container `avtodev/markdown-lint` to perform the linting.
-## Deploy to GitHub Pages
-
-This GitHub Actions workflow is responsible for building the documentation and deploying it to GitHub Pages. This workflow is triggered when a new change is pushed to the `main` or `release` branch of the repository, and the documentation is published to GitHub Pages.
-
-## Pull Request Labels
+## ๐Ÿท๏ธ Pull Request Labels
Automatic labelling of pull requests.
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/deploy-gh-pages.yml
index b7309eb64a7..bde7ca3ca0b 100644
--- a/.github/workflows/gh-pages.yml
+++ b/.github/workflows/deploy-gh-pages.yml
@@ -1,4 +1,4 @@
-name: Deploy to GitHub Pages
+name: ๐Ÿ“‘ Deploy to GitHub Pages
on:
push:
@@ -48,27 +48,25 @@ jobs:
libgtk-3-dev \
libwebkit2gtk-4.0-dev
- - name: Install dependencies
- run: poetry install --no-interaction --no-root
-
- name: Generate Platform Markdown
run: |
- source .venv/bin/activate
+ poetry install -C openbb_platform --no-interaction
+ source openbb_platform/.venv/bin/activate
pip install -U poetry
- poetry run python openbb_platform/dev_install.py -e all
- poetry run python -c "import openbb; openbb.build()"
- pip uninstall nbmake -y
- poetry run python website/generate_platform_v4_markdown.py
+ pip install toml
+ python openbb_platform/dev_install.py -e all
+ python -c "import openbb; openbb.build()"
+ python website/generate_platform_v4_markdown.py
- name: Generate Excel Docs
run: |
- source .venv/bin/activate
- poetry run python website/generate_excel_markdown.py
+ pip install requests
+ python website/generate_excel_markdown.py
- name: Generate Widgets Library
run: |
- source .venv/bin/activate
- poetry run python website/generate_widgets_library.py
+ pip install requests
+ python website/generate_widgets_library.py
- name: Setup Node
uses: actions/setup-node@v3
diff --git a/.github/workflows/general-linting.yml b/.github/workflows/general-linting.yml
index 02cf0b3454d..1c6f0ddfa02 100644
--- a/.github/workflows/general-linting.yml
+++ b/.github/workflows/general-linting.yml
@@ -1,4 +1,4 @@
-name: General Linting
+name: ๐Ÿงน General Linting
env:
PIP_DEFAULT_TIMEOUT: 100
diff --git a/.github/workflows/branch-name-check.yml b/.github/workflows/gh-branch-name-check.yml
index 880bf4768c0..880bf4768c0 100644
--- a/.github/workflows/branch-name-check.yml
+++ b/.github/workflows/gh-branch-name-check.yml
diff --git a/.github/workflows/gh-pr-labels.yml b/.github/workflows/gh-pr-labels.yml
index 1e37659592f..6c79f1d91eb 100644
--- a/.github/workflows/gh-pr-labels.yml
+++ b/.github/workflows/gh-pr-labels.yml
@@ -1,4 +1,4 @@
-name: Pull Request Labels
+name: ๐Ÿท๏ธ Pull Request Labels
on:
pull_request:
@@ -18,8 +18,8 @@ jobs:
mode: exactly
count: 0
labels: "do not merge"
-
+
- name: ๐Ÿท๏ธ Label OpenBB Platform PRs
uses: srvaroa/labeler@master
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/openbb_platform/extensions/technical/openbb_technical/technical_router.py b/openbb_platform/extensions/technical/openbb_technical/technical_router.py
index 3dbf2e3df84..14701c4135f 100644
--- a/openbb_platform/extensions/technical/openbb_technical/technical_router.py
+++ b/openbb_platform/extensions/technical/openbb_technical/technical_router.py
@@ -53,7 +53,7 @@ router = Router(prefix="", description="Technical Analysis tools.")
code=[
"crypto_data = obb.crypto.price.historical("
+ " symbol='BTCUSD,ETHUSD,SOLUSD', start_date='2021-01-01', provider='yfinance')",
- "rr_data = obb.technical.relative_rotation(data=crypto_data.results, benchmark='BTCUSD',"
+ "rr_data = obb.technical.relative_rotation(data=crypto_data.results, benchmark='BTC-USD',"
+ " long_period=365, short_period=30, window=30, trading_periods=365)",
],
),
@@ -146,7 +146,6 @@ async def relative_rotation(
rs_momentum : list[Data]
The normalized relative strength momentum data.
"""
-
params = RelativeRotationQueryParams(
data=data,
benchmark=benchmark,
diff --git a/website/package-lock.json b/website/package-lock.json
deleted file mode 100644
index d4355a0b3d5..00000000000
--- a/website/package-lock.json
+++ /dev/null
@@ -1,16217 +0,0 @@
-{
- "name": "docs",
- "version": "1.0.0",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "docs",
- "version": "1.0.0",
- "dependencies": {
- "@docusaurus/core": "^3.3.2",
- "@docusaurus/plugin-client-redirects": "^3.3.2",
- "@docusaurus/plugin-content-docs": "^3.3.2",
- "@docusaurus/preset-classic": "^3.3.2",
- "@radix-ui/react-dialog": "^1.0.5",
- "@radix-ui/react-popover": "^1.0.7",
- "@radix-ui/react-tooltip": "^1.0.7",
- "axios": "^1.6.8",
- "clsx": "^2.1.1",
- "fuse.js": "^6.6.2",
- "hast-util-is-element": "^3.0.0",
- "posthog-js": "^1.131.3",
- "prism-react-renderer": "^2.3.1",
- "react": "^18.3.1",
- "react-dom": "^18.3.1",
- "react-player": "^2.16.0",
- "rehype-katex": "^7.0.0",
- "remark-math": "^6.0.0",
- "tailwindcss-radix": "^3.0.3",
- "typescript-toggle": "^1.1.0"
- },
- "devDependencies": {
- "@docusaurus/module-type-aliases": "^3.3.2",
- "@docusaurus/tsconfig": "^3.3.2",
- "@mdx-js/loader": "^3.0.1",
- "@mdx-js/react": "^3.0.1",
- "@tailwindcss/typography": "^0.5.13",
- "autoprefixer": "^10.4.19",
- "postcss": "^8.4.38",
- "remark-gfm": "^4.0.0",
- "tailwindcss": "^3.4.3",
- "typescript": "^5.4.5"
- },
- "engines": {
- "node": ">=18.17"
- }
- },
- "node_modules/@algolia/autocomplete-core": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz",
- "integrity": "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==",
- "dependencies": {
- "@algolia/autocomplete-plugin-algolia-insights": "1.9.3",
- "@algolia/autocomplete-shared": "1.9.3"
- }
- },
- "node_modules/@algolia/autocomplete-plugin-algolia-insights": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz",
- "integrity": "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==",
- "dependencies": {
- "@algolia/autocomplete-shared": "1.9.3"
- },
- "peerDependencies": {
- "search-insights": ">= 1 < 3"
- }
- },
- "node_modules/@algolia/autocomplete-preset-algolia": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz",
- "integrity": "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==",
- "dependencies": {
- "@algolia/autocomplete-shared": "1.9.3"
- },
- "peerDependencies": {
- "@algolia/client-search": ">= 4.9.1 < 6",
- "algoliasearch": ">= 4.9.1 < 6"
- }
- },
- "node_modules/@algolia/autocomplete-shared": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz",
- "integrity": "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==",
- "peerDependencies": {
- "@algolia/client-search": ">= 4.9.1 < 6",
- "algoliasearch": ">= 4.9.1 < 6"
- }
- },
- "node_modules/@algolia/cache-browser-local-storage": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.23.3.tgz",
- "integrity": "sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==",
- "dependencies": {
- "@algolia/cache-common": "4.23.3"
- }
- },
- "node_modules/@algolia/cache-common": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.23.3.tgz",
- "integrity": "sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A=="
- },
- "node_modules/@algolia/cache-in-memory": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.23.3.tgz",
- "integrity": "sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==",
- "dependencies": {
- "@algolia/cache-common": "4.23.3"
- }
- },
- "node_modules/@algolia/client-account": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.23.3.tgz",
- "integrity": "sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==",
- "dependencies": {
- "@algolia/client-common": "4.23.3",
- "@algolia/client-search": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/client-analytics": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.23.3.tgz",
- "integrity": "sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==",
- "dependencies": {
- "@algolia/client-common": "4.23.3",
- "@algolia/client-search": "4.23.3",
- "@algolia/requester-common": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/client-common": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.23.3.tgz",
- "integrity": "sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==",
- "dependencies": {
- "@algolia/requester-common": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/client-personalization": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.23.3.tgz",
- "integrity": "sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==",
- "dependencies": {
- "@algolia/client-common": "4.23.3",
- "@algolia/requester-common": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/client-search": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.23.3.tgz",
- "integrity": "sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==",
- "dependencies": {
- "@algolia/client-common": "4.23.3",
- "@algolia/requester-common": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/events": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz",
- "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ=="
- },
- "node_modules/@algolia/logger-common": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.23.3.tgz",
- "integrity": "sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g=="
- },
- "node_modules/@algolia/logger-console": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.23.3.tgz",
- "integrity": "sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==",
- "dependencies": {
- "@algolia/logger-common": "4.23.3"
- }
- },
- "node_modules/@algolia/recommend": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.23.3.tgz",
- "integrity": "sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==",
- "dependencies": {
- "@algolia/cache-browser-local-storage": "4.23.3",
- "@algolia/cache-common": "4.23.3",
- "@algolia/cache-in-memory": "4.23.3",
- "@algolia/client-common": "4.23.3",
- "@algolia/client-search": "4.23.3",
- "@algolia/logger-common": "4.23.3",
- "@algolia/logger-console": "4.23.3",
- "@algolia/requester-browser-xhr": "4.23.3",
- "@algolia/requester-common": "4.23.3",
- "@algolia/requester-node-http": "4.23.3",
- "@algolia/transporter": "4.23.3"
- }
- },
- "node_modules/@algolia/requester-browser-xhr": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.23.3.tgz",
- "integrity": "sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==",
- "dependencies": {
- "@algolia/requester-common": "4.23.3"
- }
- },
- "node_modules/@algolia/requester-common": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.23.3.tgz",
- "integrity": "sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw=="
- },
- "node_modules/@algolia/requester-node-http": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.23.3.tgz",
- "integrity": "sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==",
- "dependencies": {
- "@algolia/requester-common": "4.23.3"
- }
- },
- "node_modules/@algolia/transporter": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.23.3.tgz",
- "integrity": "sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==",
- "dependencies": {
- "@algolia/cache-common": "4.23.3",
- "@algolia/logger-common": "4.23.3",
- "@algolia/requester-common": "4.23.3"
- }
- },
- "node_modules/@alloc/quick-lru": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
- "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.24.2",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz",
- "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==",
- "dependencies": {
- "@babel/highlight": "^7.24.2",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.24.4",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz",
- "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.24.5",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz",
- "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==",
- "dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.24.2",
- "@babel/generator": "^7.24.5",
- "@babel/helper-compilation-targets": "^7.23.6",
- "@babel/helper-module-transforms": "^7.24.5",
- "@babel/helpers": "^7.24.5",
- "@babel/parser": "^7.24.5",
- "@babel/template": "^7.24.0",
- "@babel/traverse": "^7.24.5",
- "@babel/types": "^7.24.5",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/core/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.24.5",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz",
- "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==",
- "dependencies": {
- "@babel/types": "^7.24.5",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "jsesc": "^2.5.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
- "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
- "dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz",
- "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==",
- "dependencies": {
- "@babel/types": "^7.22.15"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.23.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
- "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
- "dependencies": {
- "@babel/compat-data": "^7.23.5",
- "@babel/helper-validator-option": "^7.23.5",
- "browserslist": "^4.22.2",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.24.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz",
- "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.22.5",
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-function-name": "^7.23.0",
- "@babel/helper-member-expression-to-functions": "^7.24.5",
- "@babel/helper-optimise-call-expression": "^7.22.5",
- "@babel/helper-replace-supers": "^7.24.1",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5",
- "@babel/helper-split-export-declaration": "^7.24.5",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.22.15",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz",
- "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.22.5",
- "regexpu-core": "^5.3.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz",
- "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==",
- "dependencies": {
- "@babel/helper-compilation-targets": "^7.22.6",
- "@babel/helper-plugin-utils": "^7.22.5",
- "debug": "^4.1.1",
- "lodash.debounce": "^4.0.8",
- "resolve": "^1.14.2"
- },
- "peerDependencies": {
- "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
- }
- },
- "node_modules/@babel/helper-environment-visitor": {
- "version": "7.22.20",
- "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
- "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-function-name": {
- "version": "7.23.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
- "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
- "dependencies": {
- "@babel/template": "^7.22.15",
- "@babel/types": "^7.23.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-hoist-variables": {
- "version": "7.22.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
- "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
- "dependencies": {
- "@babel/types": "^7.22.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.24.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz",
- "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==",
- "dependencies": {
- "@babel/types": "^7.24.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.24.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz",
- "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==",
- "dependencies": {
- "@babel/types": "^7.24.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.24.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz",
- "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==",
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.22.20",
- "@babel/helper-module-imports": "^7.24.3",
- "@babel/helper-simple-access": "^7.24.5",
- "@babel/helper-spl