diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
new file mode 100644
index 0000000000..c08a2059a3
--- /dev/null
+++ b/.github/workflows/cypress.yml
@@ -0,0 +1,36 @@
+name: E2E Tests
+
+on:
+ push:
+ branches:
+ - feat_v3.x
+ pull_request:
+ branches:
+ - feat_v3.x
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Install pnpm
+ run: corepack enable pnpm
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: '20'
+ cache: 'pnpm'
+ - name: Install dependencies
+ run: pnpm install
+ - name: Run E2E Tests for H5
+ env:
+ CI: true
+ run: pnpm cypress install --force && pnpm e2e:run:h5
+
+ # Taro的自动化测试,demo包管理解决后解除注释
+ # - name: Run E2E Tests for Taro
+ # env:
+ # CI: true
+ # pnpm cypress install --force && run: pnpm e2e:run:taro
diff --git a/cypress.config.ts b/cypress.config.ts
index 0cf75df6c7..04eb048225 100644
--- a/cypress.config.ts
+++ b/cypress.config.ts
@@ -2,9 +2,8 @@ import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
- baseUrl: 'http://localhost:10086/#/',
- specPattern: 'cypress/e2e/**/*.js',
+ specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
},
- viewportWidth: 414,
- viewportHeight: 896,
+ viewportWidth: 375,
+ viewportHeight: 667,
})
diff --git a/cypress/component/Actionsheet.cy.jsx b/cypress/component/Actionsheet.cy.jsx
deleted file mode 100644
index 2be4f9b95c..0000000000
--- a/cypress/component/Actionsheet.cy.jsx
+++ /dev/null
@@ -1,67 +0,0 @@
-import React from 'react'
-import { mount } from 'cypress/react18'
-import { ActionSheet } from '../../src/packages/actionsheet/actionsheet'
-
-const menulist = [
- {
- name: '选项一',
- description: '选项一的描述信息',
- danger: true,
- },
- {
- name: '选项二',
- disabled: true,
- },
- {
- name: '必填',
- name1: '选项三',
- },
-]
-
-it('props test options ', () => {
- mount(
-
- )
- cy.get('.nut-actionsheet-list .nut-actionsheet-item').should('have.length', 3)
-})
-
-it('props test cancelText ', async () => {
- mount(
-
- )
- cy.get('.nut-actionsheet-cancel').then(($el) => {
- const el = cy.wrap($el)
- el.should('have.text', '关闭弹层')
- })
-})
-
-it('props test has value ', async () => {
- mount(
-
- )
- cy.get('.nut-actionsheet-list .nut-actionsheet-item')
- .eq(0)
- .then(($el) => {
- const el = cy.wrap($el)
- el.should('have.text', '选项一选项一的描述信息')
- el.should('have.class', 'danger')
- })
-})
diff --git a/cypress/component/Button.cy.jsx b/cypress/component/Button.cy.jsx
deleted file mode 100644
index 26e5a7fc72..0000000000
--- a/cypress/component/Button.cy.jsx
+++ /dev/null
@@ -1,6 +0,0 @@
-import React from 'react'
-import { Button } from '../../src/packages/button/button'
-
-it('playground', () => {
- cy.mount()
-})
diff --git a/cypress/component/Cell.cy.jsx b/cypress/component/Cell.cy.jsx
deleted file mode 100644
index da23b5e9f4..0000000000
--- a/cypress/component/Cell.cy.jsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import React from 'react'
-import { Cell } from '../../src/packages/cell/cell.taro'
-import { Switch } from '../../src/packages/switch/switch.taro'
-
-it('prop title extra description test', () => {
- cy.mount(
- |
- )
- cy.get('.nut-cell-title').should('contain.text', '我是标题')
- cy.get('.nut-cell-description').should('contain.text', '我是描述')
- cy.get('.nut-cell-extra').should('contain.text', '描述文字')
-})
-it('prop ', () => {
- cy.mount( | )
- cy.get('.nut-cell-extra').should('be.visible')
-})
-
-it('emit click event', () => {
- const testClick = () => {}
- cy.mount( testClick()} />)
- cy.get('[data-testid="emit-click"]').click().trigger('testClick')
-})
-
-it('slot default test', () => {
- cy.mount(自定义内容} extra="描述文字" />)
- cy.root().should('contain.html', ' 自定义内容 ')
-})
-
-it('slot extra', () => {
- cy.mount( | } />)
- cy.get('.nut-switch').should('be.visible')
-})
diff --git a/cypress/e2e/common/pageWhiteTest.cy.js b/cypress/e2e/common/pageWhiteTest.cy.js
new file mode 100644
index 0000000000..34fd1256d5
--- /dev/null
+++ b/cypress/e2e/common/pageWhiteTest.cy.js
@@ -0,0 +1,32 @@
+import { visitH5Demo, visitTaroDemo } from '../utils/visit-demo.cy.js'
+import data from '../../../src/config.json'
+
+const { nav } = data
+export const checkH5Blank = () => {
+ const componentArr = nav
+ .map((i) => i.packages)
+ .flat(Infinity)
+ .filter((i) => i.show)
+ .map((i) => i.name)
+
+ it('check h5 demos blank', () => {
+ componentArr.forEach((com) => {
+ visitH5Demo(com)
+ })
+ })
+}
+export const checkTaroBlank = () => {
+ it('check taro demos blank', () => {
+ nav.forEach((item) => {
+ const path = item.enName
+ item.packages
+ .filter((i) => i.show && i.taro && i.version === '3.0.0')
+ .forEach((i) => {
+ visitTaroDemo(path, i.name)
+ })
+ })
+ })
+}
+Cypress.on('uncaught:exception', (err, runnable) => {
+ return false
+})
diff --git a/cypress/e2e/h5/base.cy.js b/cypress/e2e/h5/base.cy.js
new file mode 100644
index 0000000000..716dfff7ab
--- /dev/null
+++ b/cypress/e2e/h5/base.cy.js
@@ -0,0 +1,25 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('base components test', () => {
+ it('Button', () => {
+ visitH5Demo('Button')
+ })
+ it('Cell', () => {
+ visitH5Demo('Cell')
+ })
+ it('ConfigProvider', () => {
+ visitH5Demo('ConfigProvider')
+ })
+ it('Icon', () => {
+ visitH5Demo('Icon')
+ })
+ it('Image', () => {
+ visitH5Demo('Image')
+ })
+ it('Overlay', () => {
+ visitH5Demo('Overlay')
+ })
+})
+Cypress.on('uncaught:exception', (err, runnable) => {
+ return false
+})
diff --git a/cypress/e2e/h5/bussiness.cy.js b/cypress/e2e/h5/bussiness.cy.js
new file mode 100644
index 0000000000..24f2bf4185
--- /dev/null
+++ b/cypress/e2e/h5/bussiness.cy.js
@@ -0,0 +1,22 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('bussiness components test', () => {
+ it('Barrage', () => {
+ visitH5Demo('Barrage')
+ })
+ it('Card', () => {
+ visitH5Demo('Card')
+ })
+ it('TimeSelect', () => {
+ visitH5Demo('TimeSelect')
+ })
+ it('TrendArrow', () => {
+ visitH5Demo('TrendArrow')
+ })
+ it('WaterMark', () => {
+ visitH5Demo('WaterMark')
+ })
+ it('AvatarCropper', () => {
+ visitH5Demo('AvatarCropper')
+ })
+})
diff --git a/cypress/e2e/h5/dentry.cy.js b/cypress/e2e/h5/dentry.cy.js
new file mode 100644
index 0000000000..f9bfe00cef
--- /dev/null
+++ b/cypress/e2e/h5/dentry.cy.js
@@ -0,0 +1,67 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('dentry components test', () => {
+ it('Address', () => {
+ visitH5Demo('Address')
+ })
+ it('Calendar', () => {
+ visitH5Demo('Calendar')
+ })
+ it('CalendarCard', () => {
+ visitH5Demo('CalendarCard')
+ })
+ it('Cascader', () => {
+ visitH5Demo('Cascader')
+ })
+ it('Checkbox', () => {
+ visitH5Demo('Checkbox')
+ })
+ it('DatePicker', () => {
+ visitH5Demo('DatePicker')
+ })
+ it('Form', () => {
+ visitH5Demo('Form')
+ })
+ it('Input', () => {
+ visitH5Demo('Input')
+ })
+ it('InputNumber', () => {
+ visitH5Demo('InputNumber')
+ })
+ it('Menu', () => {
+ visitH5Demo('Menu')
+ })
+ it('NumberKeyboard', () => {
+ visitH5Demo('NumberKeyboard')
+ })
+ it('Picker', () => {
+ visitH5Demo('Picker')
+ })
+ it('Radio', () => {
+ visitH5Demo('Radio')
+ })
+ it('Range', () => {
+ visitH5Demo('Range')
+ })
+ it('Rate', () => {
+ visitH5Demo('Rate')
+ })
+ it('SearchBar', () => {
+ visitH5Demo('SearchBar')
+ })
+ it('ShortPassword', () => {
+ visitH5Demo('ShortPassword')
+ })
+ it('Signature', () => {
+ visitH5Demo('Signature')
+ })
+ it('Switch', () => {
+ visitH5Demo('Switch')
+ })
+ it('TextArea', () => {
+ visitH5Demo('TextArea')
+ })
+ it('Uploader', () => {
+ visitH5Demo('Uploader')
+ })
+})
diff --git a/cypress/e2e/h5/exhibition.cy.js b/cypress/e2e/h5/exhibition.cy.js
new file mode 100644
index 0000000000..b373db939d
--- /dev/null
+++ b/cypress/e2e/h5/exhibition.cy.js
@@ -0,0 +1,61 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('exhibition components test', () => {
+ it('Animate', () => {
+ visitH5Demo('Animate')
+ })
+ it('AnimatingNumbers', () => {
+ visitH5Demo('AnimatingNumbers')
+ })
+ it('Audio', () => {
+ visitH5Demo('Audio')
+ })
+ it('Avatar', () => {
+ visitH5Demo('Avatar')
+ })
+ it('CircleProgress', () => {
+ visitH5Demo('CircleProgress')
+ })
+ it('Collapse', () => {
+ visitH5Demo('Collapse')
+ })
+ it('CountDown', () => {
+ visitH5Demo('CountDown')
+ })
+ it('Ellipsis', () => {
+ visitH5Demo('Ellipsis')
+ })
+ it('ImagePreview', () => {
+ visitH5Demo('ImagePreview')
+ })
+ it('Indicator', () => {
+ visitH5Demo('Indicator')
+ })
+ it('Pagination', () => {
+ visitH5Demo('Pagination')
+ })
+ it('Price', () => {
+ visitH5Demo('Price')
+ })
+ it('Progress', () => {
+ visitH5Demo('Progress')
+ })
+ it('Swiper', () => {
+ visitH5Demo('Swiper')
+ })
+ it('Table', () => {
+ visitH5Demo('Table')
+ })
+ it('Tag', () => {
+ visitH5Demo('Tag')
+ })
+ it('Tour', () => {
+ visitH5Demo('Tour')
+ })
+ it('Video', () => {
+ visitH5Demo('Video')
+ })
+ it('VirtualList', () => {
+ visitH5Demo('VirtualList')
+ })
+})
diff --git a/cypress/e2e/h5/feedback.cy.js b/cypress/e2e/h5/feedback.cy.js
new file mode 100644
index 0000000000..94723a69b7
--- /dev/null
+++ b/cypress/e2e/h5/feedback.cy.js
@@ -0,0 +1,52 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('feedback components test', () => {
+ it('ActionSheet', () => {
+ visitH5Demo('ActionSheet')
+ })
+ it('Badge', () => {
+ visitH5Demo('Badge')
+ })
+ it('Dialog', () => {
+ visitH5Demo('Dialog')
+ })
+ it('Drag', () => {
+ visitH5Demo('Drag')
+ })
+ it('Empty', () => {
+ visitH5Demo('Empty')
+ })
+ it('ResultPage', () => {
+ visitH5Demo('ResultPage')
+ })
+ it('InfiniteLoading', () => {
+ visitH5Demo('InfiniteLoading')
+ })
+ it('Loading', () => {
+ visitH5Demo('Loading')
+ })
+ it('NoticeBar', () => {
+ visitH5Demo('NoticeBar')
+ })
+ it('Notify', () => {
+ visitH5Demo('Notify')
+ })
+ it('Popover', () => {
+ visitH5Demo('Popover')
+ })
+ it('Popup', () => {
+ visitH5Demo('Popup')
+ })
+ it('PullToRefresh', () => {
+ visitH5Demo('PullToRefresh')
+ })
+ it('Skeleton', () => {
+ visitH5Demo('Skeleton')
+ })
+ it('Swipe', () => {
+ visitH5Demo('Swipe')
+ })
+ it('Toast', () => {
+ visitH5Demo('Toast')
+ })
+})
diff --git a/cypress/e2e/h5/index.cy.js b/cypress/e2e/h5/index.cy.js
new file mode 100644
index 0000000000..ef142a6588
--- /dev/null
+++ b/cypress/e2e/h5/index.cy.js
@@ -0,0 +1,13 @@
+import { checkH5Blank } from '../common/pageWhiteTest.cy'
+
+// import './base.cy'
+// import './layout.cy'
+// import './nav.cy'
+// import './dentry.cy'
+// import './bussiness.cy'
+// import './exhibition.cy'
+// import './feedback.cy'
+
+describe('All Taro Demos White Page Test', () => {
+ checkH5Blank()
+})
diff --git a/cypress/e2e/h5/layout.cy.js b/cypress/e2e/h5/layout.cy.js
new file mode 100644
index 0000000000..2760a8312f
--- /dev/null
+++ b/cypress/e2e/h5/layout.cy.js
@@ -0,0 +1,22 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('layout components test', () => {
+ it('Divider', () => {
+ visitH5Demo('Divider')
+ })
+ it('Grid', () => {
+ visitH5Demo('Grid')
+ })
+ it('Layout', () => {
+ visitH5Demo('Layout')
+ })
+ it('Space', () => {
+ visitH5Demo('Space')
+ })
+ it('Sticky', () => {
+ visitH5Demo('Sticky')
+ })
+ it('SafeArea', () => {
+ visitH5Demo('SafeArea')
+ })
+})
diff --git a/cypress/e2e/h5/nav.cy.js b/cypress/e2e/h5/nav.cy.js
new file mode 100644
index 0000000000..6c0ae7d898
--- /dev/null
+++ b/cypress/e2e/h5/nav.cy.js
@@ -0,0 +1,28 @@
+import { visitH5Demo } from '../utils/visit-demo'
+
+describe('nav components test', () => {
+ it('BackTop', () => {
+ visitH5Demo('BackTop')
+ })
+ it('Elevator', () => {
+ visitH5Demo('Elevator')
+ })
+ it('FixedNav', () => {
+ visitH5Demo('FixedNav')
+ })
+ it('HoverButton', () => {
+ visitH5Demo('HoverButton')
+ })
+ it('NavBar', () => {
+ visitH5Demo('NavBar')
+ })
+ it('SideNavBar', () => {
+ visitH5Demo('SideNavBar')
+ })
+ it('Tabbar', () => {
+ visitH5Demo('Tabbar')
+ })
+ it('Tabs', () => {
+ visitH5Demo('Tabs')
+ })
+})
diff --git a/cypress/e2e/index.cy.js b/cypress/e2e/index.cy.js
deleted file mode 100644
index e924c30306..0000000000
--- a/cypress/e2e/index.cy.js
+++ /dev/null
@@ -1,8 +0,0 @@
-import './taro/base.cy'
-import './taro/layout.cy'
-import './taro/nav.cy'
-import './taro/dentry.cy'
-
-Cypress.on('uncaught:exception', (err, runnable) => {
- return false
-})
diff --git a/cypress/e2e/taro/base.cy.js b/cypress/e2e/taro/base.cy.js
deleted file mode 100644
index d782ba3c5e..0000000000
--- a/cypress/e2e/taro/base.cy.js
+++ /dev/null
@@ -1,116 +0,0 @@
-const getPath = (component) => `base/pages/${component}/index`
-
-describe('base components test', () => {
- it('button successfully passes', () => {
- cy.visit(getPath('button'))
- cy.get('.applets-demo-header').contains('Button')
- // Click Loading Test and loading icon shows
- cy.contains('button', 'Click me').scrollIntoView().click()
- cy.contains('button', 'Click me')
- .parent()
- .find('i.nut-icon-Loading')
- .should('exist')
- cy.wait(500)
- })
-
- it('cell successfully passes', () => {
- cy.visit(getPath('cell'))
- cy.get('.applets-demo-header').contains('Cell')
- // Click Switch
- cy.contains('自定义右侧区域').scrollIntoView()
- cy.get('.nut-switch-button').click()
- cy.get('.nut-switch-button')
- .parent()
- .should('have.class', 'nut-switch-close')
- cy.get('.nut-switch-button').click()
- cy.get('.nut-switch-button')
- .parent()
- .should('have.class', 'nut-switch-open')
- // Jump URL
- cy.contains('链接 | 分组用法').scrollIntoView()
- cy.contains('/pages/index/index').click()
- cy.wait(500)
- cy.window().then((location) => {
- expect(location.location.pathname).to.equal('/')
- })
- cy.wait(400)
- })
-
- it('ConfigProvider successfully passes', () => {
- cy.visit(getPath('configprovider'))
- cy.get('.applets-demo-header').contains('ConfigProvider')
- // Expected Rate
- cy.get('.nut-rate')
- .first()
- .find('.nut-rate-item')
- .eq(-2)
- .find('.nut-rate-item-icon')
- .click()
- cy.get('.nut-rate')
- .first()
- .find('.nut-rate-item .nut-rate-item-icon')
- .filter('.nut-rate-item-icon-disabled')
- .should('have.length', 1)
- cy.get('.nut-rate')
- .first()
- .find('.nut-rate-item')
- .first()
- .find('.nut-rate-item-icon')
- .click()
- cy.get('.nut-rate')
- .first()
- .find('.nut-rate-item .nut-rate-item-icon')
- .filter('.nut-rate-item-icon-disabled')
- .should('have.length', 4)
- cy.wait(400)
- })
-
- it('Icon successfully passes', () => {
- cy.visit(getPath('icon'))
- cy.get('.applets-demo-header').contains('Icon')
- // V12 Icon Click Test
- cy.contains('V12 Icon').scrollIntoView()
- cy.get('i.nut-icon-thumbs-up').click()
- cy.contains('')
- cy.get(
- 'i.nut-icon-heart-fill.nut-icon-am-breathe.nut-icon-am-infinite'
- ).click()
- cy.contains(
- ``
- )
- cy.wait(400)
- })
- it('Image successfully passes', () => {
- cy.visit(getPath('image'))
- cy.get('.applets-demo-header').contains('Image')
- cy.wait(500)
- // Lazy Load Scroll
- cy.contains('图片懒加载').scrollIntoView()
- cy.get('.taro-scroll-view__scroll-y .taro-img__mode-scaletofill')
- .filter('[src]')
- .should('have.length', 3)
- cy.get('.taro-scroll-view__scroll-y').scrollTo('bottom', { duration: 1000 })
- cy.get('.taro-scroll-view__scroll-y .taro-img__mode-scaletofill')
- .filter('[src]')
- .should('have.length.greaterThan', 3)
- cy.wait(400)
- })
- it('Overlay successfully passes', () => {
- cy.visit(getPath('overlay'))
- cy.get('.applets-demo-header').contains('Overlay')
- // Display Overlay
- cy.contains('嵌套内容').scrollIntoView()
- cy.get('.nut-button-success').click()
- cy.contains('这里是正文')
- cy.contains('这里是正文')
- .parent()
- .parent()
- .should('have.class', 'nut-overlay')
- .click()
- cy.contains('这里是正文').should('not.exist')
- cy.get('nut-overlay').should('not.exist')
- })
-})
-Cypress.on('uncaught:exception', (err, runnable) => {
- return false
-})
diff --git a/cypress/e2e/taro/dentry.cy.js b/cypress/e2e/taro/dentry.cy.js
deleted file mode 100644
index 5d77a2fccd..0000000000
--- a/cypress/e2e/taro/dentry.cy.js
+++ /dev/null
@@ -1,45 +0,0 @@
-const componentTest = (comName, fn) => {
- const dentryArr = [
- 'Address',
- 'Calendar',
- 'CalendarCard',
- 'Cascader',
- 'Checkbox',
- 'DatePicker',
- 'Form',
- 'Input',
- 'InputNumber',
- ]
- const getPath = (component) =>
- `${dentryArr.includes(component) ? 'dentry' : 'dentry1'}/pages/${component.toLowerCase()}/index`
-
- it(`${comName} successfully passes`, () => {
- cy.visit(getPath(comName))
- cy.get('.applets-demo-header').contains(comName)
- cy.wait(400)
- fn()
- })
-}
-describe('layout components test', () => {
- componentTest('Address', () => {})
- componentTest('Calendar', () => {})
- componentTest('CalendarCard', () => {})
- componentTest('Cascader', () => {})
- componentTest('Checkbox', () => {})
- componentTest('DatePicker', () => {})
- componentTest('Form', () => {})
- componentTest('Input', () => {})
- componentTest('InputNumber', () => {})
- componentTest('Menu', () => {})
- componentTest('NumberKeyboard', () => {})
- componentTest('Picker', () => {})
- componentTest('Radio', () => {})
- componentTest('Range', () => {})
- componentTest('Rate', () => {})
- componentTest('SearchBar', () => {})
- componentTest('ShortPassword', () => {})
- componentTest('Signature', () => {})
- componentTest('Switch', () => {})
- componentTest('TextArea', () => {})
- componentTest('Uploader', () => {})
-})
diff --git a/cypress/e2e/taro/index.cy.js b/cypress/e2e/taro/index.cy.js
new file mode 100644
index 0000000000..13c04adff4
--- /dev/null
+++ b/cypress/e2e/taro/index.cy.js
@@ -0,0 +1,6 @@
+import { describe } from 'yargs'
+import { checkTaroBlank } from '../common/pageWhiteTest.cy'
+
+describe('All Taro Demos White Page Test', () => {
+ checkTaroBlank()
+})
diff --git a/cypress/e2e/taro/layout.cy.js b/cypress/e2e/taro/layout.cy.js
deleted file mode 100644
index 99c20b4cc6..0000000000
--- a/cypress/e2e/taro/layout.cy.js
+++ /dev/null
@@ -1,78 +0,0 @@
-const getPath = (component) => `layout/pages/${component}/index`
-
-describe('layout components test', () => {
- it('divider successfully passes', () => {
- cy.visit(getPath('divider'))
- cy.get('.applets-demo-header').contains('Divider')
- // Click URL
- cy.contains('垂直分割线').scrollIntoView()
- cy.contains('链接').click()
- cy.window().then((win) => {
- const currentPath = win.location.pathname
- expect(currentPath).to.equal('/')
- })
- cy.wait(400)
- })
-
- it('grid successfully passes', () => {
- cy.visit(getPath('grid'))
- cy.get('.applets-demo-header').contains('Grid')
- // GridItem Click
- cy.contains('点击子项事件').scrollIntoView()
- cy.get('h2').then((element) => {
- if (element.has('点击子项事件')) {
- cy.wrap(element)
- .next()
- .then((nextElement) => {
- // 在这里对下一个节点进行操作
- nextElement.find('.nut-grid-item').eq(-2).click()
- cy.contains('点击了文字,第2个')
- })
- }
- })
- cy.wait(400)
- })
-
- it('layout successfully passes', () => {
- cy.visit(getPath('layout'))
- cy.get('.applets-demo-header').contains('Layout')
- // layout test
- cy.contains('span:24').parent().children().should('have.length', 1)
- cy.contains('span:12').parent().parent().children().should('have.length', 2)
- cy.contains('span:8').parent().parent().children().should('have.length', 3)
- cy.contains('span:6').parent().parent().children().should('have.length', 4)
- cy.wait(400)
- })
-
- it('space successfully passes', () => {
- cy.visit(getPath('space'))
- cy.get('.applets-demo-header').contains('Space')
- // Space Test
- cy.contains('垂直')
- .next()
- .find('.nut-space')
- .should('have.class', 'nut-space-vertical')
- cy.wait(400)
- })
-
- it('sticky successfully passes', () => {
- cy.visit(getPath('sticky'))
- cy.get('.applets-demo-header').contains('Sticky')
- // Scroll Sticky
- cy.get('.demo').scrollTo('bottom')
- cy.contains('距离顶部120px').parent().should('have.css', 'top', '120px')
- cy.get('.demo').scrollTo('top')
- cy.contains('距离底部0px').parent().should('have.css', 'bottom', '0px')
- cy.wait(400)
- })
-
- it('safearea successfully passes', () => {
- cy.visit(getPath('safearea'))
- cy.get('.applets-demo-header').contains('SafeArea')
- // SafeArea Class
- cy.get('.demo').scrollTo('bottom')
- cy.get('.nut-safe-area').should('exist')
- cy.get('.nut-safe-area-position-bottom').should('exist')
- cy.wait(400)
- })
-})
diff --git a/cypress/e2e/taro/nav.cy.js b/cypress/e2e/taro/nav.cy.js
deleted file mode 100644
index 67e198c926..0000000000
--- a/cypress/e2e/taro/nav.cy.js
+++ /dev/null
@@ -1,55 +0,0 @@
-const getPath = (component) => `nav/pages/${component}/index`
-
-describe('layout components test', () => {
- it('backtop successfully passes', () => {
- cy.visit(getPath('backtop'))
- cy.get('.applets-demo-header').contains('BackTop')
- cy.contains('顶部').should('not.be.visible')
- cy.contains('我是测试数据20').scrollIntoView()
- cy.contains('顶部').should('be.visible')
- cy.contains('顶部').click()
- cy.contains('我是测试数据20').should('not.be.visible')
- cy.contains('我是测试数据1').should('be.visible')
- cy.contains('顶部').should('not.be.visible')
- cy.wait(400)
- })
- it('elevator successfully passes', () => {
- cy.visit(getPath('elevator'))
- cy.get('.applets-demo-header').contains('Elevator')
- cy.contains('h2', '自定义内容').scrollIntoView()
- cy.get('.nut-elevator-list-inner.taro-scroll-view__scroll-y')
- .eq(4)
- .scrollTo('bottom')
- .then(() => {
- cy.get('.nut-elevator-list-inner.taro-scroll-view__scroll-y')
- .eq(4)
- .contains('河南')
- .should('be.visible')
- })
- cy.wait(400)
- })
- it('fixednav successfully passes', () => {
- cy.visit(getPath('fixednav'))
- cy.get('.applets-demo-header').contains('FixedNav')
- cy.get('.nut-fixednav-btn').contains('左侧展开').click()
- cy.get('.nut-fixednav-btn').contains('快速导航').click()
- cy.get('.nut-fixednav-btn').contains('自定义关').click()
- cy.wait(400)
- })
- it('navbar successfully passes', () => {
- cy.visit(getPath('navbar'))
- cy.wait(400)
- })
- it('sidenavbar successfully passes', () => {
- cy.visit(getPath('sidenavbar'))
- cy.wait(400)
- })
- it('tabbar successfully passes', () => {
- cy.visit(getPath('tabbar'))
- cy.wait(400)
- })
- it('tabs successfully passes', () => {
- cy.visit(getPath('tabs'))
- cy.wait(400)
- })
-})
diff --git a/cypress/e2e/utils/visit-demo.cy.js b/cypress/e2e/utils/visit-demo.cy.js
new file mode 100644
index 0000000000..4825dafccf
--- /dev/null
+++ b/cypress/e2e/utils/visit-demo.cy.js
@@ -0,0 +1,21 @@
+export const visitH5Demo = (componentName, delay = 500) => {
+ const getPath = () => `${Cypress.env('baseUrl')}${componentName}`
+ cy.visit(getPath(componentName), {
+ onBeforeLoad: (win) => {
+ Object.defineProperty(win.navigator, 'userAgent', {
+ value:
+ 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14E5239e Safari/602.1',
+ })
+ },
+ })
+ cy.get('#nav').contains(componentName)
+ cy.wait(delay)
+}
+export const visitTaroDemo = (path, componentName, delay = 1000) => {
+ const getPath = (component) =>
+ `${Cypress.env('baseUrl')}${path}/pages/${component.toLowerCase()}/index`
+
+ cy.visit(getPath(componentName))
+ cy.get('.applets-demo-header').contains(componentName)
+ cy.wait(delay)
+}
diff --git a/cypress/screenshots/index.cy.js/layout components test -- Switch successfully passes (failed).png b/cypress/screenshots/index.cy.js/layout components test -- Switch successfully passes (failed).png
deleted file mode 100644
index 26614dae96..0000000000
Binary files a/cypress/screenshots/index.cy.js/layout components test -- Switch successfully passes (failed).png and /dev/null differ
diff --git a/cypress/screenshots/taro/dentry.cy.js/layout components test -- Switch successfully passes (failed).png b/cypress/screenshots/taro/dentry.cy.js/layout components test -- Switch successfully passes (failed).png
deleted file mode 100644
index c264aa48a0..0000000000
Binary files a/cypress/screenshots/taro/dentry.cy.js/layout components test -- Switch successfully passes (failed).png and /dev/null differ
diff --git a/package.json b/package.json
index e365ff5c65..87dc4cdecc 100644
--- a/package.json
+++ b/package.json
@@ -84,8 +84,14 @@
"publish:beta": "npm publish --tag beta",
"test": "vitest --coverage",
"test:ui": "vitest --ui --coverage",
- "test:auto": "npm run dev:taro:h5 & cypress open",
- "test:auto:run": "npm run dev:taro:h5 & cypress run",
+ "cypress:run": "cypress run --env baseUrl=http://localhost:5173/react/demo.html#/zh-CN/component/ --spec 'cypress/e2e/h5/index.cy.js'",
+ "cypress:open": "cypress open --env baseUrl=http://localhost:5173/react/demo.html#/zh-CN/component/ 'cypress/e2e/h5/index.cy.js'",
+ "cypress:run:taro": "cypress run --env baseUrl=http://localhost:10086/#/ --spec 'cypress/e2e/taro/index.cy.js'",
+ "cypress:open:taro": "cypress open --env baseUrl=http://localhost:10086/#/ 'cypress/e2e/taro/index.cy.js'",
+ "e2e:run:h5": "start-server-and-test dev http://localhost:5173/ cypress:run",
+ "e2e:open:h5": "start-server-and-test dev http://localhost:5173/ cypress:open",
+ "e2e:run:taro": "start-server-and-test dev:taro:h5 http://localhost:10086 cypress:run:taro",
+ "e2e:open:taro": "start-server-and-test dev:taro:h5 http://localhost:10086 cypress:open:taro",
"update:taro:entry": "node ./scripts/rn/update-taro-entry",
"upgradeTaro": "pnpm --dir ./packages/nutui-taro-demo upgradeTaro"
},
@@ -149,9 +155,9 @@
"@vitest/ui": "^2.0.4",
"autoprefixer": "^10.4.17",
"axios": "^1.6.7",
+ "cypress": "^13.15.0",
"del": "^7.1.0",
"eslint": "^8.56.0",
- "cypress": "^13.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
@@ -203,6 +209,8 @@
"rollup": "^4.12.0",
"sass": "^1.71.1",
"shelljs": "^0.8.5",
+ "simple-git": "^3.25.0",
+ "start-server-and-test": "^2.0.8",
"turndown": "^7.1.2",
"turndown-plugin-gfm": "^1.0.2",
"typescript": "^5.3.3",
@@ -212,7 +220,6 @@
"vite-plugin-dts": "4.2.1",
"vitest": "^2.0.4",
"vitest-canvas-mock": "^0.3.3",
- "simple-git": "^3.25.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 29e6834c1b..313bf3d1d2 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,7 +16,7 @@ importers:
dependencies:
'@babel/runtime':
specifier: ^7.23.9
- version: 7.26.0
+ version: 7.25.4
'@nutui/icons-react':
specifier: ^2.0.1
version: 2.0.1
@@ -56,46 +56,46 @@ importers:
devDependencies:
'@babel/plugin-proposal-class-properties':
specifier: ^7.18.6
- version: 7.18.6(@babel/core@7.26.0)
+ version: 7.18.6(@babel/core@7.25.2)
'@commitlint/cli':
specifier: ^19.0.3
- version: 19.6.0(@types/node@20.17.9)(typescript@5.7.2)
+ version: 19.4.0(@types/node@20.16.1)(typescript@5.5.4)
'@commitlint/config-conventional':
specifier: ^19.0.3
- version: 19.6.0
+ version: 19.2.2
'@loadable/component':
specifier: ^5.16.3
version: 5.16.4(react@18.3.1)
'@mdx-js/mdx':
specifier: ^3.0.1
- version: 3.1.0(acorn@8.14.0)
+ version: 3.0.1
'@mdx-js/react':
specifier: ^3.0.1
- version: 3.1.0(@types/react@18.3.14)(react@18.3.1)
+ version: 3.0.1(@types/react@18.3.4)(react@18.3.1)
'@mdx-js/rollup':
specifier: ^3.0.1
- version: 3.1.0(acorn@8.14.0)(rollup@4.28.0)
+ version: 3.0.1(rollup@4.21.1)
'@pmmmwh/react-refresh-webpack-plugin':
specifier: 0.5.10
- version: 0.5.10(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ version: 0.5.10(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@4.28.0)
+ version: 6.0.4(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@4.21.1)
'@rollup/plugin-commonjs':
specifier: ^26.0.1
- version: 26.0.3(rollup@4.28.0)
+ version: 26.0.1(rollup@4.21.1)
'@rollup/plugin-node-resolve':
specifier: 15.2.3
- version: 15.2.3(rollup@4.28.0)
+ version: 15.2.3(rollup@4.21.1)
'@rollup/plugin-typescript':
specifier: ^11.1.6
- version: 11.1.6(rollup@4.28.0)(tslib@2.8.1)(typescript@5.7.2)
+ version: 11.1.6(rollup@4.21.1)(tslib@2.8.1)(typescript@5.5.4)
'@swc/core':
specifier: ^1.4.8
- version: 1.10.0(@swc/helpers@0.5.15)
+ version: 1.10.1(@swc/helpers@0.5.15)
'@tarojs/components':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
'@tarojs/plugin-platform-alipay':
specifier: 4.0.8-beta.1
version: 4.0.8-beta.1(@tarojs/service@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)
@@ -110,13 +110,13 @@ importers:
version: 4.0.8-beta.1(react@18.3.1)
'@tarojs/taro':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
'@testing-library/jest-dom':
specifier: ^6.4.2
- version: 6.6.3
+ version: 6.5.0
'@testing-library/react':
specifier: ^16.0.0
- version: 16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.2)(@types/react@18.3.14)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/fs-extra':
specifier: ^11.0.4
version: 11.0.4
@@ -131,22 +131,22 @@ importers:
version: 4.1.9
'@types/node':
specifier: ^20.11.19
- version: 20.17.9
+ version: 20.16.1
'@types/postcss-import':
specifier: ^14.0.3
version: 14.0.3
'@types/react':
specifier: ^18.2.57
- version: 18.3.14
+ version: 18.3.4
'@types/react-dom':
specifier: ^18.2.19
- version: 18.3.2
+ version: 18.3.0
'@types/react-syntax-highlighter':
specifier: ^15.5.11
version: 15.5.13
'@types/react-test-renderer':
specifier: ^18.0.7
- version: 18.3.1
+ version: 18.3.0
'@types/react-transition-group':
specifier: ^4.4.10
version: 4.4.11
@@ -155,25 +155,25 @@ importers:
version: 6.0.0
'@typescript-eslint/eslint-plugin':
specifier: ^7.0.2
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/parser':
specifier: ^7.0.2
- version: 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ version: 7.18.0(eslint@8.57.0)(typescript@5.5.4)
'@vitejs/plugin-react':
specifier: ^4.2.1
- version: 4.3.4(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 4.3.1(vite@5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
'@vitest/coverage-v8':
specifier: ^2.0.4
- version: 2.1.8(vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 2.0.5(vitest@2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
'@vitest/ui':
specifier: ^2.0.4
- version: 2.1.8(vitest@2.1.8)
+ version: 2.0.5(vitest@2.0.5)
autoprefixer:
specifier: ^10.4.17
- version: 10.4.20(postcss@8.4.49)
+ version: 10.4.20(postcss@8.4.41)
axios:
specifier: ^1.6.7
- version: 1.7.9
+ version: 1.7.5
cypress:
specifier: ^13.15.0
version: 13.16.1
@@ -182,34 +182,34 @@ importers:
version: 7.1.0
eslint:
specifier: ^8.56.0
- version: 8.57.1
+ version: 8.57.0
eslint-config-airbnb:
specifier: ^19.0.4
- version: 19.0.4(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint@8.57.1)
+ version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.35.0(eslint@8.57.0))(eslint@8.57.0)
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@8.57.1)
+ version: 9.1.0(eslint@8.57.0)
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
+ version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
eslint-plugin-jsx-a11y:
specifier: ^6.8.0
- version: 6.10.2(eslint@8.57.1)
+ version: 6.9.0(eslint@8.57.0)
eslint-plugin-markdown:
specifier: ^5.0.0
- version: 5.1.0(eslint@8.57.1)
+ version: 5.1.0(eslint@8.57.0)
eslint-plugin-prettier:
specifier: ^5.1.3
- version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2)
+ version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3)
eslint-plugin-react:
specifier: ^7.33.2
- version: 7.37.2(eslint@8.57.1)
+ version: 7.35.0(eslint@8.57.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.2(eslint@8.57.1)
+ version: 4.6.2(eslint@8.57.0)
eslint-plugin-unused-imports:
specifier: ^4.0.0
- version: 4.1.4(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
+ version: 4.1.3(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
fs-extra:
specifier: ^11.2.0
version: 11.2.0
@@ -224,7 +224,7 @@ importers:
version: 0.5.0
gulp-postcss:
specifier: ^10.0.0
- version: 10.0.0(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)
+ version: 10.0.0(jiti@2.3.3)(postcss@8.4.41)(tsx@4.19.2)
gulp-rename:
specifier: ^2.0.0
version: 2.0.0
@@ -242,16 +242,16 @@ importers:
version: 11.10.0
husky:
specifier: ^9.0.11
- version: 9.1.7
+ version: 9.1.5
inquirer:
specifier: ^10.1.4
- version: 10.2.2
+ version: 10.1.8
jscodeshift:
specifier: ^17.0.0
- version: 17.1.1(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ version: 17.0.0(@babel/preset-env@7.26.0(@babel/core@7.25.2))
lint-staged:
specifier: ^15.2.2
- version: 15.2.10
+ version: 15.2.9
lzutf8:
specifier: 0.6.3
version: 0.6.3
@@ -263,37 +263,37 @@ importers:
version: 14.1.0
marked:
specifier: ^14.1.1
- version: 14.1.4
+ version: 14.1.1
mobx:
specifier: ^6.12.0
- version: 6.13.5
+ version: 6.13.1
mobx-react-lite:
specifier: ^4.0.5
- version: 4.0.7(mobx@6.13.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.0.7(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
postcss:
specifier: ^8.4.35
- version: 8.4.49
+ version: 8.4.41
postcss-css-variables:
specifier: ^0.19.0
- version: 0.19.0(postcss@8.4.49)
+ version: 0.19.0(postcss@8.4.41)
postcss-import:
specifier: ^16.0.1
- version: 16.1.0(postcss@8.4.49)
+ version: 16.1.0(postcss@8.4.41)
postcss-modules:
specifier: ^6.0.0
- version: 6.0.1(postcss@8.4.49)
+ version: 6.0.0(postcss@8.4.41)
postcss-rtlcss:
specifier: ^5.1.0
- version: 5.5.1(postcss@8.4.49)
+ version: 5.3.1(postcss@8.4.41)
postcss-scss:
specifier: ^4.0.9
- version: 4.0.9(postcss@8.4.49)
+ version: 4.0.9(postcss@8.4.41)
prettier:
specifier: ^3.2.5
- version: 3.4.2
+ version: 3.3.3
prettier-markdown-table:
specifier: ^1.0.2
- version: 1.0.3(linguist-languages@7.27.0)(prettier@3.4.2)
+ version: 1.0.2
react:
specifier: ^18.2.0
version: 18.3.1
@@ -305,16 +305,16 @@ importers:
version: 18.3.1(react@18.3.1)
react-markdown:
specifier: ^9.0.1
- version: 9.0.1(@types/react@18.3.14)(react@18.3.1)
+ version: 9.0.1(@types/react@18.3.4)(react@18.3.1)
react-refresh:
specifier: ^0.14.0
version: 0.14.2
react-router-dom:
specifier: ^6.22.1
- version: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-syntax-highlighter:
specifier: ^15.5.0
- version: 15.6.1(react@18.3.1)
+ version: 15.5.0(react@18.3.1)
react-test-renderer:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
@@ -329,16 +329,19 @@ importers:
version: 4.0.0
rollup:
specifier: ^4.12.0
- version: 4.28.0
+ version: 4.21.1
sass:
specifier: ^1.71.1
- version: 1.82.0
+ version: 1.77.8
shelljs:
specifier: ^0.8.5
version: 0.8.5
simple-git:
specifier: ^3.25.0
version: 3.27.0
+ start-server-and-test:
+ specifier: ^2.0.8
+ version: 2.0.8
turndown:
specifier: ^7.1.2
version: 7.2.0
@@ -347,7 +350,7 @@ importers:
version: 1.0.2
typescript:
specifier: ^5.3.3
- version: 5.7.2
+ version: 5.5.4
unist-util-visit:
specifier: ^5.0.0
version: 5.0.0
@@ -356,16 +359,16 @@ importers:
version: 4.0.0
vite:
specifier: ^5.1.3
- version: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ version: 5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
vite-plugin-dts:
specifier: 4.2.1
- version: 4.2.1(@types/node@20.17.9)(rollup@4.28.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 4.2.1(@types/node@20.16.1)(rollup@4.21.1)(typescript@5.5.4)(vite@5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
vitest:
specifier: ^2.0.4
- version: 2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ version: 2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
vitest-canvas-mock:
specifier: ^0.3.3
- version: 0.3.3(vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 0.3.3(vitest@2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
yargs:
specifier: ^17.7.2
version: 17.7.2
@@ -374,7 +377,7 @@ importers:
dependencies:
'@rollup/pluginutils':
specifier: ^5.1.1
- version: 5.1.3(rollup@4.28.0)
+ version: 5.1.3(rollup@4.28.1)
'@types/babel__traverse':
specifier: ^7.20.6
version: 7.20.6
@@ -393,40 +396,40 @@ importers:
version: 7.26.0
'@babel/preset-react':
specifier: ^7.25.7
- version: 7.26.3(@babel/core@7.26.0)
+ version: 7.25.9(@babel/core@7.26.0)
'@nutui/nutui-react':
specifier: ^2.6.22
- version: 2.7.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ version: 2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rollup/plugin-babel':
specifier: ^6.0.4
- version: 6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@4.28.0)
+ version: 6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@4.28.1)
'@sxzz/eslint-config':
specifier: ^4.2.0
- version: 4.5.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
+ version: 4.5.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
'@sxzz/prettier-config':
specifier: ^2.0.2
version: 2.0.2
'@sxzz/test-utils':
specifier: ^0.3.2
- version: 0.3.8(esbuild@0.24.0)(rollup@4.28.0)(vitest@2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 0.3.11(esbuild@0.24.0)(rollup@4.28.1)(vitest@2.1.7(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
'@types/node':
specifier: ^22.5.5
version: 22.10.1
bumpp:
specifier: ^9.5.2
- version: 9.8.1(magicast@0.3.5)
+ version: 9.9.0
eslint:
specifier: ^9.11.0
- version: 9.16.0(jiti@1.21.6)
+ version: 9.16.0(jiti@2.3.3)
fast-glob:
specifier: ^3.3.2
version: 3.3.2
prettier:
specifier: ^3.3.3
- version: 3.4.2
+ version: 3.3.3
tsup:
specifier: ^8.3.0
- version: 8.3.5(@microsoft/api-extractor@7.47.7(@types/node@22.10.1))(@swc/core@1.10.0(@swc/helpers@0.5.15))(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1)
+ version: 8.3.5(@microsoft/api-extractor@7.47.7(@types/node@22.10.1))(@swc/core@1.10.1(@swc/helpers@0.5.15))(jiti@2.3.3)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.5.0)
tsx:
specifier: ^4.19.1
version: 4.19.2
@@ -435,10 +438,10 @@ importers:
version: 5.7.2
vite:
specifier: ^5.4.7
- version: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ version: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
vitest:
specifier: ^2.1.1
- version: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ version: 2.1.7(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
packages/nutui-codemod:
dependencies:
@@ -450,44 +453,44 @@ importers:
version: 1.1.0
jscodeshift:
specifier: ^17.0.0
- version: 17.1.1(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ version: 17.0.0(@babel/preset-env@7.26.0(@babel/core@7.26.0))
devDependencies:
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.10.1)
+ version: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
prettier:
specifier: ^3.2.5
- version: 3.4.2
+ version: 3.3.3
release-it:
specifier: ^17.1.1
- version: 17.10.0(typescript@5.7.2)
+ version: 17.6.0(typescript@5.7.2)
ts-jest:
specifier: ^29.1.2
- version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.1))(typescript@5.7.2)
+ version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)))(typescript@5.7.2)
packages/nutui-taro-demo:
dependencies:
'@babel/runtime':
specifier: ^7.23.9
- version: 7.26.0
+ version: 7.25.4
'@nutui/replace-icons':
specifier: ^1.0.0
- version: 1.0.3(@types/node@22.10.1)(@vitest/ui@2.1.8(vitest@2.1.8))(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ version: 1.0.3(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
'@nutui/touch-emulator':
specifier: ^1.0.0
version: 1.0.0
'@pmmmwh/react-refresh-webpack-plugin':
specifier: ^0.5.11
- version: 0.5.15(react-refresh@0.14.2)(type-fest@4.30.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ version: 0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/components':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/helper':
specifier: 4.0.8-beta.1
version: 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/plugin-framework-react':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.30.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)))(react@18.3.1)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@vitejs/plugin-react@4.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)))(react@18.3.1)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/plugin-html':
specifier: 4.0.8-beta.1
version: 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)
@@ -496,7 +499,7 @@ importers:
version: 4.0.8-beta.1(@tarojs/service@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)
'@tarojs/plugin-platform-h5':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(nuih3mewxgvez2kea4l7jgwyya)
+ version: 4.0.8-beta.1(2qaiaevfigvkfdfczfbkfqugfy)
'@tarojs/plugin-platform-jd':
specifier: 4.0.8-beta.1
version: 4.0.8-beta.1(@tarojs/service@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)
@@ -517,7 +520,7 @@ importers:
version: 4.0.8-beta.1(react@18.3.1)
'@tarojs/router':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
+ version: 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
'@tarojs/runtime':
specifier: 4.0.8-beta.1
version: 4.0.8-beta.1
@@ -526,10 +529,10 @@ importers:
version: 4.0.8-beta.1
'@tarojs/taro':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/taro-h5':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(4dzjgnyowiuizwmw2pfyf5kupm)
+ version: 4.0.8-beta.1(n6kyejcxqu6rfctyf6w44reseq)
babel-plugin-import:
specifier: ^1.13.8
version: 1.13.8
@@ -560,19 +563,19 @@ importers:
version: 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/plugin-platform-harmony-ets':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
+ version: 4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
'@tarojs/vite-runner':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(@types/babel__core@7.20.5)(jiti@1.21.6)(postcss@8.4.49)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ version: 4.0.8-beta.1(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(@types/babel__core@7.20.5)(jiti@2.3.3)(postcss@8.4.47)(rollup@3.29.5)(terser@5.31.6)(tsx@4.19.2)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
'@tarojs/webpack5-runner':
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(less@3.13.1)(postcss@8.4.49)(sass@1.82.0)(stylus@0.64.0)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ version: 4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(less@4.2.0)(postcss@8.4.47)(sass@1.77.8)(stylus@0.55.0)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@types/react':
specifier: ^18.2.57
- version: 18.3.14
+ version: 18.3.4
'@types/react-dom':
specifier: ^18.2.19
- version: 18.3.2
+ version: 18.3.0
'@types/react-router-dom':
specifier: ^5.3.3
version: 5.3.3
@@ -581,7 +584,7 @@ importers:
version: 15.5.13
'@types/react-test-renderer':
specifier: ^18.0.7
- version: 18.3.1
+ version: 18.3.0
'@types/react-transition-group':
specifier: ^4.4.10
version: 4.4.11
@@ -590,31 +593,31 @@ importers:
version: 1.18.5
'@typescript-eslint/eslint-plugin':
specifier: ^7.0.2
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: ^7.0.2
- version: 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ version: 7.18.0(eslint@8.57.0)(typescript@5.7.2)
babel-preset-taro:
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0))(@babel/preset-react@7.26.3(@babel/core@7.26.0))(@swc/helpers@0.5.15)(react-refresh@0.14.2)
+ version: 4.0.8-beta.1(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0))(@babel/preset-react@7.25.9(@babel/core@7.26.0))(@swc/helpers@0.5.15)(react-refresh@0.14.2)
eslint:
specifier: ^8.56.0
- version: 8.57.1
+ version: 8.57.0
eslint-config-taro:
specifier: 4.0.8-beta.1
- version: 4.0.8-beta.1(@babel/core@7.26.0)(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(typescript@5.7.2)
+ version: 4.0.8-beta.1(@babel/core@7.26.0)(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.35.0(eslint@8.57.0))(eslint-plugin-vue@9.32.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.7.2)
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
+ version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)
eslint-plugin-react:
specifier: ^7.33.2
- version: 7.37.2(eslint@8.57.1)
+ version: 7.35.0(eslint@8.57.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.2(eslint@8.57.1)
+ version: 4.6.2(eslint@8.57.0)
postcss:
specifier: ^8.4.35
- version: 8.4.49
+ version: 8.4.47
stylelint:
specifier: ^16.7.0
version: 16.11.0(typescript@5.7.2)
@@ -624,11 +627,8 @@ importers:
packages:
- '@adobe/css-tools@4.3.3':
- resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
-
- '@adobe/css-tools@4.4.1':
- resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==}
+ '@adobe/css-tools@4.4.0':
+ resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
@@ -644,12 +644,24 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/code-frame@7.26.0':
+ resolution: {integrity: sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.25.4':
+ resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.26.0':
+ resolution: {integrity: sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.3':
- resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
@@ -663,35 +675,61 @@ packages:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.26.3':
- resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
+ '@babel/generator@7.25.5':
+ resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.26.0':
+ resolution: {integrity: sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-compilation-targets@7.25.9':
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-create-class-features-plugin@7.25.4':
+ resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-create-class-features-plugin@7.25.9':
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.26.3':
- resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.3':
- resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
+ '@babel/helper-define-polyfill-provider@0.6.2':
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/helper-member-expression-to-functions@7.24.8':
+ resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-member-expression-to-functions@7.25.9':
resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
@@ -700,20 +738,38 @@ packages:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.24.7':
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-optimise-call-expression@7.24.7':
+ resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-optimise-call-expression@7.25.9':
resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.24.8':
+ resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-plugin-utils@7.25.9':
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
@@ -724,24 +780,54 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.25.0':
+ resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-replace-supers@7.25.9':
resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-simple-access@7.24.7':
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.24.8':
+ resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.24.8':
+ resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
@@ -750,12 +836,25 @@ packages:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.25.0':
+ resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.3':
- resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.25.4':
+ resolution: {integrity: sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/parser@7.26.1':
+ resolution: {integrity: sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -796,8 +895,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.25.9':
- resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
+ '@babel/plugin-proposal-decorators@7.24.7':
+ resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -829,14 +928,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.9':
- resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
+ '@babel/plugin-syntax-decorators@7.24.7':
+ resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.26.0':
- resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
+ '@babel/plugin-syntax-flow@7.24.7':
+ resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -847,6 +946,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-attributes@7.24.7':
+ resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
@@ -863,6 +968,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-jsx@7.24.7':
+ resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
@@ -911,8 +1022,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.9':
- resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ '@babel/plugin-syntax-typescript@7.25.4':
+ resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -953,6 +1064,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-class-properties@7.25.4':
+ resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-properties@7.25.9':
resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
@@ -1007,8 +1124,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.26.3':
- resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1019,8 +1136,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.25.9':
- resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==}
+ '@babel/plugin-transform-flow-strip-types@7.25.2':
+ resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1067,8 +1184,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.26.3':
- resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
+ '@babel/plugin-transform-modules-commonjs@7.24.8':
+ resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1097,6 +1220,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
+ resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
@@ -1127,6 +1256,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-chaining@7.24.8':
+ resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-chaining@7.25.9':
resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
@@ -1139,6 +1274,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-methods@7.25.4':
+ resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-methods@7.25.9':
resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
@@ -1169,14 +1310,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.9':
- resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
+ '@babel/plugin-transform-react-jsx-self@7.24.7':
+ resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.9':
- resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
+ '@babel/plugin-transform-react-jsx-source@7.24.7':
+ resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1211,8 +1352,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.25.9':
- resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
+ '@babel/plugin-transform-runtime@7.25.4':
+ resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1247,8 +1388,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.26.3':
- resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
+ '@babel/plugin-transform-typescript@7.25.2':
+ resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1283,8 +1424,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.25.9':
- resolution: {integrity: sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==}
+ '@babel/preset-flow@7.24.7':
+ resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1294,20 +1435,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.26.3':
- resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==}
+ '@babel/preset-react@7.25.9':
+ resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.26.0':
- resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
+ '@babel/preset-typescript@7.24.7':
+ resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.25.9':
- resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==}
+ '@babel/register@7.24.6':
+ resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1316,20 +1457,32 @@ packages:
resolution: {integrity: sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.26.0':
- resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ '@babel/runtime@7.25.4':
+ resolution: {integrity: sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.4':
- resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
+ '@babel/traverse@7.25.4':
+ resolution: {integrity: sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.3':
- resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
+ '@babel/types@7.25.4':
+ resolution: {integrity: sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
@@ -1339,75 +1492,79 @@ packages:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
- '@commitlint/cli@19.6.0':
- resolution: {integrity: sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==}
+ '@commitlint/cli@19.4.0':
+ resolution: {integrity: sha512-sJX4J9UioVwZHq7JWM9tjT5bgWYaIN3rC4FP7YwfEwBYiIO+wMyRttRvQLNkow0vCdM0D67r9NEWU0Ui03I4Eg==}
engines: {node: '>=v18'}
hasBin: true
- '@commitlint/config-conventional@19.6.0':
- resolution: {integrity: sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==}
+ '@commitlint/config-conventional@19.2.2':
+ resolution: {integrity: sha512-mLXjsxUVLYEGgzbxbxicGPggDuyWNkf25Ht23owXIH+zV2pv1eJuzLK3t1gDY5Gp6pxdE60jZnWUY5cvgL3ufw==}
engines: {node: '>=v18'}
- '@commitlint/config-validator@19.5.0':
- resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
+ '@commitlint/config-validator@19.0.3':
+ resolution: {integrity: sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==}
engines: {node: '>=v18'}
- '@commitlint/ensure@19.5.0':
- resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
+ '@commitlint/ensure@19.0.3':
+ resolution: {integrity: sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==}
engines: {node: '>=v18'}
- '@commitlint/execute-rule@19.5.0':
- resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
+ '@commitlint/execute-rule@19.0.0':
+ resolution: {integrity: sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==}
engines: {node: '>=v18'}
- '@commitlint/format@19.5.0':
- resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
+ '@commitlint/format@19.3.0':
+ resolution: {integrity: sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==}
engines: {node: '>=v18'}
- '@commitlint/is-ignored@19.6.0':
- resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==}
+ '@commitlint/is-ignored@19.2.2':
+ resolution: {integrity: sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==}
engines: {node: '>=v18'}
- '@commitlint/lint@19.6.0':
- resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==}
+ '@commitlint/lint@19.2.2':
+ resolution: {integrity: sha512-xrzMmz4JqwGyKQKTpFzlN0dx0TAiT7Ran1fqEBgEmEj+PU98crOFtysJgY+QdeSagx6EDRigQIXJVnfrI0ratA==}
engines: {node: '>=v18'}
- '@commitlint/load@19.5.0':
- resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==}
+ '@commitlint/load@19.4.0':
+ resolution: {integrity: sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==}
engines: {node: '>=v18'}
- '@commitlint/message@19.5.0':
- resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==}
+ '@commitlint/message@19.0.0':
+ resolution: {integrity: sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==}
engines: {node: '>=v18'}
- '@commitlint/parse@19.5.0':
- resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==}
+ '@commitlint/parse@19.0.3':
+ resolution: {integrity: sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==}
engines: {node: '>=v18'}
- '@commitlint/read@19.5.0':
- resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
+ '@commitlint/read@19.4.0':
+ resolution: {integrity: sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==}
engines: {node: '>=v18'}
- '@commitlint/resolve-extends@19.5.0':
- resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
+ '@commitlint/resolve-extends@19.1.0':
+ resolution: {integrity: sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==}
engines: {node: '>=v18'}
- '@commitlint/rules@19.6.0':
- resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==}
+ '@commitlint/rules@19.0.3':
+ resolution: {integrity: sha512-TspKb9VB6svklxNCKKwxhELn7qhtY1rFF8ls58DcFd0F97XoG07xugPjjbVnLqmMkRjZDbDIwBKt9bddOfLaPw==}
engines: {node: '>=v18'}
- '@commitlint/to-lines@19.5.0':
- resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==}
+ '@commitlint/to-lines@19.0.0':
+ resolution: {integrity: sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==}
engines: {node: '>=v18'}
- '@commitlint/top-level@19.5.0':
- resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
+ '@commitlint/top-level@19.0.0':
+ resolution: {integrity: sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==}
engines: {node: '>=v18'}
- '@commitlint/types@19.5.0':
- resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
+ '@commitlint/types@19.0.3':
+ resolution: {integrity: sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==}
engines: {node: '>=v18'}
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+
'@csstools/css-parser-algorithms@3.0.4':
resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
engines: {node: '>=18'}
@@ -1431,8 +1588,8 @@ packages:
peerDependencies:
postcss-selector-parser: ^7.0.0
- '@cypress/request@3.0.6':
- resolution: {integrity: sha512-fi0eVdCOtKu5Ed6+E8mYxUF6ZTFJDZvHogCBelM0xVXmrDEkyM22gRArQzq1YcHPm1V47Vf/iAD+WgVdUlJCGg==}
+ '@cypress/request@3.0.7':
+ resolution: {integrity: sha512-LzxlLEMbBOPYB85uXrDqvD4MgcenjRBLIns3zyhx7vTPj/0u2eQhzXvPiGcaJrV38Q9dbkExWp6cOHPJ+EtFYg==}
engines: {node: '>= 6'}
'@cypress/xvfb@1.2.4':
@@ -1881,12 +2038,22 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ '@eslint-community/eslint-utils@4.4.0':
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ '@eslint-community/regexpp@4.11.0':
+ resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -1920,8 +2087,8 @@ packages:
resolution: {integrity: sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@eslint/js@8.57.1':
- resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
+ '@eslint/js@8.57.0':
+ resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@eslint/js@9.16.0':
@@ -1967,11 +2134,6 @@ packages:
engines: {node: '>=10.10.0'}
deprecated: Use @eslint/config-array instead
- '@humanwhocodes/config-array@0.13.0':
- resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
-
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
@@ -1996,64 +2158,60 @@ packages:
peerDependencies:
react: '*'
- '@inquirer/checkbox@2.5.0':
- resolution: {integrity: sha512-sMgdETOfi2dUHT8r7TT1BTKOwNvdDGFDXYWtQ2J69SvlYNntk9I/gJe7r5yvMwwsuKnYbuRs3pNhx4tgNck5aA==}
- engines: {node: '>=18'}
-
- '@inquirer/confirm@3.2.0':
- resolution: {integrity: sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==}
+ '@inquirer/checkbox@2.4.7':
+ resolution: {integrity: sha512-5YwCySyV1UEgqzz34gNsC38eKxRBtlRDpJLlKcRtTjlYA/yDKuc1rfw+hjw+2WJxbAZtaDPsRl5Zk7J14SBoBw==}
engines: {node: '>=18'}
- '@inquirer/core@9.2.1':
- resolution: {integrity: sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==}
+ '@inquirer/confirm@3.1.22':
+ resolution: {integrity: sha512-gsAKIOWBm2Q87CDfs9fEo7wJT3fwWIJfnDGMn9Qy74gBnNFOACDNfhUzovubbJjWnKLGBln7/NcSmZwj5DuEXg==}
engines: {node: '>=18'}
- '@inquirer/editor@2.2.0':
- resolution: {integrity: sha512-9KHOpJ+dIL5SZli8lJ6xdaYLPPzB8xB9GZItg39MBybzhxA16vxmszmQFrRwbOA918WA2rvu8xhDEg/p6LXKbw==}
+ '@inquirer/core@9.0.10':
+ resolution: {integrity: sha512-TdESOKSVwf6+YWDz8GhS6nKscwzkIyakEzCLJ5Vh6O3Co2ClhCJ0A4MG909MUWfaWdpJm7DE45ii51/2Kat9tA==}
engines: {node: '>=18'}
- '@inquirer/expand@2.3.0':
- resolution: {integrity: sha512-qnJsUcOGCSG1e5DTOErmv2BPQqrtT6uzqn1vI/aYGiPKq+FgslGZmtdnXbhuI7IlT7OByDoEEqdnhUnVR2hhLw==}
+ '@inquirer/editor@2.1.22':
+ resolution: {integrity: sha512-K1QwTu7GCK+nKOVRBp5HY9jt3DXOfPGPr6WRDrPImkcJRelG9UTx2cAtK1liXmibRrzJlTWOwqgWT3k2XnS62w==}
engines: {node: '>=18'}
- '@inquirer/figures@1.0.8':
- resolution: {integrity: sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==}
+ '@inquirer/expand@2.1.22':
+ resolution: {integrity: sha512-wTZOBkzH+ItPuZ3ZPa9lynBsdMp6kQ9zbjVPYEtSBG7UulGjg2kQiAnUjgyG4SlntpTce5bOmXAPvE4sguXjpA==}
engines: {node: '>=18'}
- '@inquirer/input@2.3.0':
- resolution: {integrity: sha512-XfnpCStx2xgh1LIRqPXrTNEEByqQWoxsWYzNRSEUxJ5c6EQlhMogJ3vHKu8aXuTacebtaZzMAHwEL0kAflKOBw==}
+ '@inquirer/figures@1.0.5':
+ resolution: {integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==}
engines: {node: '>=18'}
- '@inquirer/number@1.1.0':
- resolution: {integrity: sha512-ilUnia/GZUtfSZy3YEErXLJ2Sljo/mf9fiKc08n18DdwdmDbOzRcTv65H1jjDvlsAuvdFXf4Sa/aL7iw/NanVA==}
+ '@inquirer/input@2.2.9':
+ resolution: {integrity: sha512-7Z6N+uzkWM7+xsE+3rJdhdG/+mQgejOVqspoW+w0AbSZnL6nq5tGMEVASaYVWbkoSzecABWwmludO2evU3d31g==}
engines: {node: '>=18'}
- '@inquirer/password@2.2.0':
- resolution: {integrity: sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==}
+ '@inquirer/number@1.0.10':
+ resolution: {integrity: sha512-kWTxRF8zHjQOn2TJs+XttLioBih6bdc5CcosXIzZsrTY383PXI35DuhIllZKu7CdXFi2rz2BWPN9l0dPsvrQOA==}
engines: {node: '>=18'}
- '@inquirer/prompts@5.5.0':
- resolution: {integrity: sha512-BHDeL0catgHdcHbSFFUddNzvx/imzJMft+tWDPwTm3hfu8/tApk1HrooNngB2Mb4qY+KaRWF+iZqoVUPeslEog==}
+ '@inquirer/password@2.1.22':
+ resolution: {integrity: sha512-5Fxt1L9vh3rAKqjYwqsjU4DZsEvY/2Gll+QkqR4yEpy6wvzLxdSgFhUcxfDAOtO4BEoTreWoznC0phagwLU5Kw==}
engines: {node: '>=18'}
- '@inquirer/rawlist@2.3.0':
- resolution: {integrity: sha512-zzfNuINhFF7OLAtGHfhwOW2TlYJyli7lOUoJUXw/uyklcwalV6WRXBXtFIicN8rTRK1XTiPWB4UY+YuW8dsnLQ==}
+ '@inquirer/prompts@5.3.8':
+ resolution: {integrity: sha512-b2BudQY/Si4Y2a0PdZZL6BeJtl8llgeZa7U2j47aaJSCeAl1e4UI7y8a9bSkO3o/ZbZrgT5muy/34JbsjfIWxA==}
engines: {node: '>=18'}
- '@inquirer/search@1.1.0':
- resolution: {integrity: sha512-h+/5LSj51dx7hp5xOn4QFnUaKeARwUCLs6mIhtkJ0JYPBLmEYjdHSYh7I6GrLg9LwpJ3xeX0FZgAG1q0QdCpVQ==}
+ '@inquirer/rawlist@2.2.4':
+ resolution: {integrity: sha512-pb6w9pWrm7EfnYDgQObOurh2d2YH07+eDo3xQBsNAM2GRhliz6wFXGi1thKQ4bN6B0xDd6C3tBsjdr3obsCl3Q==}
engines: {node: '>=18'}
- '@inquirer/select@2.5.0':
- resolution: {integrity: sha512-YmDobTItPP3WcEI86GvPo+T2sRHkxxOq/kXmsBjHS5BVXUgvgZ5AfJjkvQvZr03T81NnI3KrrRuMzeuYUQRFOA==}
+ '@inquirer/search@1.0.7':
+ resolution: {integrity: sha512-p1wpV+3gd1eST/o5N3yQpYEdFNCzSP0Klrl+5bfD3cTTz8BGG6nf4Z07aBW0xjlKIj1Rp0y3x/X4cZYi6TfcLw==}
engines: {node: '>=18'}
- '@inquirer/type@1.5.5':
- resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
+ '@inquirer/select@2.4.7':
+ resolution: {integrity: sha512-JH7XqPEkBpNWp3gPCqWqY8ECbyMoFcCZANlL6pV9hf59qK6dGmkOlx1ydyhY+KZ0c5X74+W6Mtp+nm2QX0/MAQ==}
engines: {node: '>=18'}
- '@inquirer/type@2.0.0':
- resolution: {integrity: sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==}
+ '@inquirer/type@1.5.2':
+ resolution: {integrity: sha512-w9qFkumYDCNyDZmNQjf/n6qQuvQ4dMC3BJesY4oF+yr0CxR5vxujflAVeIcS6U336uzi9GM0kAfZlLrZ9UTkpA==}
engines: {node: '>=18'}
'@isaacs/cliui@8.0.2':
@@ -2159,9 +2317,8 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@jsdevtools/ez-spawn@3.0.4':
- resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
- engines: {node: '>=10'}
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
'@kwsites/file-exists@1.1.1':
resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==}
@@ -2178,17 +2335,17 @@ packages:
peerDependencies:
react: ^16.3.0 || ^17.0.0 || ^18.0.0
- '@mdx-js/mdx@3.1.0':
- resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
+ '@mdx-js/mdx@3.0.1':
+ resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
- '@mdx-js/react@3.1.0':
- resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
+ '@mdx-js/react@3.0.1':
+ resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
'@types/react': ^18.2.57
react: '>=16'
- '@mdx-js/rollup@3.1.0':
- resolution: {integrity: sha512-q4xOtUXpCzeouE8GaJ8StT4rDxm/U5j6lkMHL2srb2Q3Y7cobE0aXyPzXVVlbeIMBi+5R5MpbiaVE5/vJUdnHg==}
+ '@mdx-js/rollup@3.0.1':
+ resolution: {integrity: sha512-j0II91OCm4ld+l5QVgXXMQGxVVcAWIQJakYWi1dv5pefDHASJyCYER2TsdH7Alf958GoFSM7ugukWyvDq/UY4A==}
peerDependencies:
rollup: '>=2'
@@ -2199,11 +2356,11 @@ packages:
resolution: {integrity: sha512-fNiD3G55ZJGhPOBPMKD/enozj8yxJSYyVJWxRWdcUtw842rvthDHJgUWq9gXQTensFlMHv2wGuCjjivPv53j0A==}
hasBin: true
- '@microsoft/tsdoc-config@0.17.1':
- resolution: {integrity: sha512-UtjIFe0C6oYgTnad4q1QP4qXwLhe6tIpNTRStJ2RZEPIkqQPREAwE5spzVxsdn9UaEMUqhh0AqSx3X4nWAKXWw==}
+ '@microsoft/tsdoc-config@0.17.0':
+ resolution: {integrity: sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg==}
- '@microsoft/tsdoc@0.15.1':
- resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+ '@microsoft/tsdoc@0.15.0':
+ resolution: {integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==}
'@mixmark-io/domino@2.2.0':
resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==}
@@ -2301,90 +2458,8 @@ packages:
resolution: {integrity: sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==}
engines: {node: '>= 18'}
- '@octokit/types@13.6.2':
- resolution: {integrity: sha512-WpbZfZUcZU77DrSW4wbsSgTPfKcp286q3ItaIgvSbBpZJlu6mnYXAkjZz6LVZPXkEvLIM8McanyZejKTYUHipA==}
-
- '@parcel/watcher-android-arm64@2.5.0':
- resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [android]
-
- '@parcel/watcher-darwin-arm64@2.5.0':
- resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [darwin]
-
- '@parcel/watcher-darwin-x64@2.5.0':
- resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [darwin]
-
- '@parcel/watcher-freebsd-x64@2.5.0':
- resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [freebsd]
-
- '@parcel/watcher-linux-arm-glibc@2.5.0':
- resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm-musl@2.5.0':
- resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-glibc@2.5.0':
- resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-musl@2.5.0':
- resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-glibc@2.5.0':
- resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-musl@2.5.0':
- resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-win32-arm64@2.5.0':
- resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [win32]
-
- '@parcel/watcher-win32-ia32@2.5.0':
- resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
- engines: {node: '>= 10.0.0'}
- cpu: [ia32]
- os: [win32]
-
- '@parcel/watcher-win32-x64@2.5.0':
- resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [win32]
-
- '@parcel/watcher@2.5.0':
- resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
- engines: {node: '>= 10.0.0'}
+ '@octokit/types@13.5.0':
+ resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
@@ -2458,8 +2533,8 @@ packages:
resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
- '@polka/url@1.0.0-next.28':
- resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@polka/url@1.0.0-next.25':
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
'@react-spring/animated@9.6.1':
resolution: {integrity: sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ==}
@@ -2488,8 +2563,8 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@remix-run/router@1.21.0':
- resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==}
+ '@remix-run/router@1.19.1':
+ resolution: {integrity: sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==}
engines: {node: '>=14.0.0'}
'@rnx-kit/babel-preset-metro-react-native@1.1.8':
@@ -2524,8 +2599,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@26.0.3':
- resolution: {integrity: sha512-2BJcolt43MY+y5Tz47djHkodCC3c1VKVrBDKpVqHKpQ9z9S158kCCqB8NF6/gzxLdNlYW9abB3Ibh+kOWLp8KQ==}
+ '@rollup/plugin-commonjs@26.0.1':
+ resolution: {integrity: sha512-UnsKoZK6/aGIH6AdkptXhNvhaqftcjq3zZdT+LY5Ftms6JR06nADcDsYp5hTU9E2lbJUEOhdlY5J4DNTneM+jQ==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -2573,6 +2648,15 @@ packages:
tslib:
optional: true
+ '@rollup/pluginutils@5.1.0':
+ resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
'@rollup/pluginutils@5.1.3':
resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
@@ -2582,98 +2666,180 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.28.0':
- resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==}
+ '@rollup/rollup-android-arm-eabi@4.21.1':
+ resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm-eabi@4.28.1':
+ resolution: {integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.28.0':
- resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==}
+ '@rollup/rollup-android-arm64@4.21.1':
+ resolution: {integrity: sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.28.0':
- resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==}
+ '@rollup/rollup-android-arm64@4.28.1':
+ resolution: {integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.21.1':
+ resolution: {integrity: sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-arm64@4.28.1':
+ resolution: {integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.28.0':
- resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==}
+ '@rollup/rollup-darwin-x64@4.21.1':
+ resolution: {integrity: sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.28.1':
+ resolution: {integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.28.0':
- resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==}
+ '@rollup/rollup-freebsd-arm64@4.28.1':
+ resolution: {integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.28.0':
- resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==}
+ '@rollup/rollup-freebsd-x64@4.28.1':
+ resolution: {integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
- resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
+ resolution: {integrity: sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.28.1':
+ resolution: {integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.28.0':
- resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.21.1':
+ resolution: {integrity: sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.28.0':
- resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.28.1':
+ resolution: {integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.21.1':
+ resolution: {integrity: sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.28.1':
+ resolution: {integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.21.1':
+ resolution: {integrity: sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.28.0':
- resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==}
+ '@rollup/rollup-linux-arm64-musl@4.28.1':
+ resolution: {integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
- resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.28.1':
+ resolution: {integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
+ resolution: {integrity: sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.28.0':
- resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
+ resolution: {integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.21.1':
+ resolution: {integrity: sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.28.1':
+ resolution: {integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.28.0':
- resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==}
+ '@rollup/rollup-linux-s390x-gnu@4.21.1':
+ resolution: {integrity: sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.28.1':
+ resolution: {integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.28.0':
- resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==}
+ '@rollup/rollup-linux-x64-gnu@4.21.1':
+ resolution: {integrity: sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.28.1':
+ resolution: {integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.28.0':
- resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==}
+ '@rollup/rollup-linux-x64-musl@4.21.1':
+ resolution: {integrity: sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.28.0':
- resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==}
+ '@rollup/rollup-linux-x64-musl@4.28.1':
+ resolution: {integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-win32-arm64-msvc@4.21.1':
+ resolution: {integrity: sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-arm64-msvc@4.28.1':
+ resolution: {integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.28.0':
- resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==}
+ '@rollup/rollup-win32-ia32-msvc@4.21.1':
+ resolution: {integrity: sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.28.1':
+ resolution: {integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.28.0':
- resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==}
+ '@rollup/rollup-win32-x64-msvc@4.21.1':
+ resolution: {integrity: sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==}
cpu: [x64]
os: [win32]
- '@rtsao/scc@1.1.0':
- resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+ '@rollup/rollup-win32-x64-msvc@4.28.1':
+ resolution: {integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==}
+ cpu: [x64]
+ os: [win32]
'@rushstack/node-core-library@5.7.0':
resolution: {integrity: sha512-Ff9Cz/YlWu9ce4dmqNBZpA45AEya04XaBFIjV7xTVeEf+y/kTjEasmozqFELXlNG4ROdevss75JrrZ5WgufDkQ==}
@@ -2717,6 +2883,10 @@ packages:
resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==}
engines: {node: '>=4'}
+ '@sindresorhus/is@5.6.0':
+ resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
+ engines: {node: '>=14.16'}
+
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -2732,8 +2902,8 @@ packages:
engines: {node: '>=12.10.0', npm: '>=6.0.0'}
hasBin: true
- '@swc/core-darwin-arm64@1.10.0':
- resolution: {integrity: sha512-wCeUpanqZyzvgqWRtXIyhcFK3CqukAlYyP+fJpY2gWc/+ekdrenNIfZMwY7tyTFDkXDYEKzvn3BN/zDYNJFowQ==}
+ '@swc/core-darwin-arm64@1.10.1':
+ resolution: {integrity: sha512-NyELPp8EsVZtxH/mEqvzSyWpfPJ1lugpTQcSlMduZLj1EASLO4sC8wt8hmL1aizRlsbjCX+r0PyL+l0xQ64/6Q==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -2744,8 +2914,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.10.0':
- resolution: {integrity: sha512-0CZPzqTynUBO+SHEl/qKsFSahp2Jv/P2ZRjFG0gwZY5qIcr1+B/v+o74/GyNMBGz9rft+F2WpU31gz2sJwyF4A==}
+ '@swc/core-darwin-x64@1.10.1':
+ resolution: {integrity: sha512-L4BNt1fdQ5ZZhAk5qoDfUnXRabDOXKnXBxMDJ+PWLSxOGBbWE6aJTnu4zbGjJvtot0KM46m2LPAPY8ttknqaZA==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -2756,8 +2926,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.10.0':
- resolution: {integrity: sha512-oq+DdMu5uJOFPtRkeiITc4kxmd+QSmK+v+OBzlhdGkSgoH3yRWZP+H2ao0cBXo93ZgCr2LfjiER0CqSKhjGuNA==}
+ '@swc/core-linux-arm-gnueabihf@1.10.1':
+ resolution: {integrity: sha512-Y1u9OqCHgvVp2tYQAJ7hcU9qO5brDMIrA5R31rwWQIAKDkJKtv3IlTHF0hrbWk1wPR0ZdngkQSJZple7G+Grvw==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -2768,8 +2938,8 @@ packages:
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.10.0':
- resolution: {integrity: sha512-Y6+PC8knchEViRxiCUj3j8wsGXaIhuvU+WqrFqV834eiItEMEI9+Vh3FovqJMBE3L7d4E4ZQtgImHCXjrHfxbw==}
+ '@swc/core-linux-arm64-gnu@1.10.1':
+ resolution: {integrity: sha512-tNQHO/UKdtnqjc7o04iRXng1wTUXPgVd8Y6LI4qIbHVoVPwksZydISjMcilKNLKIwOoUQAkxyJ16SlOAeADzhQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -2780,8 +2950,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.10.0':
- resolution: {integrity: sha512-EbrX9A5U4cECCQQfky7945AW9GYnTXtCUXElWTkTYmmyQK87yCyFfY8hmZ9qMFIwxPOH6I3I2JwMhzdi8Qoz7g==}
+ '@swc/core-linux-arm64-musl@1.10.1':
+ resolution: {integrity: sha512-x0L2Pd9weQ6n8dI1z1Isq00VHFvpBClwQJvrt3NHzmR+1wCT/gcYl1tp9P5xHh3ldM8Cn4UjWCw+7PaUgg8FcQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -2792,8 +2962,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.10.0':
- resolution: {integrity: sha512-TaxpO6snTjjfLXFYh5EjZ78se69j2gDcqEM8yB9gguPYwkCHi2Ylfmh7iVaNADnDJFtjoAQp0L41bTV/Pfq9Cg==}
+ '@swc/core-linux-x64-gnu@1.10.1':
+ resolution: {integrity: sha512-yyYEwQcObV3AUsC79rSzN9z6kiWxKAVJ6Ntwq2N9YoZqSPYph+4/Am5fM1xEQYf/kb99csj0FgOelomJSobxQA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -2804,8 +2974,8 @@ packages:
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.10.0':
- resolution: {integrity: sha512-IEGvDd6aEEKEyZFZ8oCKuik05G5BS7qwG5hO5PEMzdGeh8JyFZXxsfFXbfeAqjue4UaUUrhnoX+Ze3M2jBVMHw==}
+ '@swc/core-linux-x64-musl@1.10.1':
+ resolution: {integrity: sha512-tcaS43Ydd7Fk7sW5ROpaf2Kq1zR+sI5K0RM+0qYLYYurvsJruj3GhBCaiN3gkzd8m/8wkqNqtVklWaQYSDsyqA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -2816,8 +2986,8 @@ packages:
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.10.0':
- resolution: {integrity: sha512-UkQ952GSpY+Z6XONj9GSW8xGSkF53jrCsuLj0nrcuw7Dvr1a816U/9WYZmmcYS8tnG2vHylhpm6csQkyS8lpCw==}
+ '@swc/core-win32-arm64-msvc@1.10.1':
+ resolution: {integrity: sha512-D3Qo1voA7AkbOzQ2UGuKNHfYGKL6eejN8VWOoQYtGHHQi1p5KK/Q7V1ku55oxXBsj79Ny5FRMqiRJpVGad7bjQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -2828,8 +2998,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.10.0':
- resolution: {integrity: sha512-a2QpIZmTiT885u/mUInpeN2W9ClCnqrV2LnMqJR1/Fgx1Afw/hAtiDZPtQ0SqS8yDJ2VR5gfNZo3gpxWMrqdVA==}
+ '@swc/core-win32-ia32-msvc@1.10.1':
+ resolution: {integrity: sha512-WalYdFoU3454Og+sDKHM1MrjvxUGwA2oralknXkXL8S0I/8RkWZOB++p3pLaGbTvOO++T+6znFbQdR8KRaa7DA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -2840,8 +3010,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.10.0':
- resolution: {integrity: sha512-tZcCmMwf483nwsEBfUk5w9e046kMa1iSik4bP9Kwi2FGtOfHuDfIcwW4jek3hdcgF5SaBW1ktnK/lgQLDi5AtA==}
+ '@swc/core-win32-x64-msvc@1.10.1':
+ resolution: {integrity: sha512-JWobfQDbTnoqaIwPKQ3DVSywihVXlQMbDuwik/dDWlj33A8oEHcjPOGs4OqcA3RHv24i+lfCQpM3Mn4FAMfacA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -2852,8 +3022,8 @@ packages:
cpu: [x64]
os: [win32]
- '@swc/core@1.10.0':
- resolution: {integrity: sha512-+CuuTCmQFfzaNGg1JmcZvdUVITQXJk9sMnl1C2TiDLzOSVOJRwVD4dNo5dljX/qxpMAN+2BIYlwjlSkoGi6grg==}
+ '@swc/core@1.10.1':
+ resolution: {integrity: sha512-rQ4dS6GAdmtzKiCRt3LFVxl37FaY1cgL9kSUTnhQ2xc3fmHOd7jdJK/V4pSZMG1ruGTd0bsi34O2R0Olg9Zo/w==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '*'
@@ -2895,8 +3065,8 @@ packages:
'@sxzz/prettier-config@2.0.2':
resolution: {integrity: sha512-yBKxaIr6WqgHTaLgX0g6gxNuMllkwR1QGeXynfJGmyD+XrZqO96t9xT5Mfbr9H3+N56SXY9/yFvP/e8lcJI7KA==}
- '@sxzz/test-utils@0.3.8':
- resolution: {integrity: sha512-UcF5bskQjTFom+Nn9WzsWQsOkLmD+FO774YgMrhw/wMp2sTej/ot9owKAoYOTVV64HpH0qDKHUnrBvZ8pufXLg==}
+ '@sxzz/test-utils@0.3.11':
+ resolution: {integrity: sha512-nadGqNFtl1LbbnZaEATmSJiyCF+mO4djA5ZMgTA1qlU4fVAVsR537Q2zrQx/7VjarDtXya52Ipd+T1dgKvuFkg==}
engines: {node: '>=18.12.0'}
peerDependencies:
esbuild: '>=0.20.0'
@@ -2915,6 +3085,10 @@ packages:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
+ '@szmarczak/http-timer@5.0.1':
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
+
'@tarojs/api@4.0.8-beta.1':
resolution: {integrity: sha512-HrhD1GUhC81MrQBktKBPzHtwRsUvN1P8l7Fn2ukelA1gl9IlRwt52OW28gTEuh0OsoMMf0JTvUSCwCR8BGlD5g==}
engines: {node: '>= 18'}
@@ -3319,19 +3493,19 @@ packages:
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/jest-dom@6.6.3':
- resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==}
+ '@testing-library/jest-dom@6.5.0':
+ resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- '@testing-library/react@16.1.0':
- resolution: {integrity: sha512-Q2ToPvg0KsVL0ohND9A3zLJWcOXXcO8IDu3fj11KhNt0UlCWyFyvnCIBkd12tidB2lkiVRG8VFqdhcqhqnAQtg==}
+ '@testing-library/react@16.0.0':
+ resolution: {integrity: sha512-guuxUKRWQ+FgNX0h0NS0FIq3Q3uLtWVpBzcLOggmfMoUpgBnzBzvLLd4fbm6yS8ydJd94cIfY4yP9qUQjM2KwQ==}
engines: {node: '>=18'}
peerDependencies:
'@testing-library/dom': ^10.0.0
'@types/react': ^18.2.57
'@types/react-dom': ^18.2.19
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
+ react: ^18.0.0
+ react-dom: ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -3345,6 +3519,18 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
+ '@tsconfig/node10@1.0.11':
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -3381,8 +3567,8 @@ packages:
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/conventional-commits-parser@5.0.1':
- resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==}
+ '@types/conventional-commits-parser@5.0.0':
+ resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
@@ -3396,17 +3582,17 @@ packages:
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
+ '@types/estree@1.0.5':
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/expect@1.20.4':
resolution: {integrity: sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==}
- '@types/express-serve-static-core@4.19.6':
- resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
-
- '@types/express-serve-static-core@5.0.2':
- resolution: {integrity: sha512-vluaspfvWEtE4vcSDlKRNer52DvOGrB2xv6diXy6UKyKW0lqZiWHGNApSyxOv+8DE5Z27IzVvE7hNkxg7EXIcg==}
+ '@types/express-serve-static-core@4.19.5':
+ resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -3435,6 +3621,9 @@ packages:
'@types/html-minifier-terser@6.1.0':
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
+ '@types/http-cache-semantics@4.0.4':
+ resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
+
'@types/http-errors@2.0.4':
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
@@ -3474,8 +3663,8 @@ packages:
'@types/lodash.kebabcase@4.1.9':
resolution: {integrity: sha512-kPrrmcVOhSsjAVRovN0lRfrbuidfg0wYsrQa5IYuoQO1fpHHGSme66oyiYA/5eQPVl8Z95OA3HG0+d2SvYC85w==}
- '@types/lodash@4.17.13':
- resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
+ '@types/lodash@4.17.7':
+ resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==}
'@types/mdast@3.0.15':
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -3501,8 +3690,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.17.9':
- resolution: {integrity: sha512-0JOXkRyLanfGPE2QRCwgxhzlBAvaRdCNMcvbd7jFfpmD4eEXll7LRwy5ymJmyeZqk7Nh7eD2LeUyQ68BbndmXw==}
+ '@types/node@20.16.1':
+ resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==}
'@types/node@22.10.1':
resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==}
@@ -3516,17 +3705,17 @@ packages:
'@types/postcss-url@10.0.4':
resolution: {integrity: sha512-5QIO9NgbWmAkle65haRqkdgYPCOXheNsaFdbTJJQjT302yK3H49ql4t9a4y0NfpuPtU/UBo15VcV64WCSIMJKg==}
- '@types/prop-types@15.7.14':
- resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
+ '@types/prop-types@15.7.12':
+ resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- '@types/qs@6.9.17':
- resolution: {integrity: sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==}
+ '@types/qs@6.9.15':
+ resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.2':
- resolution: {integrity: sha512-Fqp+rcvem9wEnGr3RY8dYNvSQ8PoLqjZ9HLgaPUOjJJD120uDyOxOjc/39M4Kddp9JQCxpGQbnhVQF0C0ncYVg==}
+ '@types/react-dom@18.3.0':
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
'@types/react-router-dom@5.3.3':
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
@@ -3537,14 +3726,14 @@ packages:
'@types/react-syntax-highlighter@15.5.13':
resolution: {integrity: sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==}
- '@types/react-test-renderer@18.3.1':
- resolution: {integrity: sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA==}
+ '@types/react-test-renderer@18.3.0':
+ resolution: {integrity: sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw==}
'@types/react-transition-group@4.4.11':
resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
- '@types/react@18.3.14':
- resolution: {integrity: sha512-NzahNKvjNhVjuPBQ+2G7WlxstQ+47kXZNHlUvFakDViuIEfGY926GqhMueQFZ7woG+sPiQKlF36XfrIUVSUfFg==}
+ '@types/react@18.3.4':
+ resolution: {integrity: sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -3602,8 +3791,8 @@ packages:
'@types/wrap-ansi@3.0.0':
resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==}
- '@types/ws@8.5.13':
- resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
+ '@types/ws@8.5.12':
+ resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -3639,16 +3828,13 @@ packages:
typescript:
optional: true
- '@typescript-eslint/eslint-plugin@8.17.0':
- resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==}
+ '@typescript-eslint/eslint-plugin@8.18.0':
+ resolution: {integrity: sha512-NR2yS7qUqCL7AIxdJUQf2MKKNDVNaig/dEB0GBLU7D+ZdHgK1NoH/3wsgO3OnPVipn51tG3MAwaODEGil70WEw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/parser@6.21.0':
resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
@@ -3670,15 +3856,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.17.0':
- resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==}
+ '@typescript-eslint/parser@8.18.0':
+ resolution: {integrity: sha512-hgUZ3kTEpVzKaK3uNibExUYm6SKKOmTU2BOxBSvOYwtJEPdVQ70kZJpPjstlnhCHcuc2WGfSbpKlb/69ttyN5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/scope-manager@6.21.0':
resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
@@ -3688,8 +3871,8 @@ packages:
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/scope-manager@8.17.0':
- resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==}
+ '@typescript-eslint/scope-manager@8.18.0':
+ resolution: {integrity: sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/type-utils@6.21.0':
@@ -3712,15 +3895,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/type-utils@8.17.0':
- resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==}
+ '@typescript-eslint/type-utils@8.18.0':
+ resolution: {integrity: sha512-er224jRepVAVLnMF2Q7MZJCq5CsdH2oqjP4dT7K6ij09Kyd+R21r7UVJrF0buMVdZS5QRhDzpvzAxHxabQadow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/types@6.21.0':
resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
@@ -3730,8 +3910,8 @@ packages:
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/types@8.17.0':
- resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==}
+ '@typescript-eslint/types@8.18.0':
+ resolution: {integrity: sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@6.21.0':
@@ -3752,14 +3932,11 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.17.0':
- resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==}
+ '@typescript-eslint/typescript-estree@8.18.0':
+ resolution: {integrity: sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/utils@6.21.0':
resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
@@ -3773,15 +3950,12 @@ packages:
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/utils@8.17.0':
- resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==}
+ '@typescript-eslint/utils@8.18.0':
+ resolution: {integrity: sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/visitor-keys@6.21.0':
resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
@@ -3791,8 +3965,8 @@ packages:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/visitor-keys@8.17.0':
- resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==}
+ '@typescript-eslint/visitor-keys@8.18.0':
+ resolution: {integrity: sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
@@ -3824,29 +3998,28 @@ packages:
terser: ^5.4.0
vite: ^4.0.0
- '@vitejs/plugin-react@4.3.4':
- resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
+ '@vitejs/plugin-react@4.3.1':
+ resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ vite: ^4.2.0 || ^5.0.0
- '@vitest/coverage-v8@2.1.8':
- resolution: {integrity: sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==}
+ '@vitest/coverage-v8@2.0.5':
+ resolution: {integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==}
peerDependencies:
- '@vitest/browser': 2.1.8
- vitest: 2.1.8
- peerDependenciesMeta:
- '@vitest/browser':
- optional: true
+ vitest: 2.0.5
'@vitest/expect@1.6.0':
resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
- '@vitest/expect@2.1.8':
- resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==}
+ '@vitest/expect@2.0.5':
+ resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+
+ '@vitest/expect@2.1.7':
+ resolution: {integrity: sha512-folWk4qQDEedgUyvaZw94LIJuNLoDtY+rhKhhNy0csdwifn/pQz8EWVRnyrW3j0wMpy+xwJT8WiwiYxk+i+s7w==}
- '@vitest/mocker@2.1.8':
- resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==}
+ '@vitest/mocker@2.1.7':
+ resolution: {integrity: sha512-nKMTnuJrarFH+7llWxeLmYRldIwTY3OM1DzdytHj0f2+fah6Cyk4XbswhjOiTCnAvXsZAEoo1OaD6rneSSU+3Q==}
peerDependencies:
msw: ^2.4.9
vite: ^5.0.0
@@ -3856,52 +4029,67 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.8':
- resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==}
+ '@vitest/pretty-format@2.0.5':
+ resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
+
+ '@vitest/pretty-format@2.1.7':
+ resolution: {integrity: sha512-HoqRIyfQlXPrRDB43h0lC8eHPUDPwFweMaD6t+psOvwClCC+oZZim6wPMjuoMnRdiFxXqbybg/QbuewgTwK1vA==}
'@vitest/runner@1.6.0':
resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
- '@vitest/runner@2.1.8':
- resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==}
+ '@vitest/runner@2.0.5':
+ resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
+
+ '@vitest/runner@2.1.7':
+ resolution: {integrity: sha512-MrDNpXUIXksR57qipYh068SOX4N1hVw6oVILlTlfeTyA1rp0asuljyp15IZwKqhjpWLObFj+tiNrOM4R8UnSqg==}
'@vitest/snapshot@1.6.0':
resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
- '@vitest/snapshot@2.1.8':
- resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==}
+ '@vitest/snapshot@2.0.5':
+ resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
+
+ '@vitest/snapshot@2.1.7':
+ resolution: {integrity: sha512-OioIxV/xS393DKdlkRNhmtY0K37qVdCv8w1M2SlLTBSX+fNK6zgcd01VlT1nXdbKVDaB8Zb6BOfQYYoGeGTEGg==}
'@vitest/spy@1.6.0':
resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
- '@vitest/spy@2.1.8':
- resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==}
+ '@vitest/spy@2.0.5':
+ resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+
+ '@vitest/spy@2.1.7':
+ resolution: {integrity: sha512-e5pzIaIC0LBrb/j1FaF7HXlPJLGtltiAkwXTMqNEHALJc7USSLEwziJ+aIWTmjsWNg89zazg37h7oZITnublsQ==}
- '@vitest/ui@2.1.8':
- resolution: {integrity: sha512-5zPJ1fs0ixSVSs5+5V2XJjXLmNzjugHRyV11RqxYVR+oMcogZ9qTuSfKW+OcTV0JeFNznI83BNylzH6SSNJ1+w==}
+ '@vitest/ui@2.0.5':
+ resolution: {integrity: sha512-m+ZpVt/PVi/nbeRKEjdiYeoh0aOfI9zr3Ria9LO7V2PlMETtAXJS3uETEZkc8Be2oOl8mhd7Ew+5SRBXRYncNw==}
peerDependencies:
- vitest: 2.1.8
+ vitest: 2.0.5
'@vitest/utils@1.6.0':
resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
- '@vitest/utils@2.1.8':
- resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==}
+ '@vitest/utils@2.0.5':
+ resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
- '@volar/language-core@2.4.10':
- resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
+ '@vitest/utils@2.1.7':
+ resolution: {integrity: sha512-7gUdvIzCCuIrMZu0WHTvDJo8C1NsUtOqmwmcS3bRHUcfHemj29wmkzLVNuWQD7WHoBD/+I7WIgrnzt7kxR54ow==}
- '@volar/source-map@2.4.10':
- resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==}
+ '@volar/language-core@2.4.4':
+ resolution: {integrity: sha512-kO9k4kTLfxpg+6lq7/KAIv3m2d62IHuCL6GbVgYZTpfKvIGoAIlDxK7pFcB/eczN2+ydg/vnyaeZ6SGyZrJw2w==}
- '@volar/typescript@2.4.10':
- resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==}
+ '@volar/source-map@2.4.4':
+ resolution: {integrity: sha512-xG3PZqOP2haG8XG4Pg3PD1UGDAdqZg24Ru8c/qYjYAnmcj6GBR64mstx+bZux5QOyRaJK+/lNM/RnpvBD3489g==}
- '@vue/compiler-core@3.5.13':
- resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ '@volar/typescript@2.4.4':
+ resolution: {integrity: sha512-QQMQRVj0fVHJ3XdRKiS1LclhG0VBXdFYlyuHRQF/xLk2PuJuHNWP26MDZNvEVCvnyUQuUQhIAfylwY5TGPgc6w==}
- '@vue/compiler-dom@3.5.13':
- resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ '@vue/compiler-core@3.4.38':
+ resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==}
+
+ '@vue/compiler-dom@3.4.38':
+ resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -3914,53 +4102,53 @@ packages:
typescript:
optional: true
- '@vue/shared@3.5.13':
- resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+ '@vue/shared@3.4.38':
+ resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==}
- '@webassemblyjs/ast@1.14.1':
- resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
+ '@webassemblyjs/ast@1.12.1':
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
- '@webassemblyjs/floating-point-hex-parser@1.13.2':
- resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
+ '@webassemblyjs/floating-point-hex-parser@1.11.6':
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
- '@webassemblyjs/helper-api-error@1.13.2':
- resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
+ '@webassemblyjs/helper-api-error@1.11.6':
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
- '@webassemblyjs/helper-buffer@1.14.1':
- resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
+ '@webassemblyjs/helper-buffer@1.12.1':
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
- '@webassemblyjs/helper-numbers@1.13.2':
- resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
+ '@webassemblyjs/helper-numbers@1.11.6':
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
- '@webassemblyjs/helper-wasm-bytecode@1.13.2':
- resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
+ '@webassemblyjs/helper-wasm-bytecode@1.11.6':
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
- '@webassemblyjs/helper-wasm-section@1.14.1':
- resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
+ '@webassemblyjs/helper-wasm-section@1.12.1':
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
- '@webassemblyjs/ieee754@1.13.2':
- resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
+ '@webassemblyjs/ieee754@1.11.6':
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
- '@webassemblyjs/leb128@1.13.2':
- resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
+ '@webassemblyjs/leb128@1.11.6':
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
- '@webassemblyjs/utf8@1.13.2':
- resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
+ '@webassemblyjs/utf8@1.11.6':
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
- '@webassemblyjs/wasm-edit@1.14.1':
- resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
+ '@webassemblyjs/wasm-edit@1.12.1':
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
- '@webassemblyjs/wasm-gen@1.14.1':
- resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
+ '@webassemblyjs/wasm-gen@1.12.1':
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
- '@webassemblyjs/wasm-opt@1.14.1':
- resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
+ '@webassemblyjs/wasm-opt@1.12.1':
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
- '@webassemblyjs/wasm-parser@1.14.1':
- resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
+ '@webassemblyjs/wasm-parser@1.12.1':
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
- '@webassemblyjs/wast-printer@1.14.1':
- resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+ '@webassemblyjs/wast-printer@1.12.1':
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -3976,8 +4164,8 @@ packages:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
- abortcontroller-polyfill@1.7.6:
- resolution: {integrity: sha512-Zypm+LjYdWAzvuypZvDN0smUJrhOurcuBWhhMRBExqVLRvdjp3Z9mASxKyq19K+meZMshwjjy5S0lkm388zE4Q==}
+ abortcontroller-polyfill@1.7.8:
+ resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==}
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -3989,14 +4177,24 @@ packages:
peerDependencies:
acorn: ^8
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.3.4:
- resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ acorn-walk@8.3.3:
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ engines: {node: '>=0.4.0'}
+
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
+ hasBin: true
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
@@ -4106,10 +4304,14 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
- resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+ ansi-regex@6.0.1:
+ resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
+ ansi-styles@3.2.1:
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
+
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -4147,19 +4349,24 @@ packages:
resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==}
engines: {node: '>=14'}
+ arg@4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+
+ arg@5.0.2:
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
+
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ aria-query@5.1.3:
+ resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
- aria-query@5.3.2:
- resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
- engines: {node: '>= 0.4'}
-
arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
engines: {node: '>=0.10.0'}
@@ -4295,8 +4502,10 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- atomically@2.0.3:
- resolution: {integrity: sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==}
+ atob@2.1.2:
+ resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
+ engines: {node: '>= 4.5.0'}
+ hasBin: true
autoprefixer@10.4.20:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
@@ -4312,19 +4521,24 @@ packages:
aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- aws4@1.13.2:
- resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
+ aws4@1.13.1:
+ resolution: {integrity: sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==}
- axe-core@4.10.2:
- resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
+ axe-core@4.10.0:
+ resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
engines: {node: '>=4'}
+ axios@1.7.5:
+ resolution: {integrity: sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==}
+
axios@1.7.9:
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
- axobject-query@4.1.0:
- resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
- engines: {node: '>= 0.4'}
+ axobject-query@3.1.1:
+ resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
+
+ b4a@1.6.6:
+ resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
babel-jest@29.7.0:
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
@@ -4358,8 +4572,8 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- babel-plugin-polyfill-corejs2@0.4.12:
- resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
+ babel-plugin-polyfill-corejs2@0.4.11:
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -4368,8 +4582,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.3:
- resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
+ babel-plugin-polyfill-regenerator@0.6.2:
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -4434,8 +4648,8 @@ packages:
balanced-match@2.0.0:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
- bare-events@2.5.0:
- resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==}
+ bare-events@2.4.2:
+ resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -4479,19 +4693,19 @@ packages:
bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- body-parser@1.20.3:
- resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+ body-parser@1.20.2:
+ resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- bonjour-service@1.3.0:
- resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
+ bonjour-service@1.2.1:
+ resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- boxen@8.0.1:
- resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==}
- engines: {node: '>=18'}
+ boxen@7.1.1:
+ resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==}
+ engines: {node: '>=14.16'}
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -4503,6 +4717,11 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
+ browserslist@4.23.3:
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
browserslist@4.24.2:
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -4540,8 +4759,8 @@ packages:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
- bumpp@9.8.1:
- resolution: {integrity: sha512-25W55DZI/rq6FboM0Q5y8eHbUk9eNn9oZ4bg/I5kiWn8/rdZCw6iqML076akQiUOQGhrm6QDvSSn4PgQ48bS4A==}
+ bumpp@9.9.0:
+ resolution: {integrity: sha512-d6Bv4O26po6gOrrjqDQte4+LxedxW885ZW7gJcNFUwkn9XH+8tKIB80za69SRluWkAgWPmSt7288pkMpzY1lnw==}
engines: {node: '>=10'}
hasBin: true
@@ -4555,14 +4774,18 @@ packages:
peerDependencies:
esbuild: '>=0.18'
+ bytes@3.0.0:
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
+ engines: {node: '>= 0.8'}
+
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@1.11.2:
- resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
+ c12@2.0.1:
+ resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
peerDependencies:
- magicast: ^0.3.4
+ magicast: ^0.3.5
peerDependenciesMeta:
magicast:
optional: true
@@ -4571,6 +4794,14 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
+ cacheable-lookup@7.0.0:
+ resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
+ engines: {node: '>=14.16'}
+
+ cacheable-request@10.2.14:
+ resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
+ engines: {node: '>=14.16'}
+
cacheable-request@2.1.4:
resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==}
@@ -4582,17 +4813,10 @@ packages:
resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
engines: {node: '>=6'}
- call-bind-apply-helpers@1.0.0:
- resolution: {integrity: sha512-CCKAP2tkPau7D3GE8+V8R6sQubA9R5foIzGp+85EXCVSCivuxBNAWqcpn72PKYiIcqoViv/kcUDpaEIMBVi1lQ==}
- engines: {node: '>= 0.4'}
-
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
- call-me-maybe@1.0.2:
- resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
-
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -4611,15 +4835,18 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- camelcase@8.0.0:
- resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
- engines: {node: '>=16'}
+ camelcase@7.0.1:
+ resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
+ engines: {node: '>=14.16'}
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001687:
- resolution: {integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==}
+ caniuse-lite@1.0.30001653:
+ resolution: {integrity: sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==}
+
+ caniuse-lite@1.0.30001673:
+ resolution: {integrity: sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -4638,10 +4865,18 @@ packages:
resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==}
engines: {node: '>=4'}
+ chai@5.1.1:
+ resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ engines: {node: '>=12'}
+
chai@5.1.2:
resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
engines: {node: '>=12'}
+ chalk@2.4.2:
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
+
chalk@3.0.0:
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
engines: {node: '>=8'}
@@ -4726,8 +4961,8 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cjs-module-lexer@1.4.1:
- resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
+ cjs-module-lexer@1.4.0:
+ resolution: {integrity: sha512-N1NGmowPlGBLsOZLPvm48StN04V4YvQRL0i6b7ctrVY3epjP/ct7hFLOItz6pDIvRjwpfPxi52a2UWV2ziir8g==}
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
@@ -4760,6 +4995,10 @@ packages:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
+ cli-cursor@4.0.0:
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
cli-cursor@5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
@@ -4831,10 +5070,16 @@ packages:
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
+ color-convert@1.9.3:
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
+ color-name@1.1.3:
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -4905,8 +5150,8 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.5:
- resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
+ compression@1.7.4:
+ resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
computeds@0.0.1:
@@ -4915,15 +5160,18 @@ packages:
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+ confbox@0.1.7:
+ resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- configstore@7.0.0:
- resolution: {integrity: sha512-yk7/5PN5im4qwz0WFZW3PXnzHgPu9mX29Y8uZ3aefe2lBPC1FYttWZRcaW9fKkT0pBCJyuQ2HfbmPVaODi9jcQ==}
- engines: {node: '>=18'}
+ configstore@6.0.0:
+ resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==}
+ engines: {node: '>=12'}
confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
@@ -4972,8 +5220,8 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.7.1:
- resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
+ cookie@0.6.0:
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
copy-anything@2.0.6:
@@ -4989,11 +5237,11 @@ packages:
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.39.0:
- resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
- core-js-pure@3.39.0:
- resolution: {integrity: sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==}
+ core-js-pure@3.38.1:
+ resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
core-js@3.39.0:
resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
@@ -5004,8 +5252,8 @@ packages:
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- cosmiconfig-typescript-loader@5.1.0:
- resolution: {integrity: sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==}
+ cosmiconfig-typescript-loader@5.0.0:
+ resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
engines: {node: '>=v16'}
peerDependencies:
'@types/node': '*'
@@ -5026,10 +5274,17 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
+ create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
cross-spawn-async@2.2.5:
resolution: {integrity: sha512-snteb3aVrxYYOX9e8BabYFK9WhCDhTlw1YQktfTthBogxri4/2r9U2nQc0ffY73ZAxezDc+U8gvHAeU1wy1ubQ==}
deprecated: cross-spawn no longer requires a build toolchain, use it instead
+ cross-spawn@7.0.3:
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -5037,6 +5292,10 @@ packages:
crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
+ crypto-random-string@4.0.0:
+ resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
+ engines: {node: '>=12'}
+
css-declaration-sorter@7.2.0:
resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
@@ -5113,6 +5372,9 @@ packages:
css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
+ css@3.0.0:
+ resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
+
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
@@ -5173,6 +5435,10 @@ packages:
resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
engines: {node: '>=0.10'}
+ data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+
data-uri-to-buffer@6.0.2:
resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
engines: {node: '>= 14'}
@@ -5207,6 +5473,14 @@ packages:
supports-color:
optional: true
+ debug@3.1.0:
+ resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
@@ -5215,6 +5489,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.6:
+ resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
@@ -5242,6 +5525,10 @@ packages:
resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
+ decompress-response@6.0.0:
+ resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
+ engines: {node: '>=10'}
+
decompress-tar@4.1.1:
resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==}
engines: {node: '>=4'}
@@ -5278,6 +5565,10 @@ packages:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
+ deep-equal@2.2.3:
+ resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
+ engines: {node: '>= 0.4'}
+
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -5311,6 +5602,10 @@ packages:
defer-to-connect@1.1.3:
resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
+ defer-to-connect@2.0.1:
+ resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
+ engines: {node: '>=10'}
+
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -5392,6 +5687,10 @@ packages:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ diff@4.0.2:
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
+
dingtalk-jsapi@2.15.4:
resolution: {integrity: sha512-pPETqUhLJYKNZIewnS9hU1/QqcdRbP2Q9sHySimko0C2nm/n9NoakVLtcKwdqgORq1dkPIP/jqv7RnESxhA2bA==}
@@ -5453,16 +5752,16 @@ packages:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
- dot-prop@9.0.0:
- resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
- engines: {node: '>=18'}
+ dot-prop@6.0.1:
+ resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
+ engines: {node: '>=10'}
dotenv-expand@11.0.7:
resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
engines: {node: '>=12'}
- dotenv@16.4.7:
- resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
+ dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
download-git-repo@3.0.2:
@@ -5475,6 +5774,9 @@ packages:
duplexer3@0.1.5:
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
+ duplexer@0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+
each-props@3.0.0:
resolution: {integrity: sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==}
engines: {node: '>= 10.13.0'}
@@ -5493,8 +5795,11 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.71:
- resolution: {integrity: sha512-dB68l59BI75W1BUGVTAEJy45CEVuEGy9qPVVQ8pnHyHMn36PLPPoE1mjLH+lo9rKulO3HC2OhbACI/8tCqJBcA==}
+ electron-to-chromium@1.5.13:
+ resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==}
+
+ electron-to-chromium@1.5.49:
+ resolution: {integrity: sha512-ZXfs1Of8fDb6z7WEYZjXpgIRF6MEu8JdeGA0A40aZq6OQbS+eJpnnV49epZRna2DU/YsEjSQuGtQPPtvt6J65A==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -5517,10 +5822,6 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- encodeurl@2.0.0:
- resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
- engines: {node: '>= 0.8'}
-
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
@@ -5562,8 +5863,8 @@ packages:
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- es-abstract@1.23.5:
- resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
+ es-abstract@1.23.3:
+ resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
es-define-property@1.0.0:
@@ -5574,8 +5875,11 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.2.0:
- resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
+ es-get-iterator@1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+
+ es-iterator-helpers@1.0.19:
+ resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
es-module-lexer@0.10.5:
@@ -5595,16 +5899,10 @@ packages:
es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
- es-to-primitive@1.3.0:
- resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
+ es-to-primitive@1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- esast-util-from-estree@2.0.0:
- resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
-
- esast-util-from-js@2.0.1:
- resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
-
esbuild-loader@4.2.2:
resolution: {integrity: sha512-Mdq/A1L8p37hkibp8jGFwuQTDSWhDmlueAefsrCPRwNWThEOlQmIglV7Gd6GE2mO5bt7ksfxKOMwkuY7jjVTXg==}
peerDependencies:
@@ -5625,6 +5923,10 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ escalade@3.1.2:
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -5727,8 +6029,8 @@ packages:
'@eslint/json':
optional: true
- eslint-module-utils@2.12.0:
- resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
+ eslint-module-utils@2.8.2:
+ resolution: {integrity: sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -5770,18 +6072,18 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-import@2.31.0:
- resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
+ eslint-plugin-import@2.29.1:
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-jsdoc@50.6.0:
- resolution: {integrity: sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==}
+ eslint-plugin-jsdoc@50.6.1:
+ resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -5792,11 +6094,11 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-jsx-a11y@6.10.2:
- resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
+ eslint-plugin-jsx-a11y@6.9.0:
+ resolution: {integrity: sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==}
engines: {node: '>=4.0'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
eslint-plugin-markdown@5.1.0:
resolution: {integrity: sha512-SJeyKko1K6GwI0AN6xeCDToXDkfKZfXcexA6B+O2Wr2btUS9GrC+YgwSyVli5DJnctUHjFXcQ2cqTaAmVoLi2A==}
@@ -5804,8 +6106,8 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-n@17.14.0:
- resolution: {integrity: sha512-maxPLMEA0rPmRpoOlxEclKng4UpDe+N5BJS4t24I3UKnN109Qcivnfs37KMy84G0af3bxjog5lKctP5ObsvcTA==}
+ eslint-plugin-n@17.15.0:
+ resolution: {integrity: sha512-xF3zJkOfLlFOm5TvmqmsnA9/fO+/z2pYs0dkuKXKN/ymS6UB1yEcaoIkqxLKQ9Dw/WmLX/Tdh6/5ZS5azVixFQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -5836,8 +6138,8 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.37.2:
- resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
+ eslint-plugin-react@7.35.0:
+ resolution: {integrity: sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -5860,6 +6162,15 @@ packages:
peerDependencies:
eslint: '>=8.56.0'
+ eslint-plugin-unused-imports@4.1.3:
+ resolution: {integrity: sha512-lqrNZIZjFMUr7P06eoKtQLwyVRibvG7N+LtfKtObYGizAAGrcqLkc3tDx+iAik2z7q0j/XI3ihjupIqxhFabFA==}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0
+ eslint: ^9.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+
eslint-plugin-unused-imports@4.1.4:
resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
peerDependencies:
@@ -5911,8 +6222,8 @@ packages:
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- eslint@8.57.1:
- resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
+ eslint@8.57.0:
+ resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
@@ -5965,9 +6276,6 @@ packages:
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
- estree-util-scope@1.0.0:
- resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
-
estree-util-to-js@2.0.0:
resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
@@ -5988,6 +6296,9 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
+ event-stream@3.3.4:
+ resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
+
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -6017,10 +6328,6 @@ packages:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
- execa@8.0.0:
- resolution: {integrity: sha512-CTNS0BcKBcoOsawKBlpcKNmK4Kjuyz5jVLhf+PUsHGMqiKMVTa4cN3U7r7bRY8KTpfOGpXMo27fdy0dYVg2pqA==}
- engines: {node: '>=16.17'}
-
execa@8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
@@ -6048,8 +6355,8 @@ packages:
expr-parser@1.0.0:
resolution: {integrity: sha512-ncuWTCWH0M5KbaYikXxZ3FG3Q+FTYIEXeXAbxYscdZLFNnR5Le5gRU2r/a/JUZHnxwBDZcxWEWzCoPQlW9Engg==}
- express@4.21.2:
- resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ express@4.19.2:
+ resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
ext-list@2.2.2:
@@ -6106,8 +6413,8 @@ packages:
fast-levenshtein@3.0.0:
resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==}
- fast-uri@3.0.3:
- resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
+ fast-uri@3.0.1:
+ resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
@@ -6137,6 +6444,10 @@ packages:
picomatch:
optional: true
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -6195,8 +6506,8 @@ packages:
resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==}
engines: {node: '>=14.16'}
- finalhandler@1.3.1:
- resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
+ finalhandler@1.2.0:
+ resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
find-cache-dir@2.1.0:
@@ -6254,15 +6565,15 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flow-parser@0.256.0:
- resolution: {integrity: sha512-HFb/GgB7hq+TYosLJuMLdLp8aGlyAVfrJaTvcM0w2rz2T33PjkVbRU419ncK/69cjowUksewuspkBheq9ZX9Hw==}
+ flow-parser@0.244.0:
+ resolution: {integrity: sha512-Dkc88m5k8bx1VvHTO9HEJ7tvMcSb3Zvcv1PY4OHK7pHdtdY2aUjhmPy6vpjVJ2uUUOIybRlb91sXE8g4doChtA==}
engines: {node: '>=0.4.0'}
- follow-redirects@1.15.9:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
+ follow-redirects@1.15.6:
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -6288,14 +6599,22 @@ packages:
forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- form-data@4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ form-data-encoder@2.1.4:
+ resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
+ engines: {node: '>= 14.17'}
+
+ form-data@4.0.0:
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
format@0.2.2:
resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
+
forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
@@ -6310,6 +6629,9 @@ packages:
from2@2.3.0:
resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
+ from@0.1.7:
+ resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
+
fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
@@ -6372,8 +6694,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
- resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
+ get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
engines: {node: '>=18'}
get-func-name@2.0.2:
@@ -6422,8 +6744,8 @@ packages:
get-tsconfig@4.8.1:
resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
- get-uri@6.0.4:
- resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==}
+ get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
engines: {node: '>= 14'}
getos@3.2.1:
@@ -6553,9 +6875,12 @@ packages:
resolution: {integrity: sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A==}
engines: {node: '>= 10.13.0'}
- gopd@1.2.0:
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
- engines: {node: '>= 0.4'}
+ gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+
+ got@13.0.0:
+ resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==}
+ engines: {node: '>=16'}
got@8.3.2:
resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==}
@@ -6623,6 +6948,10 @@ packages:
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-flag@3.0.0:
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
+
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -6630,15 +6959,15 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.1.0:
- resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==}
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
has-symbol-support-x@1.4.2:
resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==}
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
has-to-string-tag-x@1.4.1:
@@ -6658,8 +6987,8 @@ packages:
hast-util-to-estree@3.1.0:
resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==}
- hast-util-to-jsx-runtime@2.3.2:
- resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
+ hast-util-to-jsx-runtime@2.3.0:
+ resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
@@ -6681,14 +7010,11 @@ packages:
resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==}
engines: {node: '>=12.0.0'}
- highlightjs-vue@1.0.0:
- resolution: {integrity: sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==}
-
history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
- hls.js@1.5.17:
- resolution: {integrity: sha512-wA66nnYFvQa1o4DO/BFgLNRKnBTVXpNeldGRBJ2Y0SvFtdwvFKCbqa9zhHoZLoxHhZ+jYsj3aIBkWQQCPNOhMw==}
+ hls.js@1.5.15:
+ resolution: {integrity: sha512-6cD7xN6bycBHaXz2WyPIaHn/iXFizE5au2yvY5q9aC4wfihxAr16C9fUy4nxh2a3wOw0fEgLRa9dN6wsYjlpNg==}
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -6730,8 +7056,8 @@ packages:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
engines: {node: '>=8'}
- html-url-attributes@3.0.1:
- resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
+ html-url-attributes@3.0.0:
+ resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==}
html-webpack-plugin@5.6.3:
resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==}
@@ -6772,8 +7098,8 @@ packages:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- http-proxy-middleware@2.0.7:
- resolution: {integrity: sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==}
+ http-proxy-middleware@2.0.6:
+ resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/express': ^4.17.13
@@ -6789,6 +7115,10 @@ packages:
resolution: {integrity: sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==}
engines: {node: '>=0.10'}
+ http2-wrapper@2.2.1:
+ resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
+ engines: {node: '>=10.19.0'}
+
https-proxy-agent@7.0.5:
resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
@@ -6805,8 +7135,8 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- husky@9.1.7:
- resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
+ husky@9.1.5:
+ resolution: {integrity: sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==}
engines: {node: '>=18'}
hasBin: true
@@ -6843,8 +7173,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- immutable@5.0.3:
- resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
+ immutable@4.3.7:
+ resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
@@ -6901,11 +7231,11 @@ packages:
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- inline-style-parser@0.2.4:
- resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
+ inline-style-parser@0.2.3:
+ resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==}
- inquirer@10.2.2:
- resolution: {integrity: sha512-tyao/4Vo36XnUItZ7DnUXX4f1jVao2mSrleV/5IPtW/XAEA26hRVsbc68nuTEKWcr5vMP/1mVoT2O7u8H4v1Vg==}
+ inquirer@10.1.8:
+ resolution: {integrity: sha512-syxGpOzLyqVeZi1KDBjRTnCn5PiGWySGHP0BbqXbqsEK0ckkZk3egAepEWslUjZXj0rhkUapVXM/IpADWe4D6w==}
engines: {node: '>=18'}
inquirer@8.2.6:
@@ -6960,6 +7290,10 @@ packages:
is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
+ is-arguments@1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+
is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
@@ -6971,16 +7305,15 @@ packages:
resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
- is-bigint@1.1.0:
- resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
- engines: {node: '>= 0.4'}
+ is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.2.0:
- resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==}
+ is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
is-buffer@1.1.6:
@@ -6994,6 +7327,10 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ is-ci@3.0.1:
+ resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
+ hasBin: true
+
is-core-module@2.15.1:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
@@ -7030,9 +7367,8 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.1.0:
- resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==}
- engines: {node: '>= 0.4'}
+ is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
@@ -7068,8 +7404,8 @@ packages:
is-hexadecimal@2.0.1:
resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
- is-in-ci@1.0.0:
- resolution: {integrity: sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==}
+ is-in-ci@0.1.0:
+ resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==}
engines: {node: '>=18'}
hasBin: true
@@ -7123,8 +7459,8 @@ packages:
resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-number-object@1.1.0:
- resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==}
+ is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -7180,8 +7516,11 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- is-regex@1.2.0:
- resolution: {integrity: sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA==}
+ is-reference@3.0.2:
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
+
+ is-regex@1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
is-relative@1.0.0:
@@ -7215,12 +7554,12 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-string@1.1.0:
- resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==}
+ is-string@1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
- is-symbol@1.1.0:
- resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==}
+ is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
is-text-path@2.0.0:
@@ -7246,8 +7585,8 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
- is-unicode-supported@2.1.0:
- resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ is-unicode-supported@2.0.0:
+ resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
engines: {node: '>=18'}
is-valid-glob@1.0.0:
@@ -7339,9 +7678,8 @@ packages:
resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==}
engines: {node: '>= 4'}
- iterator.prototype@1.1.3:
- resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
- engines: {node: '>= 0.4'}
+ iterator.prototype@1.1.2:
+ resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
j-component@1.4.9:
resolution: {integrity: sha512-7TaTylECTW4sRaDLaj463sTj9BK6/3rSD67um47ypLPwtZW3wPwynCQ9sdnEJmTIw9Jfy2ZLKWiSDRdaINv50w==}
@@ -7353,8 +7691,8 @@ packages:
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
- jackspeak@4.0.2:
- resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==}
+ jackspeak@4.0.1:
+ resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==}
engines: {node: 20 || >=22}
jake@10.9.2:
@@ -7509,6 +7847,10 @@ packages:
resolution: {integrity: sha512-pmfRbVRs/7khFrSAYnSiJ8C0D5GvzkE4Ey2pAvUcJsw1ly/p+7ut27jbJrjY79BpAJQJ4gXYFtK6d1Aub+9baQ==}
hasBin: true
+ jiti@2.3.3:
+ resolution: {integrity: sha512-EX4oNDwcXSivPrw2qKH2LB5PoFxEvgtv2JgwW0bU858HoLQ+kutSvjLMUqBd0PeJYEinLWhoI9Ol0eYMqj/wNQ==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
@@ -7539,8 +7881,8 @@ packages:
jsbn@1.1.0:
resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
- jscodeshift@17.1.1:
- resolution: {integrity: sha512-4vq5B1sD37aa9qed3zWq2XQPun5XjxebIv+Folr57lt8B4HLGDHEz1UG7pfcxzSaelzPbcY7yZSs033/S0i6wQ==}
+ jscodeshift@17.0.0:
+ resolution: {integrity: sha512-Af+MFsNwLSVO+t4kKjJdJKh6iNbNHfDfFGdyltJ2wUFN3furgbvHguJmB85iou+fY7wbHgI8eiEKpp6doGgtKg==}
engines: {node: '>=16'}
hasBin: true
peerDependencies:
@@ -7566,6 +7908,11 @@ packages:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
+ jsesc@2.5.2:
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
+ hasBin: true
+
jsesc@3.0.2:
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
@@ -7659,8 +8006,8 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- ky@1.7.2:
- resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==}
+ ky@1.7.1:
+ resolution: {integrity: sha512-KJ/IXXkFhTDqxcN8wKqMXk1/UoOpc0UnOB6H7QcqlPInh/M2B5Mlj+i9exez1w4RSwJhNFmHiUDPriAYFwb5VA==}
engines: {node: '>=18'}
language-subtag-registry@0.3.23:
@@ -7711,6 +8058,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ less@4.2.0:
+ resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -7723,72 +8075,72 @@ packages:
resolution: {integrity: sha512-a5BQjbCHnB+cy+gsro8lXJ4kZluzOijzJ1UVVfyJYZC+IP2pLv1h4+aysQeKuTmyO8NAqfyQAk4HWaP/HjcKTg==}
engines: {node: '>=10.13.0'}
- lightningcss-darwin-arm64@1.28.2:
- resolution: {integrity: sha512-/8cPSqZiusHSS+WQz0W4NuaqFjquys1x+NsdN/XOHb+idGHJSoJ7SoQTVl3DZuAgtPZwFZgRfb/vd1oi8uX6+g==}
+ lightningcss-darwin-arm64@1.26.0:
+ resolution: {integrity: sha512-n4TIvHO1NY1ondKFYpL2ZX0bcC2y6yjXMD6JfyizgR8BCFNEeArINDzEaeqlfX9bXz73Bpz/Ow0nu+1qiDrBKg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.28.2:
- resolution: {integrity: sha512-R7sFrXlgKjvoEG8umpVt/yutjxOL0z8KWf0bfPT3cYMOW4470xu5qSHpFdIOpRWwl3FKNMUdbKtMUjYt0h2j4g==}
+ lightningcss-darwin-x64@1.26.0:
+ resolution: {integrity: sha512-Rf9HuHIDi1R6/zgBkJh25SiJHF+dm9axUZW/0UoYCW1/8HV0gMI0blARhH4z+REmWiU1yYT/KyNF3h7tHyRXUg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.28.2:
- resolution: {integrity: sha512-l2qrCT+x7crAY+lMIxtgvV10R8VurzHAoUZJaVFSlHrN8kRLTvEg9ObojIDIexqWJQvJcVVV3vfzsEynpiuvgA==}
+ lightningcss-freebsd-x64@1.26.0:
+ resolution: {integrity: sha512-C/io7POAxp6sZxFSVGezjajMlCKQ8KSwISLLGRq8xLQpQMokYrUoqYEwmIX8mLmF6C/CZPk0gFmRSzd8biWM0g==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.28.2:
- resolution: {integrity: sha512-DKMzpICBEKnL53X14rF7hFDu8KKALUJtcKdFUCW5YOlGSiwRSgVoRjM97wUm/E0NMPkzrTi/rxfvt7ruNK8meg==}
+ lightningcss-linux-arm-gnueabihf@1.26.0:
+ resolution: {integrity: sha512-Aag9kqXqkyPSW+dXMgyWk66C984Nay2pY8Nws+67gHlDzV3cWh7TvFlzuaTaVFMVqdDTzN484LSK3u39zFBnzg==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.28.2:
- resolution: {integrity: sha512-nhfjYkfymWZSxdtTNMWyhFk2ImUm0X7NAgJWFwnsYPOfmtWQEapzG/DXZTfEfMjSzERNUNJoQjPAbdqgB+sjiw==}
+ lightningcss-linux-arm64-gnu@1.26.0:
+ resolution: {integrity: sha512-iJmZM7fUyVjH+POtdiCtExG+67TtPUTer7K/5A8DIfmPfrmeGvzfRyBltGhQz13Wi15K1lf2cPYoRaRh6vcwNA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.28.2:
- resolution: {integrity: sha512-1SPG1ZTNnphWvAv8RVOymlZ8BDtAg69Hbo7n4QxARvkFVCJAt0cgjAw1Fox0WEhf4PwnyoOBaVH0Z5YNgzt4dA==}
+ lightningcss-linux-arm64-musl@1.26.0:
+ resolution: {integrity: sha512-XxoEL++tTkyuvu+wq/QS8bwyTXZv2y5XYCMcWL45b8XwkiS8eEEEej9BkMGSRwxa5J4K+LDeIhLrS23CpQyfig==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.28.2:
- resolution: {integrity: sha512-ZhQy0FcO//INWUdo/iEdbefntTdpPVQ0XJwwtdbBuMQe+uxqZoytm9M+iqR9O5noWFaxK+nbS2iR/I80Q2Ofpg==}
+ lightningcss-linux-x64-gnu@1.26.0:
+ resolution: {integrity: sha512-1dkTfZQAYLj8MUSkd6L/+TWTG8V6Kfrzfa0T1fSlXCXQHrt1HC1/UepXHtKHDt/9yFwyoeayivxXAsApVxn6zA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.28.2:
- resolution: {integrity: sha512-alb/j1NMrgQmSFyzTbN1/pvMPM+gdDw7YBuQ5VSgcFDypN3Ah0BzC2dTZbzwzaMdUVDszX6zH5MzjfVN1oGuww==}
+ lightningcss-linux-x64-musl@1.26.0:
+ resolution: {integrity: sha512-yX3Rk9m00JGCUzuUhFEojY+jf/6zHs3XU8S8Vk+FRbnr4St7cjyMXdNjuA2LjiT8e7j8xHRCH8hyZ4H/btRE4A==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-win32-arm64-msvc@1.28.2:
- resolution: {integrity: sha512-WnwcjcBeAt0jGdjlgbT9ANf30pF0C/QMb1XnLnH272DQU8QXh+kmpi24R55wmWBwaTtNAETZ+m35ohyeMiNt+g==}
+ lightningcss-win32-arm64-msvc@1.26.0:
+ resolution: {integrity: sha512-X/597/cFnCogy9VItj/+7Tgu5VLbAtDF7KZDPdSw0MaL6FL940th1y3HiOzFIlziVvAtbo0RB3NAae1Oofr+Tw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.28.2:
- resolution: {integrity: sha512-3piBifyT3avz22o6mDKywQC/OisH2yDK+caHWkiMsF82i3m5wDBadyCjlCQ5VNgzYkxrWZgiaxHDdd5uxsi0/A==}
+ lightningcss-win32-x64-msvc@1.26.0:
+ resolution: {integrity: sha512-pYS3EyGP3JRhfqEFYmfFDiZ9/pVNfy8jVIYtrx9TVNusVyDK3gpW1w/rbvroQ4bDJi7grdUtyrYU6V2xkY/bBw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.28.2:
- resolution: {integrity: sha512-ePLRrbt3fgjXI5VFZOLbvkLD5ZRuxGKm+wJ3ujCqBtL3NanDHPo/5zicR5uEKAPiIjBYF99BM4K4okvMznjkVA==}
+ lightningcss@1.26.0:
+ resolution: {integrity: sha512-a/XZ5hdgifrofQJUArr5AiJjx26SwMam3SJUSMjgebZbESZ96i+6Qsl8tLi0kaUsdMzBWXh9sN1Oe6hp2/dkQw==}
engines: {node: '>= 12.0.0'}
- lilconfig@3.1.3:
- resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
+ lilconfig@3.1.2:
+ resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -7800,8 +8152,8 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- lint-staged@15.2.10:
- resolution: {integrity: sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==}
+ lint-staged@15.2.9:
+ resolution: {integrity: sha512-BZAt8Lk3sEnxw7tfxM7jeZlPRuT4M68O0/CwZhhaw6eeWu0Lz5eERE3m386InivXB64fp/mDID452h48tvKlRQ==}
engines: {node: '>=18.12.0'}
hasBin: true
@@ -7814,8 +8166,8 @@ packages:
enquirer:
optional: true
- listr2@8.2.5:
- resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
+ listr2@8.2.4:
+ resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==}
engines: {node: '>=18.0.0'}
load-tsconfig@0.2.5:
@@ -7838,6 +8190,10 @@ packages:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
engines: {node: '>= 12.13.0'}
+ local-pkg@0.5.0:
+ resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
+ engines: {node: '>=14'}
+
local-pkg@0.5.1:
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
engines: {node: '>=14'}
@@ -7957,6 +8313,9 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@3.1.1:
+ resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
+
loupe@3.1.2:
resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
@@ -7978,14 +8337,18 @@ packages:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
+ lowercase-keys@3.0.0:
+ resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
lowlight@1.20.0:
resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.0.2:
- resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==}
+ lru-cache@11.0.0:
+ resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==}
engines: {node: 20 || >=22}
lru-cache@4.1.5:
@@ -8013,11 +8376,14 @@ packages:
resolution: {integrity: sha512-tPJQ1HeyiU2vRruNGhZ+VleWuMQRro8iFtJxYgnS4NQe+EukKF6aGiIT+7flZhISAt2iaXBCfFGvAyif7/f8nQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+
magic-string@0.30.14:
resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
- magicast@0.3.5:
- resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
+ magicast@0.3.4:
+ resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
make-dir@1.3.0:
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
@@ -8048,6 +8414,9 @@ packages:
map-stream@0.0.7:
resolution: {integrity: sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==}
+ map-stream@0.1.0:
+ resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
+
markdown-extensions@2.0.0:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
@@ -8056,11 +8425,11 @@ packages:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
- markdown-table@3.0.4:
- resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
+ markdown-table@3.0.3:
+ resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
- marked@14.1.4:
- resolution: {integrity: sha512-vkVZ8ONmUdPnjCKc5uTRvmkRbx4EAi2OkTOXmfTDhZz3OFqMNBM1oTTWwTr4HY4uAEojhzPf+Fy8F1DWa3Sndg==}
+ marked@14.1.1:
+ resolution: {integrity: sha512-eS59oxof5eBVDCKTs+mJbvB/6Vq137GbimF9wkTIlto2/B2ppY5nigUUQgKVmA3bI2mPTIshUyDj5j612ZxlQQ==}
engines: {node: '>= 18'}
hasBin: true
@@ -8082,8 +8451,8 @@ packages:
mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
- mdast-util-from-markdown@2.0.2:
- resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+ mdast-util-from-markdown@2.0.1:
+ resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
mdast-util-gfm-autolink-literal@2.0.1:
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
@@ -8103,11 +8472,11 @@ packages:
mdast-util-gfm@3.0.0:
resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
- mdast-util-mdx-expression@2.0.1:
- resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
+ mdast-util-mdx-expression@2.0.0:
+ resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==}
- mdast-util-mdx-jsx@3.1.3:
- resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
+ mdast-util-mdx-jsx@3.1.2:
+ resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
mdast-util-mdx@3.0.0:
resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
@@ -8121,8 +8490,8 @@ packages:
mdast-util-to-hast@13.2.0:
resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
- mdast-util-to-markdown@2.1.2:
- resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
+ mdast-util-to-markdown@2.1.0:
+ resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
@@ -8164,8 +8533,8 @@ packages:
resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
engines: {node: '>=18'}
- merge-descriptors@1.0.3:
- resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+ merge-descriptors@1.0.1:
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -8178,11 +8547,11 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- micromark-core-commonmark@2.0.2:
- resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
+ micromark-core-commonmark@2.0.1:
+ resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
- micromark-extension-directive@3.0.2:
- resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==}
+ micromark-extension-directive@3.0.1:
+ resolution: {integrity: sha512-VGV2uxUzhEZmaP7NSFo2vtq7M2nUD+WfmYQD+d8i/1nHbzE+rMy9uzTvUybBbNiVbrhOZibg3gbyoARGqgDWyg==}
micromark-extension-gfm-autolink-literal@2.1.0:
resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
@@ -8208,8 +8577,8 @@ packages:
micromark-extension-mdx-expression@3.0.0:
resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==}
- micromark-extension-mdx-jsx@3.0.1:
- resolution: {integrity: sha512-vNuFb9czP8QCtAQcEJn0UJQJZA8Dk6DXKBqx+bg/w0WGuSxDxNr7hErW89tHUY31dUW4NqEOWwmEUNhjTFmHkg==}
+ micromark-extension-mdx-jsx@3.0.0:
+ resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==}
micromark-extension-mdx-md@2.0.0:
resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
@@ -8220,74 +8589,74 @@ packages:
micromark-extension-mdxjs@3.0.0:
resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
- micromark-factory-destination@2.0.1:
- resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
+ micromark-factory-destination@2.0.0:
+ resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
- micromark-factory-label@2.0.1:
- resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
+ micromark-factory-label@2.0.0:
+ resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
- micromark-factory-mdx-expression@2.0.2:
- resolution: {integrity: sha512-5E5I2pFzJyg2CtemqAbcyCktpHXuJbABnsb32wX2U8IQKhhVFBqkcZR5LRm1WVoFqa4kTueZK4abep7wdo9nrw==}
+ micromark-factory-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==}
- micromark-factory-space@2.0.1:
- resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
+ micromark-factory-space@2.0.0:
+ resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
- micromark-factory-title@2.0.1:
- resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
+ micromark-factory-title@2.0.0:
+ resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
- micromark-factory-whitespace@2.0.1:
- resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
+ micromark-factory-whitespace@2.0.0:
+ resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
- micromark-util-character@2.1.1:
- resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
+ micromark-util-character@2.1.0:
+ resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
- micromark-util-chunked@2.0.1:
- resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
+ micromark-util-chunked@2.0.0:
+ resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
- micromark-util-classify-character@2.0.1:
- resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
+ micromark-util-classify-character@2.0.0:
+ resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
- micromark-util-combine-extensions@2.0.1:
- resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
+ micromark-util-combine-extensions@2.0.0:
+ resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
- micromark-util-decode-numeric-character-reference@2.0.2:
- resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
+ micromark-util-decode-numeric-character-reference@2.0.1:
+ resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
- micromark-util-decode-string@2.0.1:
- resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
+ micromark-util-decode-string@2.0.0:
+ resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
- micromark-util-encode@2.0.1:
- resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
+ micromark-util-encode@2.0.0:
+ resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
micromark-util-events-to-acorn@2.0.2:
resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==}
- micromark-util-html-tag-name@2.0.1:
- resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
+ micromark-util-html-tag-name@2.0.0:
+ resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
- micromark-util-normalize-identifier@2.0.1:
- resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
+ micromark-util-normalize-identifier@2.0.0:
+ resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
- micromark-util-resolve-all@2.0.1:
- resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
+ micromark-util-resolve-all@2.0.0:
+ resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
- micromark-util-sanitize-uri@2.0.1:
- resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
+ micromark-util-sanitize-uri@2.0.0:
+ resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
- micromark-util-subtokenize@2.0.3:
- resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
+ micromark-util-subtokenize@2.0.1:
+ resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
- micromark-util-symbol@2.0.1:
- resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
+ micromark-util-symbol@2.0.0:
+ resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
- micromark-util-types@2.0.1:
- resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
+ micromark-util-types@2.0.0:
+ resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
micromark@2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
- micromark@4.0.1:
- resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
+ micromark@4.0.0:
+ resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
@@ -8297,6 +8666,10 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -8327,6 +8700,14 @@ packages:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
+ mimic-response@3.1.0:
+ resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
+ engines: {node: '>=10'}
+
+ mimic-response@4.0.0:
+ resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -8393,11 +8774,18 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ mkdirp@0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
+ mlly@1.7.1:
+ resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+
mlly@1.7.3:
resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
@@ -8417,8 +8805,8 @@ packages:
react-native:
optional: true
- mobx@6.13.5:
- resolution: {integrity: sha512-/HTWzW2s8J1Gqt+WmUj5Y0mddZk+LInejADc79NJadrWla3rHzmRHki/mnEUH1AvOmbNTZ1BRbKxr8DSgfdjMA==}
+ mobx@6.13.1:
+ resolution: {integrity: sha512-ekLRxgjWJr8hVxj9ZKuClPwM/iHckx3euIJ3Np7zLVNtqJvfbbq7l370W/98C8EabdQ1pB5Jd3BbDWxJPNnaOg==}
moo-color@1.0.3:
resolution: {integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==}
@@ -8430,6 +8818,9 @@ packages:
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+ ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -8458,8 +8849,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -8473,14 +8864,15 @@ packages:
resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
engines: {node: '>=18'}
+ needle@3.3.1:
+ resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
+ engines: {node: '>= 4.4.x'}
+ hasBin: true
+
negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- negotiator@0.6.4:
- resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
- engines: {node: '>= 0.6'}
-
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -8498,12 +8890,17 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-addon-api@7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
node-fetch-native@1.6.4:
resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
@@ -8533,6 +8930,10 @@ packages:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
engines: {node: '>=8'}
+ normalize-url@8.0.1:
+ resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ engines: {node: '>=14.16'}
+
now-and-later@3.0.0:
resolution: {integrity: sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg==}
engines: {node: '>= 10.13.0'}
@@ -8556,8 +8957,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nwsapi@2.2.16:
- resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
+ nwsapi@2.2.12:
+ resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==}
nypm@0.3.12:
resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
@@ -8568,8 +8969,12 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ engines: {node: '>= 0.4'}
+
+ object-is@1.1.6:
+ resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
@@ -8649,8 +9054,8 @@ packages:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- ora@8.1.0:
- resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==}
+ ora@8.0.1:
+ resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
engines: {node: '>=18'}
os-name@5.1.0:
@@ -8672,6 +9077,10 @@ packages:
resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
engines: {node: '>=6'}
+ p-cancelable@3.0.0:
+ resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
+ engines: {node: '>=12.20'}
+
p-event@2.3.1:
resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==}
engines: {node: '>=6'}
@@ -8744,8 +9153,8 @@ packages:
resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
engines: {node: '>= 14'}
- package-json-from-dist@1.0.1:
- resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+ package-json-from-dist@1.0.0:
+ resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
package-json@10.0.1:
resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==}
@@ -8783,6 +9192,10 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
+ parse-node-version@1.0.1:
+ resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
+ engines: {node: '>= 0.10'}
+
parse-passwd@1.0.0:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
@@ -8802,8 +9215,8 @@ packages:
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- parse5@7.2.1:
- resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse5@7.1.2:
+ resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -8865,8 +9278,8 @@ packages:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
engines: {node: 20 || >=22}
- path-to-regexp@0.1.12:
- resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+ path-to-regexp@0.1.7:
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -8889,6 +9302,9 @@ packages:
resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
engines: {node: '>= 14.16'}
+ pause-stream@0.0.11:
+ resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
+
pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
@@ -8898,9 +9314,15 @@ packages:
performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+ periscopic@3.1.0:
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
+
picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
+ picocolors@1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -8949,6 +9371,9 @@ packages:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
+ pkg-types@1.2.0:
+ resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
+
pkg-types@1.2.1:
resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
@@ -9118,14 +9543,14 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-modules-local-by-default@4.1.0:
- resolution: {integrity: sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q==}
+ postcss-modules-local-by-default@4.0.5:
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.2.1:
- resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
+ postcss-modules-scope@3.2.0:
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -9136,8 +9561,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-modules@6.0.1:
- resolution: {integrity: sha512-zyo2sAkVvuZFFy0gc2+4O+xar5dYlaVy/ebO24KT0ftk/iJevSNyPyQellsBLlnccwh7f6V6Y4GvuKRYToNgpQ==}
+ postcss-modules@6.0.0:
+ resolution: {integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ==}
peerDependencies:
postcss: ^8.0.0
@@ -9228,8 +9653,8 @@ packages:
postcss-resolve-nested-selector@0.1.6:
resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
- postcss-rtlcss@5.5.1:
- resolution: {integrity: sha512-xwA+RhS/6hV7n95rElQn2fLtcYfuXpk/t0EPuxu4LFJ/ma/f+tzN1EH4nN1vaBzRECBo4Xld+TI/QqxWfO61Nw==}
+ postcss-rtlcss@5.3.1:
+ resolution: {integrity: sha512-VvxICcm0j1qEb05GaEPCSZTqxZ71T98WPF9LeVkZB9UW50EytDejDVgub11f4+muMQaSG8AItzEBH5x0nHbS0g==}
engines: {node: '>=18.0.0'}
peerDependencies:
postcss: ^8.4.21
@@ -9279,6 +9704,14 @@ packages:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
+ postcss@8.4.41:
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.4.49:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
@@ -9295,14 +9728,11 @@ packages:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
- prettier-markdown-table@1.0.3:
- resolution: {integrity: sha512-l+TgUVabW4fdJU4YHUqIt6RSAobxBjo8DmIPJFa70216USygxFDRwPQeewrQUdykMT7BzEljj8G1ebP8ylv6sQ==}
- peerDependencies:
- linguist-languages: ^7.27.0
- prettier: ^3.3.2
+ prettier-markdown-table@1.0.2:
+ resolution: {integrity: sha512-WYaAn3GX8hn1v+dZcHljxgZfG0PeWvP2Ufav0vzvlDiWhb8uj+FIKpUIMiaf6uP1PF8Ni/1m7X6FwucSgCvY2w==}
- prettier@3.4.2:
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'}
hasBin: true
@@ -9386,14 +9816,19 @@ packages:
prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
+ ps-tree@1.2.0:
+ resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+
pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
- psl@1.15.0:
- resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
+ psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+ pump@3.0.0:
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
@@ -9410,8 +9845,12 @@ packages:
pure-rand@6.1.0:
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
- qs@6.13.0:
- resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+ qs@6.11.0:
+ resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ engines: {node: '>=0.6'}
+
+ qs@6.13.1:
+ resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==}
engines: {node: '>=0.6'}
query-string@5.1.1:
@@ -9431,6 +9870,10 @@ packages:
queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ quick-lru@5.1.1:
+ resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
+ engines: {node: '>=10'}
+
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
@@ -9459,11 +9902,6 @@ packages:
peerDependencies:
react: ^18.3.1
- react-dom@19.0.0:
- resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
- peerDependencies:
- react: ^19.0.0
-
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -9489,15 +9927,15 @@ packages:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- react-router-dom@6.28.0:
- resolution: {integrity: sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==}
+ react-router-dom@6.26.1:
+ resolution: {integrity: sha512-veut7m41S1fLql4pLhxeSW3jlqs+4MtjRLj0xvuCEXsxusJCbs6I8yn9BxzzDX2XDgafrccY6hwjmd/bL54tFw==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
- react-router@6.28.0:
- resolution: {integrity: sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==}
+ react-router@6.26.1:
+ resolution: {integrity: sha512-kIwJveZNwp7teQRI5QmwWo39A5bXRyqpH0COKKmPnyD2vBvDwgFXSqDUYtt1h+FEyfnE8eXr7oe0MxRzVwCcvQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
@@ -9507,8 +9945,8 @@ packages:
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
- react-syntax-highlighter@15.6.1:
- resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==}
+ react-syntax-highlighter@15.5.0:
+ resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
peerDependencies:
react: '>= 0.14.0'
@@ -9527,10 +9965,6 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- react@19.0.0:
- resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
- engines: {node: '>=0.10.0'}
-
reactcss@1.2.3:
resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==}
peerDependencies:
@@ -9581,18 +10015,6 @@ packages:
resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==}
engines: {node: '>= 10.13.0'}
- recma-build-jsx@1.0.0:
- resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
-
- recma-jsx@1.0.0:
- resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
-
- recma-parse@1.0.0:
- resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
-
- recma-stringify@1.0.0:
- resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
-
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
@@ -9601,8 +10023,8 @@ packages:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- reflect.getprototypeof@1.0.7:
- resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==}
+ reflect.getprototypeof@1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
refractor@3.6.0:
@@ -9638,20 +10060,20 @@ packages:
resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
hasBin: true
- regexp.prototype.flags@1.5.3:
- resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
+ regexp.prototype.flags@1.5.2:
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@6.1.1:
+ resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
engines: {node: '>=4'}
registry-auth-token@4.2.2:
resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==}
engines: {node: '>=6.0.0'}
- registry-auth-token@5.0.3:
- resolution: {integrity: sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==}
+ registry-auth-token@5.0.2:
+ resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
engines: {node: '>=14'}
registry-url@5.1.0:
@@ -9669,19 +10091,16 @@ packages:
resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
hasBin: true
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.11.2:
+ resolution: {integrity: sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==}
hasBin: true
- rehype-recma@1.0.0:
- resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
-
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
- release-it@17.10.0:
- resolution: {integrity: sha512-00cXYEl7RFD5NnjXpwaH9JFjpwe8w3NcfUd4XPxrKQkszp1xppPo42zK9eSbxStKyPA5CVk2KmKPDPDiAKVJTA==}
+ release-it@17.6.0:
+ resolution: {integrity: sha512-EE34dtRPL7BHpYQC7E+zAU8kjkyxFHxLk5Iqnmn/5nGcjgOQu34Au29M2V9YvxiP3tZbIlEn4gItEzu7vAPRbw==}
engines: {node: ^18.18.0 || ^20.9.0 || ^22.0.0}
hasBin: true
@@ -9691,14 +10110,14 @@ packages:
remark-gfm@4.0.0:
resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
- remark-mdx@3.1.0:
- resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
+ remark-mdx@3.0.1:
+ resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
- remark-rehype@11.1.1:
- resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
+ remark-rehype@11.1.0:
+ resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
@@ -9734,6 +10153,9 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ resolve-alpn@1.2.1:
+ resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
+
resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
@@ -9764,8 +10186,8 @@ packages:
resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
engines: {node: '>=12'}
- resolve.exports@2.0.3:
- resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
+ resolve.exports@2.0.2:
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
resolve@1.22.8:
@@ -9779,10 +10201,18 @@ packages:
responselike@1.0.2:
resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
+ responselike@3.0.0:
+ resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
+ engines: {node: '>=14.16'}
+
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
+ restore-cursor@4.0.0:
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
restore-cursor@5.1.0:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
@@ -9798,6 +10228,11 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+ rimraf@2.6.3:
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -9808,16 +10243,21 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.28.0:
- resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==}
+ rollup@4.21.1:
+ resolution: {integrity: sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rollup@4.28.1:
+ resolution: {integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
rrweb-cssom@0.7.1:
resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
- rtlcss@4.3.0:
- resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==}
+ rtlcss@4.2.0:
+ resolution: {integrity: sha512-AV+V3oOVvCrqyH5Q/6RuT1IDH1Xy5kJTkEWTWZPN5rdQ3HCFOd8SrbC7c6N5Y8bPpCfZSR6yYbUATXslvfvu5g==}
engines: {node: '>=12.0.0'}
hasBin: true
@@ -9880,8 +10320,8 @@ packages:
webpack:
optional: true
- sass@1.82.0:
- resolution: {integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==}
+ sass@1.77.8:
+ resolution: {integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -9898,9 +10338,6 @@ packages:
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- scheduler@0.25.0:
- resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
-
schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
@@ -9932,6 +10369,10 @@ packages:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
+ semver-diff@4.0.0:
+ resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==}
+ engines: {node: '>=12'}
+
semver-greatest-satisfied-range@2.0.0:
resolution: {integrity: sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g==}
engines: {node: '>= 10.13.0'}
@@ -9949,13 +10390,18 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
semver@7.6.3:
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.19.0:
- resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
+ send@0.18.0:
+ resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
sentence-case@3.0.4:
@@ -9978,8 +10424,8 @@ packages:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
- serve-static@1.16.2:
- resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
+ serve-static@1.15.0:
+ resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
set-function-length@1.2.2:
@@ -10034,9 +10480,9 @@ packages:
simple-git@3.27.0:
resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
- sirv@3.0.0:
- resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
- engines: {node: '>=18'}
+ sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -10115,10 +10561,18 @@ packages:
source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
+ source-map-js@1.2.0:
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
+
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
+ source-map-resolve@0.6.0:
+ resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
+ deprecated: See https://github.com/lydell/source-map-resolve#deprecated
+
source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
@@ -10181,6 +10635,9 @@ packages:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
+ split@0.3.3:
+ resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
+
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -10205,6 +10662,11 @@ packages:
stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ start-server-and-test@2.0.8:
+ resolution: {integrity: sha512-v2fV6NV2F7tL1ocwfI4Wpait+IKjRbT5l3ZZ+ZikXdMLmxYsS8ynGAsCQAUVXkVyGyS+UibsRnvgHkMvJIvCsw==}
+ engines: {node: '>=16'}
+ hasBin: true
+
statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -10213,6 +10675,9 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
+ std-env@3.7.0:
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+
std-env@3.8.0:
resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
@@ -10220,6 +10685,13 @@ packages:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
engines: {node: '>=18'}
+ stop-iteration-iterator@1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+
+ stream-combiner@0.0.4:
+ resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
+
stream-composer@1.0.2:
resolution: {integrity: sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w==}
@@ -10230,8 +10702,8 @@ packages:
resolution: {integrity: sha512-l09LNfTUkmLMckTB1Mm8Um5GMS1uTZ/KTodg/SMf5Nx758IOsmaqIQ/AJumAnNMkDgZBG39btq3LVkN90knq8w==}
engines: {node: '>= 0.10.0'}
- streamx@2.21.0:
- resolution: {integrity: sha512-Qz6MsDZXJ6ur9u+b+4xCG18TluU7PGlRfXVAAjNiGsFrBUt/ioyLkxbFaKJygoPs+/kW4VyBj0bSj89Qu0IGyg==}
+ streamx@2.19.0:
+ resolution: {integrity: sha512-5z6CNR4gtkPbwlxyEqoDGDmWIzoNJqCBt4Eac1ICP9YaIT08ct712cFj0u1rx4F8luAuL+3Qc+RFIdI4OX00kg==}
strict-uri-encode@1.1.0:
resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==}
@@ -10263,9 +10735,8 @@ packages:
string.fromcodepoint@0.2.1:
resolution: {integrity: sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg==}
- string.prototype.includes@2.0.1:
- resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
- engines: {node: '>= 0.4'}
+ string.prototype.includes@2.0.0:
+ resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
@@ -10347,9 +10818,6 @@ packages:
resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==}
engines: {node: '>=0.10.0'}
- stubborn-fs@1.2.5:
- resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==}
-
style-loader@3.3.4:
resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==}
engines: {node: '>= 12.13.0'}
@@ -10359,8 +10827,8 @@ packages:
style-to-object@0.4.4:
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
- style-to-object@1.0.8:
- resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
+ style-to-object@1.0.6:
+ resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==}
stylehacks@6.1.1:
resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==}
@@ -10386,9 +10854,8 @@ packages:
webpack:
optional: true
- stylus@0.64.0:
- resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==}
- engines: {node: '>=16'}
+ stylus@0.55.0:
+ resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==}
hasBin: true
sucrase@3.35.0:
@@ -10396,6 +10863,10 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
+ supports-color@5.5.0:
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
+
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -10434,6 +10905,10 @@ packages:
resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
engines: {node: '>=12.20'}
+ synckit@0.9.1:
+ resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+
synckit@0.9.2:
resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -10460,6 +10935,10 @@ packages:
teex@1.0.1:
resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==}
+ temp@0.9.4:
+ resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==}
+ engines: {node: '>=6.0.0'}
+
terser-webpack-plugin@5.3.10:
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
@@ -10476,8 +10955,8 @@ packages:
uglify-js:
optional: true
- terser@5.37.0:
- resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
+ terser@5.31.6:
+ resolution: {integrity: sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==}
engines: {node: '>=10'}
hasBin: true
@@ -10489,8 +10968,8 @@ packages:
resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==}
engines: {node: '>=18'}
- text-decoder@1.2.1:
- resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==}
+ text-decoder@1.1.1:
+ resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==}
text-extensions@2.4.0:
resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
@@ -10546,8 +11025,8 @@ packages:
resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.0.1:
+ resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@1.2.0:
@@ -10558,15 +11037,19 @@ packages:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
+ tinyspy@3.0.0:
+ resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==}
+ engines: {node: '>=14.0.0'}
+
tinyspy@3.0.2:
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
- tldts-core@6.1.65:
- resolution: {integrity: sha512-Uq5t0N0Oj4nQSbU8wFN1YYENvMthvwU13MQrMJRspYCGLSAZjAfoBOJki5IQpnBM/WFskxxC/gIOTwaedmHaSg==}
+ tldts-core@6.1.66:
+ resolution: {integrity: sha512-s07jJruSwndD2X8bVjwioPfqpIc1pDTzszPe9pL1Skbh4bjytL85KNQ3tolqLbCvpQHawIsGfFi9dgerWjqW4g==}
- tldts@6.1.65:
- resolution: {integrity: sha512-xU9gLTfAGsADQ2PcWee6Hg8RFAv0DnjMGVJmDnUmI8a9+nYmapMQix4afwrdaCtT+AqP4MaxEzu7cCrYmBPbzQ==}
+ tldts@6.1.66:
+ resolution: {integrity: sha512-l3ciXsYFel/jSRfESbyKYud1nOw7WfhrBEF9I3UiarYk/qEaOOwu3qXNECHw4fHGHGTEOuhf/VdKgoDX5M/dhQ==}
hasBin: true
tmp@0.0.33:
@@ -10583,6 +11066,10 @@ packages:
to-buffer@1.1.1:
resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==}
+ to-fast-properties@2.0.0:
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
+
to-readable-stream@1.0.0:
resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==}
engines: {node: '>=6'}
@@ -10635,8 +11122,8 @@ packages:
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- ts-api-utils@1.4.3:
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
+ ts-api-utils@1.3.0:
+ resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -10668,12 +11155,29 @@ packages:
esbuild:
optional: true
+ ts-node@10.9.2:
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ tslib@2.7.0:
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -10741,14 +11245,14 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
+ type-fest@1.4.0:
+ resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
+ engines: {node: '>=10'}
+
type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- type-fest@4.30.0:
- resolution: {integrity: sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==}
- engines: {node: '>=16'}
-
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -10761,29 +11265,34 @@ packages:
resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.3:
- resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
+ typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.7:
- resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
+ typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typescript-eslint@8.17.0:
- resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==}
+ typedarray-to-buffer@3.1.5:
+ resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
+
+ typescript-eslint@8.18.0:
+ resolution: {integrity: sha512-Xq2rRjn6tzVpAyHr3+nmSg1/9k9aIHnJ2iZeOH7cfGOWqTkXTm3kwpQglEuLGdNrYvPF+2gtAs+/KF5rjVo+WQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
typescript@5.4.2:
resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
engines: {node: '>=14.17'}
hasBin: true
+ typescript@5.5.4:
+ resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
typescript@5.7.2:
resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
@@ -10830,16 +11339,16 @@ packages:
unescape-js@1.1.4:
resolution: {integrity: sha512-42SD8NOQEhdYntEiUQdYq/1V/YHwr1HLwlHuTJB5InVVdOSbgI6xu8jK5q65yIzuFCfczzyDF/7hbGzVbyCw0g==}
- unicode-canonical-property-names-ecmascript@2.0.1:
- resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+ unicode-canonical-property-names-ecmascript@2.0.0:
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
@@ -10853,6 +11362,10 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
+ unique-string@3.0.0:
+ resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
+ engines: {node: '>=12'}
+
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
@@ -10862,6 +11375,9 @@ packages:
unist-util-position@5.0.0:
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
+ unist-util-remove-position@5.0.0:
+ resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
+
unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
@@ -10904,14 +11420,20 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
+ update-browserslist-db@1.1.0:
+ resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- update-notifier@7.3.1:
- resolution: {integrity: sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA==}
+ update-notifier@7.1.0:
+ resolution: {integrity: sha512-8SV3rIqVY6EFC1WxH6L0j55s0MO79MFBS1pivmInRJg3pCEDgWHBj1Q6XByTtCLOZIFA0f6zoG9ZWf2Ks9lvTA==}
engines: {node: '>=18'}
upper-case-first@2.0.2:
@@ -10941,10 +11463,10 @@ packages:
resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==}
engines: {node: '>= 4'}
- use-sync-external-store@1.4.0:
- resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -10960,6 +11482,9 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
+ v8-compile-cache-lib@3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+
v8-to-istanbul@9.3.0:
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
engines: {node: '>=10.12.0'}
@@ -10993,8 +11518,8 @@ packages:
vfile-message@4.0.2:
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- vfile@6.0.3:
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
+ vfile@6.0.2:
+ resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==}
vinyl-contents@2.0.0:
resolution: {integrity: sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q==}
@@ -11020,11 +11545,16 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-node@2.1.8:
- resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==}
+ vite-node@2.0.5:
+ resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
+ vite-node@2.1.7:
+ resolution: {integrity: sha512-b/5MxSWd0ftWt1B1LHfzCw0ASzaxHztUwP0rcsBhkDSGy9ZDEDieSIjFG3I78nI9dUN0eSeD6LtuKPZGjwwpZQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+
vite-plugin-dts@4.2.1:
resolution: {integrity: sha512-/QlYvgUMiv8+ZTEerhNCYnYaZMM07cdlX6hQCR/w/g/nTh0tUXPoYwbT6SitizLJ9BybT1lnrcZgqheI6wromQ==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -11072,6 +11602,37 @@ packages:
terser:
optional: true
+ vite@5.4.2:
+ resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
vitest-canvas-mock@0.3.3:
resolution: {integrity: sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==}
peerDependencies:
@@ -11102,15 +11663,40 @@ packages:
jsdom:
optional: true
- vitest@2.1.8:
- resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==}
+ vitest@2.0.5:
+ resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.8
- '@vitest/ui': 2.1.8
+ '@vitest/browser': 2.0.5
+ '@vitest/ui': 2.0.5
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+
+ vitest@2.1.7:
+ resolution: {integrity: sha512-wzJ7Wri44ufkzTZbI1lHsdHfiGdFRmnJ9qIudDQ6tknjJeHhF5QgNSSjk7KRZUU535qEiEXFJ7tSHqyzyIv0jQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@vitest/browser': 2.1.7
+ '@vitest/ui': 2.1.7
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -11146,6 +11732,11 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
+ wait-on@8.0.1:
+ resolution: {integrity: sha512-1wWQOyR2LVVtaqrcIL2+OM+x7bkpmzVROa0Nf6FryXkS+er5Sa1kzFGjzZRqLnHa3n1rACFLeTwUqE1ETL9Mig==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+
walker@1.0.8:
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
@@ -11159,6 +11750,10 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+
webidl-conversions@4.0.2:
resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
@@ -11218,8 +11813,8 @@ packages:
webpack-cli:
optional: true
- webpack@5.97.1:
- resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
+ webpack@5.93.0:
+ resolution: {integrity: sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -11264,23 +11859,19 @@ packages:
whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
- when-exit@2.1.3:
- resolution: {integrity: sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==}
-
- which-boxed-primitive@1.1.0:
- resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==}
- engines: {node: '>= 0.4'}
+ which-boxed-primitive@1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.2.0:
- resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.16:
- resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==}
+ which-typed-array@1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -11297,9 +11888,9 @@ packages:
engines: {node: '>=8'}
hasBin: true
- widest-line@5.0.0:
- resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
- engines: {node: '>=18'}
+ widest-line@4.0.1:
+ resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
+ engines: {node: '>=12'}
wildcard-match@5.1.3:
resolution: {integrity: sha512-a95hPUk+BNzSGLntNXYxsjz2Hooi5oL7xOfJR6CKwSsSALh7vUNuTlzsrZowtYy38JNduYFRVhFv19ocqNOZlg==}
@@ -11334,6 +11925,9 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ write-file-atomic@3.0.3:
+ resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+
write-file-atomic@4.0.2:
resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -11393,13 +11987,8 @@ packages:
resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
engines: {node: ^14.17.0 || >=16.0.0}
- yaml@2.5.1:
- resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
- engines: {node: '>= 14'}
- hasBin: true
-
- yaml@2.6.1:
- resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
+ yaml@2.5.0:
+ resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
engines: {node: '>= 14'}
hasBin: true
@@ -11422,6 +12011,10 @@ packages:
yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+ yn@3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -11442,9 +12035,7 @@ packages:
snapshots:
- '@adobe/css-tools@4.3.3': {}
-
- '@adobe/css-tools@4.4.1': {}
+ '@adobe/css-tools@4.4.0': {}
'@ampproject/remapping@2.3.0':
dependencies:
@@ -11467,26 +12058,53 @@ snapshots:
'@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
chokidar: 3.6.0
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.24.7':
+ dependencies:
+ '@babel/highlight': 7.24.7
+ picocolors: 1.0.1
+
+ '@babel/code-frame@7.26.0':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.3': {}
+ '@babel/compat-data@7.25.4': {}
+
+ '@babel/compat-data@7.26.0': {}
+
+ '@babel/core@7.25.2':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.0
+ '@babel/parser': 7.25.4
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
+ convert-source-map: 2.0.0
+ debug: 4.3.6
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.1
'@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -11495,34 +12113,100 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1)':
+ '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.0)':
dependencies:
'@babel/core': 7.26.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.57.1
+ eslint: 8.57.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.26.3':
+ '@babel/generator@7.25.5':
+ dependencies:
+ '@babel/types': 7.25.4
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
+ '@babel/generator@7.26.0':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
+ '@babel/helper-annotate-as-pure@7.24.7':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-compilation-targets@7.25.2':
+ dependencies:
+ '@babel/compat-data': 7.25.4
+ '@babel/helper-validator-option': 7.24.8
+ browserslist: 4.23.3
+ lru-cache: 5.1.1
+ semver: 6.3.1
'@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.0
'@babel/helper-validator-option': 7.25.9
browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11531,19 +12215,39 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.1.1
+ semver: 6.3.1
+ optional: true
+
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
+ regexpu-core: 6.1.1
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
@@ -11554,105 +12258,267 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@7.24.8':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.18.6':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
+
+ '@babel/helper-module-imports@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ optional: true
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ '@babel/helper-optimise-call-expression@7.24.7':
+ dependencies:
+ '@babel/types': 7.26.0
+
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
+
+ '@babel/helper-plugin-utils@7.24.8': {}
'@babel/helper-plugin-utils@7.25.9': {}
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
+ '@babel/helper-string-parser@7.24.8': {}
+
'@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-validator-identifier@7.24.7': {}
+
'@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-option@7.24.8': {}
+
'@babel/helper-validator-option@7.25.9': {}
'@babel/helper-wrap-function@7.25.9':
dependencies:
'@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
+ '@babel/helpers@7.25.0':
+ dependencies:
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.4
+
'@babel/helpers@7.26.0':
dependencies:
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
+
+ '@babel/highlight@7.24.7':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/parser@7.25.4':
+ dependencies:
+ '@babel/types': 7.25.4
- '@babel/parser@7.26.3':
+ '@babel/parser@7.26.1':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11662,31 +12528,45 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ optional: true
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ optional: true
+
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11711,21 +12591,38 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
+ optional: true
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11741,6 +12638,16 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11751,10 +12658,15 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
dependencies:
@@ -11771,10 +12683,15 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
dependencies:
@@ -11786,31 +12703,69 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.9
+ optional: true
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11820,16 +12775,45 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11838,6 +12822,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11846,6 +12839,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11853,59 +12859,125 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+ optional: true
+
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/template': 7.25.9
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
+ optional: true
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -11915,35 +12987,78 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -11952,13 +13067,53 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
+ optional: true
'@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -11966,9 +13121,18 @@ snapshots:
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
+ optional: true
'@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -11978,27 +13142,66 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
+ optional: true
+
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12006,6 +13209,15 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12014,11 +13226,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12027,11 +13263,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12040,6 +13299,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12049,6 +13318,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12066,15 +13341,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -12083,7 +13358,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -12093,40 +13368,75 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
+ optional: true
+
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-runtime@7.25.4(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -12135,58 +13445,190 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
- transitivePeerDependencies:
- - supports-color
+ optional: true
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.25.9
+ optional: true
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/preset-env@7.26.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/compat-data': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.25.2)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
'@babel/preset-env@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.0
'@babel/core': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
@@ -12214,7 +13656,7 @@ snapshots:
'@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
@@ -12223,7 +13665,7 @@ snapshots:
'@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
@@ -12251,29 +13693,37 @@ snapshots:
'@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
- core-js-compat: 3.39.0
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.25.9(@babel/core@7.26.0)':
+ '@babel/preset-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
+ esutils: 2.0.3
+ optional: true
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/preset-react@7.26.3(@babel/core@7.26.0)':
+ '@babel/preset-react@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
@@ -12285,20 +13735,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.25.9(@babel/core@7.26.0)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/register@7.24.6(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -12307,32 +13768,56 @@ snapshots:
'@babel/runtime-corejs3@7.26.0':
dependencies:
- core-js-pure: 3.39.0
+ core-js-pure: 3.38.1
regenerator-runtime: 0.14.1
- '@babel/runtime@7.26.0':
+ '@babel/runtime@7.25.4':
dependencies:
regenerator-runtime: 0.14.1
+ '@babel/template@7.25.0':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.25.4
+
'@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/code-frame': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
+
+ '@babel/traverse@7.25.4':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.25.4
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.4
+ debug: 4.3.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/traverse@7.26.4':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.26.1
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
- debug: 4.3.7(supports-color@8.1.1)
+ '@babel/types': 7.26.0
+ debug: 4.3.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.3':
+ '@babel/types@7.25.4':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
+ '@babel/types@7.26.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -12342,66 +13827,66 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@19.6.0(@types/node@20.17.9)(typescript@5.7.2)':
+ '@commitlint/cli@19.4.0(@types/node@20.16.1)(typescript@5.5.4)':
dependencies:
- '@commitlint/format': 19.5.0
- '@commitlint/lint': 19.6.0
- '@commitlint/load': 19.5.0(@types/node@20.17.9)(typescript@5.7.2)
- '@commitlint/read': 19.5.0
- '@commitlint/types': 19.5.0
- tinyexec: 0.3.1
+ '@commitlint/format': 19.3.0
+ '@commitlint/lint': 19.2.2
+ '@commitlint/load': 19.4.0(@types/node@20.16.1)(typescript@5.5.4)
+ '@commitlint/read': 19.4.0
+ '@commitlint/types': 19.0.3
+ execa: 8.0.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
- '@commitlint/config-conventional@19.6.0':
+ '@commitlint/config-conventional@19.2.2':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
conventional-changelog-conventionalcommits: 7.0.2
- '@commitlint/config-validator@19.5.0':
+ '@commitlint/config-validator@19.0.3':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
ajv: 8.17.1
- '@commitlint/ensure@19.5.0':
+ '@commitlint/ensure@19.0.3':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- '@commitlint/execute-rule@19.5.0': {}
+ '@commitlint/execute-rule@19.0.0': {}
- '@commitlint/format@19.5.0':
+ '@commitlint/format@19.3.0':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
chalk: 5.3.0
- '@commitlint/is-ignored@19.6.0':
+ '@commitlint/is-ignored@19.2.2':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
semver: 7.6.3
- '@commitlint/lint@19.6.0':
+ '@commitlint/lint@19.2.2':
dependencies:
- '@commitlint/is-ignored': 19.6.0
- '@commitlint/parse': 19.5.0
- '@commitlint/rules': 19.6.0
- '@commitlint/types': 19.5.0
+ '@commitlint/is-ignored': 19.2.2
+ '@commitlint/parse': 19.0.3
+ '@commitlint/rules': 19.0.3
+ '@commitlint/types': 19.0.3
- '@commitlint/load@19.5.0(@types/node@20.17.9)(typescript@5.7.2)':
+ '@commitlint/load@19.4.0(@types/node@20.16.1)(typescript@5.5.4)':
dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/execute-rule': 19.5.0
- '@commitlint/resolve-extends': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/config-validator': 19.0.3
+ '@commitlint/execute-rule': 19.0.0
+ '@commitlint/resolve-extends': 19.1.0
+ '@commitlint/types': 19.0.3
chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.7.2)
- cosmiconfig-typescript-loader: 5.1.0(@types/node@20.17.9)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
+ cosmiconfig: 9.0.0(typescript@5.5.4)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@20.16.1)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -12409,49 +13894,55 @@ snapshots:
- '@types/node'
- typescript
- '@commitlint/message@19.5.0': {}
+ '@commitlint/message@19.0.0': {}
- '@commitlint/parse@19.5.0':
+ '@commitlint/parse@19.0.3':
dependencies:
- '@commitlint/types': 19.5.0
+ '@commitlint/types': 19.0.3
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
- '@commitlint/read@19.5.0':
+ '@commitlint/read@19.4.0':
dependencies:
- '@commitlint/top-level': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/top-level': 19.0.0
+ '@commitlint/types': 19.0.3
+ execa: 8.0.1
git-raw-commits: 4.0.0
minimist: 1.2.8
- tinyexec: 0.3.1
- '@commitlint/resolve-extends@19.5.0':
+ '@commitlint/resolve-extends@19.1.0':
dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/config-validator': 19.0.3
+ '@commitlint/types': 19.0.3
global-directory: 4.0.1
import-meta-resolve: 4.1.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
- '@commitlint/rules@19.6.0':
+ '@commitlint/rules@19.0.3':
dependencies:
- '@commitlint/ensure': 19.5.0
- '@commitlint/message': 19.5.0
- '@commitlint/to-lines': 19.5.0
- '@commitlint/types': 19.5.0
+ '@commitlint/ensure': 19.0.3
+ '@commitlint/message': 19.0.0
+ '@commitlint/to-lines': 19.0.0
+ '@commitlint/types': 19.0.3
+ execa: 8.0.1
- '@commitlint/to-lines@19.5.0': {}
+ '@commitlint/to-lines@19.0.0': {}
- '@commitlint/top-level@19.5.0':
+ '@commitlint/top-level@19.0.0':
dependencies:
find-up: 7.0.0
- '@commitlint/types@19.5.0':
+ '@commitlint/types@19.0.3':
dependencies:
- '@types/conventional-commits-parser': 5.0.1
+ '@types/conventional-commits-parser': 5.0.0
chalk: 5.3.0
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+ optional: true
+
'@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/css-tokenizer': 3.0.3
@@ -12467,22 +13958,22 @@ snapshots:
dependencies:
postcss-selector-parser: 7.0.0
- '@cypress/request@3.0.6':
+ '@cypress/request@3.0.7':
dependencies:
aws-sign2: 0.7.0
- aws4: 1.13.2
+ aws4: 1.13.1
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
forever-agent: 0.6.1
- form-data: 4.0.1
+ form-data: 4.0.0
http-signature: 1.4.0
is-typedarray: 1.0.0
isstream: 0.1.2
json-stringify-safe: 5.0.1
mime-types: 2.1.35
performance-now: 2.1.0
- qs: 6.13.0
+ qs: 6.13.1
safe-buffer: 5.2.1
tough-cookie: 5.0.0
tunnel-agent: 0.6.0
@@ -12722,32 +14213,44 @@ snapshots:
'@esbuild/win32-x64@0.24.0':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.16.0(jiti@1.21.6))':
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.16.0(jiti@2.3.3))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
ignore: 5.3.2
+ '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ dependencies:
+ eslint: 8.57.0
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.16.0(jiti@2.3.3))':
+ dependencies:
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-visitor-keys: 3.4.3
+
'@eslint-community/eslint-utils@4.4.1(eslint@8.41.0)':
dependencies:
eslint: 8.41.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.0)':
dependencies:
- eslint: 8.57.1
+ eslint: 8.57.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.4.1(eslint@9.16.0(jiti@1.21.6))':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.16.0(jiti@2.3.3))':
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
eslint-visitor-keys: 3.4.3
+ '@eslint-community/regexpp@4.11.0': {}
+
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.4(eslint@9.16.0(jiti@1.21.6))':
+ '@eslint/compat@1.2.4(eslint@9.16.0(jiti@2.3.3))':
optionalDependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
'@eslint/config-array@0.19.1':
dependencies:
@@ -12764,7 +14267,7 @@ snapshots:
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
@@ -12791,14 +14294,14 @@ snapshots:
'@eslint/js@8.41.0': {}
- '@eslint/js@8.57.1': {}
+ '@eslint/js@8.57.0': {}
'@eslint/js@9.16.0': {}
'@eslint/markdown@6.2.1':
dependencies:
'@eslint/plugin-kit': 0.2.4
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.1
mdast-util-gfm: 3.0.0
micromark-extension-gfm: 3.0.0
transitivePeerDependencies:
@@ -12832,15 +14335,7 @@ snapshots:
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.7(supports-color@8.1.1)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
-
- '@humanwhocodes/config-array@0.13.0':
- dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -12859,27 +14354,28 @@ snapshots:
dependencies:
react: 18.3.1
- '@inquirer/checkbox@2.5.0':
+ '@inquirer/checkbox@2.4.7':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/figures': 1.0.5
+ '@inquirer/type': 1.5.2
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
- '@inquirer/confirm@3.2.0':
+ '@inquirer/confirm@3.1.22':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
- '@inquirer/core@9.2.1':
+ '@inquirer/core@9.0.10':
dependencies:
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 2.0.0
+ '@inquirer/figures': 1.0.5
+ '@inquirer/type': 1.5.2
'@types/mute-stream': 0.0.4
'@types/node': 22.10.1
'@types/wrap-ansi': 3.0.0
ansi-escapes: 4.3.2
+ cli-spinners: 2.9.2
cli-width: 4.1.0
mute-stream: 1.0.0
signal-exit: 4.1.0
@@ -12887,75 +14383,71 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
- '@inquirer/editor@2.2.0':
+ '@inquirer/editor@2.1.22':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
external-editor: 3.1.0
- '@inquirer/expand@2.3.0':
+ '@inquirer/expand@2.1.22':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
yoctocolors-cjs: 2.1.2
- '@inquirer/figures@1.0.8': {}
+ '@inquirer/figures@1.0.5': {}
- '@inquirer/input@2.3.0':
+ '@inquirer/input@2.2.9':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
- '@inquirer/number@1.1.0':
+ '@inquirer/number@1.0.10':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
- '@inquirer/password@2.2.0':
+ '@inquirer/password@2.1.22':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
ansi-escapes: 4.3.2
- '@inquirer/prompts@5.5.0':
+ '@inquirer/prompts@5.3.8':
dependencies:
- '@inquirer/checkbox': 2.5.0
- '@inquirer/confirm': 3.2.0
- '@inquirer/editor': 2.2.0
- '@inquirer/expand': 2.3.0
- '@inquirer/input': 2.3.0
- '@inquirer/number': 1.1.0
- '@inquirer/password': 2.2.0
- '@inquirer/rawlist': 2.3.0
- '@inquirer/search': 1.1.0
- '@inquirer/select': 2.5.0
+ '@inquirer/checkbox': 2.4.7
+ '@inquirer/confirm': 3.1.22
+ '@inquirer/editor': 2.1.22
+ '@inquirer/expand': 2.1.22
+ '@inquirer/input': 2.2.9
+ '@inquirer/number': 1.0.10
+ '@inquirer/password': 2.1.22
+ '@inquirer/rawlist': 2.2.4
+ '@inquirer/search': 1.0.7
+ '@inquirer/select': 2.4.7
- '@inquirer/rawlist@2.3.0':
+ '@inquirer/rawlist@2.2.4':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/type': 1.5.2
yoctocolors-cjs: 2.1.2
- '@inquirer/search@1.1.0':
+ '@inquirer/search@1.0.7':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/figures': 1.0.5
+ '@inquirer/type': 1.5.2
yoctocolors-cjs: 2.1.2
- '@inquirer/select@2.5.0':
+ '@inquirer/select@2.4.7':
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 1.5.5
+ '@inquirer/core': 9.0.10
+ '@inquirer/figures': 1.0.5
+ '@inquirer/type': 1.5.2
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
- '@inquirer/type@1.5.5':
- dependencies:
- mute-stream: 1.0.0
-
- '@inquirer/type@2.0.0':
+ '@inquirer/type@1.5.2':
dependencies:
mute-stream: 1.0.0
@@ -12981,27 +14473,27 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0':
+ '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.10.1)
+ jest-config: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -13026,7 +14518,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -13044,7 +14536,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -13066,7 +14558,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -13144,7 +14636,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -13170,12 +14662,11 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@jsdevtools/ez-spawn@3.0.4':
+ '@jridgewell/trace-mapping@0.3.9':
dependencies:
- call-me-maybe: 1.0.2
- cross-spawn: 7.0.6
- string-argv: 0.3.2
- type-detect: 4.1.0
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+ optional: true
'@kwsites/file-exists@1.1.1':
dependencies:
@@ -13189,84 +14680,81 @@ snapshots:
'@loadable/component@5.16.4(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
hoist-non-react-statics: 3.3.2
react: 18.3.1
react-is: 16.13.1
- '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
+ '@mdx-js/mdx@3.0.1':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
'@types/mdx': 2.0.13
collapse-white-space: 2.1.0
devlop: 1.1.0
+ estree-util-build-jsx: 3.0.1
estree-util-is-identifier-name: 3.0.0
- estree-util-scope: 1.0.0
+ estree-util-to-js: 2.0.0
estree-walker: 3.0.3
- hast-util-to-jsx-runtime: 2.3.2
+ hast-util-to-estree: 3.1.0
+ hast-util-to-jsx-runtime: 2.3.0
markdown-extensions: 2.0.0
- recma-build-jsx: 1.0.0
- recma-jsx: 1.0.0(acorn@8.14.0)
- recma-stringify: 1.0.0
- rehype-recma: 1.0.0
- remark-mdx: 3.1.0
+ periscopic: 3.1.0
+ remark-mdx: 3.0.1
remark-parse: 11.0.0
- remark-rehype: 11.1.1
+ remark-rehype: 11.1.0
source-map: 0.7.4
unified: 11.0.5
unist-util-position-from-estree: 2.0.0
unist-util-stringify-position: 4.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.3
+ vfile: 6.0.2
transitivePeerDependencies:
- - acorn
- supports-color
- '@mdx-js/react@3.1.0(@types/react@18.3.14)(react@18.3.1)':
+ '@mdx-js/react@3.0.1(@types/react@18.3.4)(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
react: 18.3.1
- '@mdx-js/rollup@3.1.0(acorn@8.14.0)(rollup@4.28.0)':
+ '@mdx-js/rollup@3.0.1(rollup@4.21.1)':
dependencies:
- '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
- rollup: 4.28.0
+ '@mdx-js/mdx': 3.0.1
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
+ rollup: 4.21.1
source-map: 0.7.4
- vfile: 6.0.3
+ vfile: 6.0.2
transitivePeerDependencies:
- - acorn
- supports-color
- '@microsoft/api-extractor-model@7.29.6(@types/node@20.17.9)':
+ '@microsoft/api-extractor-model@7.29.6(@types/node@20.16.1)':
dependencies:
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.7.0(@types/node@20.17.9)
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
+ '@rushstack/node-core-library': 5.7.0(@types/node@20.16.1)
transitivePeerDependencies:
- '@types/node'
'@microsoft/api-extractor-model@7.29.6(@types/node@22.10.1)':
dependencies:
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
'@rushstack/node-core-library': 5.7.0(@types/node@22.10.1)
transitivePeerDependencies:
- '@types/node'
optional: true
- '@microsoft/api-extractor@7.47.7(@types/node@20.17.9)':
+ '@microsoft/api-extractor@7.47.7(@types/node@20.16.1)':
dependencies:
- '@microsoft/api-extractor-model': 7.29.6(@types/node@20.17.9)
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.7.0(@types/node@20.17.9)
+ '@microsoft/api-extractor-model': 7.29.6(@types/node@20.16.1)
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
+ '@rushstack/node-core-library': 5.7.0(@types/node@20.16.1)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.14.0(@types/node@20.17.9)
- '@rushstack/ts-command-line': 4.22.6(@types/node@20.17.9)
+ '@rushstack/terminal': 0.14.0(@types/node@20.16.1)
+ '@rushstack/ts-command-line': 4.22.6(@types/node@20.16.1)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -13279,8 +14767,8 @@ snapshots:
'@microsoft/api-extractor@7.47.7(@types/node@22.10.1)':
dependencies:
'@microsoft/api-extractor-model': 7.29.6(@types/node@22.10.1)
- '@microsoft/tsdoc': 0.15.1
- '@microsoft/tsdoc-config': 0.17.1
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
'@rushstack/node-core-library': 5.7.0(@types/node@22.10.1)
'@rushstack/rig-package': 0.5.3
'@rushstack/terminal': 0.14.0(@types/node@22.10.1)
@@ -13295,14 +14783,14 @@ snapshots:
- '@types/node'
optional: true
- '@microsoft/tsdoc-config@0.17.1':
+ '@microsoft/tsdoc-config@0.17.0':
dependencies:
- '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc': 0.15.0
ajv: 8.12.0
jju: 1.4.0
resolve: 1.22.8
- '@microsoft/tsdoc@0.15.1': {}
+ '@microsoft/tsdoc@0.15.0': {}
'@mixmark-io/domino@2.2.0': {}
@@ -13335,33 +14823,33 @@ snapshots:
'@nutui/jdesign-icons-react-taro@1.0.6-beta.2': {}
- '@nutui/nutui-react@2.7.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
+ '@nutui/nutui-react@2.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
'@nutui/icons-react': 1.0.5
'@nutui/jdesign-icons-react-taro': 1.0.6-beta.2
'@nutui/touch-emulator': 1.0.0
- '@react-spring/web': 9.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
- '@use-gesture/react': 10.2.20(react@19.0.0)
+ '@react-spring/web': 9.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@use-gesture/react': 10.2.20(react@18.3.1)
async-validator: 4.2.5
classnames: 2.5.1
lodash.isequal: 4.5.0
lodash.kebabcase: 4.1.1
- react: 19.0.0
- react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
+ react: 18.3.1
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- react-dom
- '@nutui/replace-icons@1.0.3(@types/node@22.10.1)(@vitest/ui@2.1.8(vitest@2.1.8))(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)':
+ '@nutui/replace-icons@1.0.3(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)':
dependencies:
'@babel/cli': 7.26.4(@babel/core@7.26.0)
'@babel/core': 7.26.0
- '@babel/generator': 7.26.3
+ '@babel/generator': 7.26.0
'@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
'@types/babel__generator': 7.6.8
- vitest: 1.6.0(@types/node@22.10.1)(@vitest/ui@2.1.8(vitest@2.1.8))(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vitest: 1.6.0(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- '@edge-runtime/vm'
- '@types/node'
@@ -13388,19 +14876,19 @@ snapshots:
'@octokit/graphql': 7.1.0
'@octokit/request': 8.4.0
'@octokit/request-error': 5.1.0
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
before-after-hook: 2.2.3
universal-user-agent: 6.0.1
'@octokit/endpoint@9.0.5':
dependencies:
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
universal-user-agent: 6.0.1
'@octokit/graphql@7.1.0':
dependencies:
'@octokit/request': 8.4.0
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
universal-user-agent: 6.0.1
'@octokit/openapi-types@22.2.0': {}
@@ -13408,7 +14896,7 @@ snapshots:
'@octokit/plugin-paginate-rest@11.3.1(@octokit/core@5.2.0)':
dependencies:
'@octokit/core': 5.2.0
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
'@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.0)':
dependencies:
@@ -13417,11 +14905,11 @@ snapshots:
'@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@5.2.0)':
dependencies:
'@octokit/core': 5.2.0
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
'@octokit/request-error@5.1.0':
dependencies:
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
deprecation: 2.3.1
once: 1.4.0
@@ -13429,7 +14917,7 @@ snapshots:
dependencies:
'@octokit/endpoint': 9.0.5
'@octokit/request-error': 5.1.0
- '@octokit/types': 13.6.2
+ '@octokit/types': 13.5.0
universal-user-agent: 6.0.1
'@octokit/rest@20.1.1':
@@ -13439,81 +14927,20 @@ snapshots:
'@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.0)
'@octokit/plugin-rest-endpoint-methods': 13.2.2(@octokit/core@5.2.0)
- '@octokit/types@13.6.2':
+ '@octokit/types@13.5.0':
dependencies:
'@octokit/openapi-types': 22.2.0
- '@parcel/watcher-android-arm64@2.5.0':
- optional: true
-
- '@parcel/watcher-darwin-arm64@2.5.0':
- optional: true
-
- '@parcel/watcher-darwin-x64@2.5.0':
- optional: true
-
- '@parcel/watcher-freebsd-x64@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-arm-glibc@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-arm-musl@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-arm64-glibc@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-arm64-musl@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-x64-glibc@2.5.0':
- optional: true
-
- '@parcel/watcher-linux-x64-musl@2.5.0':
- optional: true
-
- '@parcel/watcher-win32-arm64@2.5.0':
- optional: true
-
- '@parcel/watcher-win32-ia32@2.5.0':
- optional: true
-
- '@parcel/watcher-win32-x64@2.5.0':
- optional: true
-
- '@parcel/watcher@2.5.0':
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.0
- '@parcel/watcher-darwin-arm64': 2.5.0
- '@parcel/watcher-darwin-x64': 2.5.0
- '@parcel/watcher-freebsd-x64': 2.5.0
- '@parcel/watcher-linux-arm-glibc': 2.5.0
- '@parcel/watcher-linux-arm-musl': 2.5.0
- '@parcel/watcher-linux-arm64-glibc': 2.5.0
- '@parcel/watcher-linux-arm64-musl': 2.5.0
- '@parcel/watcher-linux-x64-glibc': 2.5.0
- '@parcel/watcher-linux-x64-musl': 2.5.0
- '@parcel/watcher-win32-arm64': 2.5.0
- '@parcel/watcher-win32-ia32': 2.5.0
- '@parcel/watcher-win32-x64': 2.5.0
- optional: true
-
'@pkgjs/parseargs@0.11.0':
optional: true
'@pkgr/core@0.1.1': {}
- '@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))':
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.39.0
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
find-up: 5.0.0
html-entities: 2.5.2
@@ -13521,15 +14948,15 @@ snapshots:
react-refresh: 0.14.2
schema-utils: 3.3.0
source-map: 0.7.4
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
optionalDependencies:
type-fest: 2.19.0
- webpack-dev-server: 4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ webpack-dev-server: 4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.30.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
ansi-html: 0.0.9
- core-js-pure: 3.39.0
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
html-entities: 2.5.2
loader-utils: 2.0.4
@@ -13538,7 +14965,7 @@ snapshots:
source-map: 0.7.4
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
optionalDependencies:
- type-fest: 4.30.0
+ type-fest: 2.19.0
webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@pnpm/config.env-replace@1.1.0': {}
@@ -13553,7 +14980,7 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@polka/url@1.0.0-next.28': {}
+ '@polka/url@1.0.0-next.25': {}
'@react-spring/animated@9.6.1(react@18.3.1)':
dependencies:
@@ -13561,12 +14988,6 @@ snapshots:
'@react-spring/types': 9.6.1
react: 18.3.1
- '@react-spring/animated@9.6.1(react@19.0.0)':
- dependencies:
- '@react-spring/shared': 9.6.1(react@19.0.0)
- '@react-spring/types': 9.6.1
- react: 19.0.0
-
'@react-spring/core@9.6.1(react@18.3.1)':
dependencies:
'@react-spring/animated': 9.6.1(react@18.3.1)
@@ -13575,14 +14996,6 @@ snapshots:
'@react-spring/types': 9.6.1
react: 18.3.1
- '@react-spring/core@9.6.1(react@19.0.0)':
- dependencies:
- '@react-spring/animated': 9.6.1(react@19.0.0)
- '@react-spring/rafz': 9.6.1
- '@react-spring/shared': 9.6.1(react@19.0.0)
- '@react-spring/types': 9.6.1
- react: 19.0.0
-
'@react-spring/rafz@9.6.1': {}
'@react-spring/shared@9.6.1(react@18.3.1)':
@@ -13591,12 +15004,6 @@ snapshots:
'@react-spring/types': 9.6.1
react: 18.3.1
- '@react-spring/shared@9.6.1(react@19.0.0)':
- dependencies:
- '@react-spring/rafz': 9.6.1
- '@react-spring/types': 9.6.1
- react: 19.0.0
-
'@react-spring/types@9.6.1': {}
'@react-spring/web@9.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
@@ -13608,62 +15015,64 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-spring/web@9.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)':
- dependencies:
- '@react-spring/animated': 9.6.1(react@19.0.0)
- '@react-spring/core': 9.6.1(react@19.0.0)
- '@react-spring/shared': 9.6.1(react@19.0.0)
- '@react-spring/types': 9.6.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
+ '@remix-run/router@1.19.1': {}
- '@remix-run/router@1.21.0': {}
-
- '@rnx-kit/babel-preset-metro-react-native@1.1.8(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0))(@babel/runtime@7.26.0)':
+ '@rnx-kit/babel-preset-metro-react-native@1.1.8(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0))(@babel/runtime@7.25.4)':
dependencies:
'@babel/core': 7.26.0
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
'@rnx-kit/console': 1.1.0
babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0)
optionalDependencies:
- '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
'@rnx-kit/console@1.1.0': {}
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@4.21.1)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
+ optionalDependencies:
+ '@types/babel__core': 7.20.5
+ rollup: 4.21.1
+ transitivePeerDependencies:
+ - supports-color
+
'@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@3.29.5)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.9
- '@rollup/pluginutils': 5.1.3(rollup@3.29.5)
+ '@babel/helper-module-imports': 7.24.7
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.5)
optionalDependencies:
'@types/babel__core': 7.20.5
rollup: 3.29.5
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@4.28.0)':
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(@types/babel__core@7.20.5)(rollup@4.28.1)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.9
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ '@babel/helper-module-imports': 7.24.7
+ '@rollup/pluginutils': 5.1.0(rollup@4.28.1)
optionalDependencies:
'@types/babel__core': 7.20.5
- rollup: 4.28.0
+ rollup: 4.28.1
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@26.0.3(rollup@4.28.0)':
+ '@rollup/plugin-commonjs@26.0.1(rollup@4.21.1)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 10.4.5
is-reference: 1.2.1
- magic-string: 0.30.14
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 4.28.0
+ rollup: 4.21.1
'@rollup/plugin-inject@5.0.5(rollup@3.29.5)':
dependencies:
@@ -13673,107 +15082,180 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-node-resolve@15.2.3(rollup@4.28.0)':
+ '@rollup/plugin-node-resolve@15.2.3(rollup@4.21.1)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.28.0
+ rollup: 4.21.1
'@rollup/plugin-terser@0.4.4(rollup@3.29.5)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.37.0
+ terser: 5.31.6
optionalDependencies:
rollup: 3.29.5
- '@rollup/plugin-typescript@11.1.6(rollup@4.28.0)(tslib@2.8.1)(typescript@5.7.2)':
+ '@rollup/plugin-typescript@11.1.6(rollup@4.21.1)(tslib@2.8.1)(typescript@5.5.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
resolve: 1.22.8
- typescript: 5.7.2
+ typescript: 5.5.4
optionalDependencies:
- rollup: 4.28.0
+ rollup: 4.21.1
tslib: 2.8.1
+ '@rollup/pluginutils@5.1.0(rollup@3.29.5)':
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 3.29.5
+
+ '@rollup/pluginutils@5.1.0(rollup@4.21.1)':
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.21.1
+
+ '@rollup/pluginutils@5.1.0(rollup@4.28.1)':
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.28.1
+
'@rollup/pluginutils@5.1.3(rollup@3.29.5)':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
rollup: 3.29.5
- '@rollup/pluginutils@5.1.3(rollup@4.28.0)':
+ '@rollup/pluginutils@5.1.3(rollup@4.28.1)':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.28.0
+ rollup: 4.28.1
+
+ '@rollup/rollup-android-arm-eabi@4.21.1':
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.28.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.21.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.28.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.21.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.28.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.21.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.28.1':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.28.0':
+ '@rollup/rollup-freebsd-arm64@4.28.1':
optional: true
- '@rollup/rollup-android-arm64@4.28.0':
+ '@rollup/rollup-freebsd-x64@4.28.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.28.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
optional: true
- '@rollup/rollup-darwin-x64@4.28.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.28.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.28.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.21.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.28.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.28.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.28.0':
+ '@rollup/rollup-linux-arm64-gnu@4.21.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.28.0':
+ '@rollup/rollup-linux-arm64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.28.0':
+ '@rollup/rollup-linux-arm64-musl@4.21.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.28.0':
+ '@rollup/rollup-linux-arm64-musl@4.28.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.28.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.28.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.28.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.28.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.21.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.28.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.28.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.28.0':
+ '@rollup/rollup-linux-s390x-gnu@4.21.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.28.0':
+ '@rollup/rollup-linux-s390x-gnu@4.28.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.28.0':
+ '@rollup/rollup-linux-x64-gnu@4.21.1':
optional: true
- '@rtsao/scc@1.1.0': {}
+ '@rollup/rollup-linux-x64-gnu@4.28.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.21.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.28.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.21.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.28.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.21.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.28.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.21.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.28.1':
+ optional: true
- '@rushstack/node-core-library@5.7.0(@types/node@20.17.9)':
+ '@rushstack/node-core-library@5.7.0(@types/node@20.16.1)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -13784,7 +15266,7 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@rushstack/node-core-library@5.7.0(@types/node@22.10.1)':
dependencies:
@@ -13805,12 +15287,12 @@ snapshots:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.14.0(@types/node@20.17.9)':
+ '@rushstack/terminal@0.14.0(@types/node@20.16.1)':
dependencies:
- '@rushstack/node-core-library': 5.7.0(@types/node@20.17.9)
+ '@rushstack/node-core-library': 5.7.0(@types/node@20.16.1)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@rushstack/terminal@0.14.0(@types/node@22.10.1)':
dependencies:
@@ -13820,9 +15302,9 @@ snapshots:
'@types/node': 22.10.1
optional: true
- '@rushstack/ts-command-line@4.22.6(@types/node@20.17.9)':
+ '@rushstack/ts-command-line@4.22.6(@types/node@20.16.1)':
dependencies:
- '@rushstack/terminal': 0.14.0(@types/node@20.17.9)
+ '@rushstack/terminal': 0.14.0(@types/node@20.16.1)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -13853,6 +15335,8 @@ snapshots:
'@sindresorhus/is@0.7.0': {}
+ '@sindresorhus/is@5.6.0': {}
+
'@sindresorhus/merge-streams@2.3.0': {}
'@sinonjs/commons@3.0.1':
@@ -13865,81 +15349,81 @@ snapshots:
'@stencil/core@2.22.3': {}
- '@swc/core-darwin-arm64@1.10.0':
+ '@swc/core-darwin-arm64@1.10.1':
optional: true
'@swc/core-darwin-arm64@1.3.96':
optional: true
- '@swc/core-darwin-x64@1.10.0':
+ '@swc/core-darwin-x64@1.10.1':
optional: true
'@swc/core-darwin-x64@1.3.96':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.10.0':
+ '@swc/core-linux-arm-gnueabihf@1.10.1':
optional: true
'@swc/core-linux-arm-gnueabihf@1.3.96':
optional: true
- '@swc/core-linux-arm64-gnu@1.10.0':
+ '@swc/core-linux-arm64-gnu@1.10.1':
optional: true
'@swc/core-linux-arm64-gnu@1.3.96':
optional: true
- '@swc/core-linux-arm64-musl@1.10.0':
+ '@swc/core-linux-arm64-musl@1.10.1':
optional: true
'@swc/core-linux-arm64-musl@1.3.96':
optional: true
- '@swc/core-linux-x64-gnu@1.10.0':
+ '@swc/core-linux-x64-gnu@1.10.1':
optional: true
'@swc/core-linux-x64-gnu@1.3.96':
optional: true
- '@swc/core-linux-x64-musl@1.10.0':
+ '@swc/core-linux-x64-musl@1.10.1':
optional: true
'@swc/core-linux-x64-musl@1.3.96':
optional: true
- '@swc/core-win32-arm64-msvc@1.10.0':
+ '@swc/core-win32-arm64-msvc@1.10.1':
optional: true
'@swc/core-win32-arm64-msvc@1.3.96':
optional: true
- '@swc/core-win32-ia32-msvc@1.10.0':
+ '@swc/core-win32-ia32-msvc@1.10.1':
optional: true
'@swc/core-win32-ia32-msvc@1.3.96':
optional: true
- '@swc/core-win32-x64-msvc@1.10.0':
+ '@swc/core-win32-x64-msvc@1.10.1':
optional: true
'@swc/core-win32-x64-msvc@1.3.96':
optional: true
- '@swc/core@1.10.0(@swc/helpers@0.5.15)':
+ '@swc/core@1.10.1(@swc/helpers@0.5.15)':
dependencies:
'@swc/counter': 0.1.3
'@swc/types': 0.1.17
optionalDependencies:
- '@swc/core-darwin-arm64': 1.10.0
- '@swc/core-darwin-x64': 1.10.0
- '@swc/core-linux-arm-gnueabihf': 1.10.0
- '@swc/core-linux-arm64-gnu': 1.10.0
- '@swc/core-linux-arm64-musl': 1.10.0
- '@swc/core-linux-x64-gnu': 1.10.0
- '@swc/core-linux-x64-musl': 1.10.0
- '@swc/core-win32-arm64-msvc': 1.10.0
- '@swc/core-win32-ia32-msvc': 1.10.0
- '@swc/core-win32-x64-msvc': 1.10.0
+ '@swc/core-darwin-arm64': 1.10.1
+ '@swc/core-darwin-x64': 1.10.1
+ '@swc/core-linux-arm-gnueabihf': 1.10.1
+ '@swc/core-linux-arm64-gnu': 1.10.1
+ '@swc/core-linux-arm64-musl': 1.10.1
+ '@swc/core-linux-x64-gnu': 1.10.1
+ '@swc/core-linux-x64-musl': 1.10.1
+ '@swc/core-win32-arm64-msvc': 1.10.1
+ '@swc/core-win32-ia32-msvc': 1.10.1
+ '@swc/core-win32-x64-msvc': 1.10.1
'@swc/helpers': 0.5.15
'@swc/core@1.3.96(@swc/helpers@0.5.15)':
@@ -13976,35 +15460,35 @@ snapshots:
dependencies:
'@swc/counter': 0.1.3
- '@sxzz/eslint-config@4.5.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@sxzz/eslint-config@4.5.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.16.0(jiti@1.21.6))
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.16.0(jiti@2.3.3))
'@eslint/js': 9.16.0
'@eslint/markdown': 6.2.1
- '@unocss/eslint-plugin': 0.65.1(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- eslint: 9.16.0(jiti@1.21.6)
- eslint-config-flat-gitignore: 0.3.0(eslint@9.16.0(jiti@1.21.6))
- eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-antfu: 2.7.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-command: 0.2.6(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-import-x: 4.5.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- eslint-plugin-jsdoc: 50.6.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-jsonc: 2.18.2(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-n: 17.14.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-perfectionist: 4.2.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- eslint-plugin-prettier: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@1.21.6)))(eslint@9.16.0(jiti@1.21.6))(prettier@3.4.2)
- eslint-plugin-regexp: 2.7.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-sxzz: 0.1.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-unicorn: 56.0.1(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-vue: 9.32.0(eslint@9.16.0(jiti@1.21.6))
- eslint-plugin-yml: 1.16.0(eslint@9.16.0(jiti@1.21.6))
+ '@unocss/eslint-plugin': 0.65.1(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-config-flat-gitignore: 0.3.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-antfu: 2.7.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-command: 0.2.6(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-import-x: 4.5.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ eslint-plugin-jsdoc: 50.6.1(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-jsonc: 2.18.2(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-n: 17.15.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-perfectionist: 4.2.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ eslint-plugin-prettier: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@2.3.3)))(eslint@9.16.0(jiti@2.3.3))(prettier@3.3.3)
+ eslint-plugin-regexp: 2.7.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-sxzz: 0.1.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-unicorn: 56.0.1(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-vue: 9.32.0(eslint@9.16.0(jiti@2.3.3))
+ eslint-plugin-yml: 1.16.0(eslint@9.16.0(jiti@2.3.3))
globals: 15.13.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.1
- prettier: 3.4.2
- typescript-eslint: 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@1.21.6))
+ prettier: 3.3.3
+ typescript-eslint: 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.3.3))
yaml-eslint-parser: 1.2.3
transitivePeerDependencies:
- '@eslint/json'
@@ -14015,19 +15499,23 @@ snapshots:
'@sxzz/prettier-config@2.0.2': {}
- '@sxzz/test-utils@0.3.8(esbuild@0.24.0)(rollup@4.28.0)(vitest@2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@sxzz/test-utils@0.3.11(esbuild@0.24.0)(rollup@4.28.1)(vitest@2.1.7(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
- fast-glob: 3.3.2
- vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.28.1)
+ tinyglobby: 0.2.10
+ vitest: 2.1.7(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
optionalDependencies:
esbuild: 0.24.0
- rollup: 4.28.0
+ rollup: 4.28.1
'@szmarczak/http-timer@1.1.2':
dependencies:
defer-to-connect: 1.1.3
+ '@szmarczak/http-timer@5.0.1':
+ dependencies:
+ defer-to-connect: 2.0.1
+
'@tarojs/api@4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)':
dependencies:
'@tarojs/runtime': 4.0.8-beta.1
@@ -14062,7 +15550,7 @@ snapshots:
'@tarojs/service': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/shared': 4.0.8-beta.1
adm-zip: 0.5.16
- axios: 1.7.9
+ axios: 1.7.9(debug@4.3.7)
cli-highlight: 2.1.11
download-git-repo: 3.0.2
envinfo: 7.14.0
@@ -14077,16 +15565,16 @@ snapshots:
- debug
- supports-color
- '@tarojs/components-advanced@4.0.8-beta.1(hqimmnlk3yb7cl4kxj5axyuavi)':
+ '@tarojs/components-advanced@4.0.8-beta.1(6r5jkwu7usulgfelgqewvp44cm)':
dependencies:
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
classnames: 2.5.1
csstype: 3.1.3
memoize-one: 6.0.0
- tslib: 2.8.1
+ tslib: 2.7.0
optionalDependencies:
react: 18.3.1
transitivePeerDependencies:
@@ -14099,16 +15587,16 @@ snapshots:
- webpack-chain
- webpack-dev-server
- '@tarojs/components-advanced@4.0.8-beta.1(m7qmkczm7vaangimgnux2cflum)':
+ '@tarojs/components-advanced@4.0.8-beta.1(nf2xuawkjywoadk3n4uxr42zya)':
dependencies:
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
classnames: 2.5.1
csstype: 3.1.3
memoize-one: 6.0.0
- tslib: 2.8.1
+ tslib: 2.7.0
optionalDependencies:
react: 18.3.1
transitivePeerDependencies:
@@ -14121,12 +15609,12 @@ snapshots:
- webpack-chain
- webpack-dev-server
- '@tarojs/components-react@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.3)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@tarojs/components-react@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.3)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
- '@babel/runtime': 7.26.0
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@babel/runtime': 7.25.4
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
classnames: 2.5.1
react: 18.3.1
solid-js: 1.9.3
@@ -14143,21 +15631,21 @@ snapshots:
- webpack-chain
- webpack-dev-server
- '@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
'@stencil/core': 2.22.3
- '@tarojs/components-advanced': 4.0.8-beta.1(m7qmkczm7vaangimgnux2cflum)
+ '@tarojs/components-advanced': 4.0.8-beta.1(6r5jkwu7usulgfelgqewvp44cm)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
classnames: 2.5.1
hammerjs: 2.0.8
- hls.js: 1.5.17
+ hls.js: 1.5.15
resolve-pathname: 3.0.0
swiper: 11.1.0
- tslib: 2.8.1
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
transitivePeerDependencies:
- '@tarojs/helper'
- html-webpack-plugin
@@ -14168,21 +15656,21 @@ snapshots:
- webpack-chain
- webpack-dev-server
- '@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))':
+ '@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))':
dependencies:
'@stencil/core': 2.22.3
- '@tarojs/components-advanced': 4.0.8-beta.1(hqimmnlk3yb7cl4kxj5axyuavi)
+ '@tarojs/components-advanced': 4.0.8-beta.1(nf2xuawkjywoadk3n4uxr42zya)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
classnames: 2.5.1
hammerjs: 2.0.8
- hls.js: 1.5.17
+ hls.js: 1.5.15
resolve-pathname: 3.0.0
swiper: 11.1.0
- tslib: 2.8.1
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
transitivePeerDependencies:
- '@tarojs/helper'
- html-webpack-plugin
@@ -14196,10 +15684,10 @@ snapshots:
'@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15)':
dependencies:
'@babel/core': 7.26.0
- '@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@swc/core': 1.3.96(@swc/helpers@0.5.15)
'@swc/register': 0.1.10(@swc/core@1.3.96(@swc/helpers@0.5.15))
ansi-escapes: 4.3.2
@@ -14207,7 +15695,7 @@ snapshots:
chokidar: 3.6.0
cross-spawn: 7.0.6
debug: 4.3.7(supports-color@8.1.1)
- dotenv: 16.4.7
+ dotenv: 16.4.5
dotenv-expand: 11.0.7
esbuild: 0.21.5
find-yarn-workspace-root: 2.0.0
@@ -14315,20 +15803,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tarojs/plugin-framework-react@4.0.8-beta.1(@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.30.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)))(react@18.3.1)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@tarojs/plugin-framework-react@4.0.8-beta.1(@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@vitejs/plugin-react@4.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)))(react@18.3.1)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
acorn: 8.14.0
- acorn-walk: 8.3.4
+ acorn-walk: 8.3.3
lodash: 4.17.21
tslib: 2.8.1
optionalDependencies:
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.30.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- '@vitejs/plugin-react': 4.3.4(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@2.19.0)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@vitejs/plugin-react': 4.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
react: 18.3.1
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
'@tarojs/plugin-html@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)':
@@ -14342,16 +15830,16 @@ snapshots:
'@tarojs/service': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/plugin-platform-h5@4.0.8-beta.1(nuih3mewxgvez2kea4l7jgwyya)':
+ '@tarojs/plugin-platform-h5@4.0.8-beta.1(2qaiaevfigvkfdfczfbkfqugfy)':
dependencies:
'@babel/core': 7.26.0
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- '@tarojs/components-react': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.3)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/components-react': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.3)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/service': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro-h5': 4.0.8-beta.1(4dzjgnyowiuizwmw2pfyf5kupm)
+ '@tarojs/taro-h5': 4.0.8-beta.1(n6kyejcxqu6rfctyf6w44reseq)
babel-plugin-transform-taroapi: 4.0.8-beta.1(@babel/core@7.26.0)
change-case: 4.1.2
lodash-es: 4.17.21
@@ -14371,16 +15859,16 @@ snapshots:
- webpack-chain
- webpack-dev-server
- '@tarojs/plugin-platform-harmony-ets@4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))':
+ '@tarojs/plugin-platform-harmony-ets@4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))':
dependencies:
- '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runner-utils': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/service': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -14391,6 +15879,7 @@ snapshots:
- esbuild
- html-webpack-plugin
- postcss
+ - react
- rollup
- supports-color
- uglify-js
@@ -14432,11 +15921,11 @@ snapshots:
react: 18.3.1
react-reconciler: 0.29.0(react@18.3.1)
- '@tarojs/router@4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))':
+ '@tarojs/router@4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))':
dependencies:
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/taro': 4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
dingtalk-jsapi: 2.15.4
history: 5.3.0
mobile-detect: 1.4.5
@@ -14475,14 +15964,14 @@ snapshots:
'@tarojs/shared@4.0.8-beta.1': {}
- '@tarojs/taro-h5@4.0.8-beta.1(4dzjgnyowiuizwmw2pfyf5kupm)':
+ '@tarojs/taro-h5@4.0.8-beta.1(n6kyejcxqu6rfctyf6w44reseq)':
dependencies:
'@tarojs/api': 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- '@tarojs/router': 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/router': 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)(@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- abortcontroller-polyfill: 1.7.6
+ abortcontroller-polyfill: 1.7.8
base64-js: 1.5.1
ics: 3.8.1
is-mobile: 4.0.0
@@ -14504,41 +15993,41 @@ snapshots:
- '@swc/helpers'
- supports-color
- '@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
'@tarojs/api': 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(postcss@8.4.47)(react@18.3.1)(rollup@3.29.5)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))))(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
'@types/postcss-url': 10.0.4
- postcss: 8.4.49
+ postcss: 8.4.47
optionalDependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
html-webpack-plugin: 5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
rollup: 3.29.5
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
webpack-chain: 6.5.1
webpack-dev-server: 4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- '@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))':
+ '@tarojs/taro@4.0.8-beta.1(@tarojs/components@4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@tarojs/shared@4.0.8-beta.1)(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))':
dependencies:
'@tarojs/api': 4.0.8-beta.1(@tarojs/runtime@4.0.8-beta.1)(@tarojs/shared@4.0.8-beta.1)
- '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.14)(html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(postcss@8.4.49)(react@18.3.1)(rollup@4.28.0)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ '@tarojs/components': 4.0.8-beta.1(@tarojs/helper@4.0.8-beta.1(@swc/helpers@0.5.15))(@types/react@18.3.4)(html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(postcss@8.4.41)(react@18.3.1)(rollup@4.21.1)(webpack-chain@6.5.1)(webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
'@types/postcss-url': 10.0.4
- postcss: 8.4.49
+ postcss: 8.4.41
optionalDependencies:
- '@types/react': 18.3.14
- html-webpack-plugin: 5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
- rollup: 4.28.0
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ '@types/react': 18.3.4
+ html-webpack-plugin: 5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
+ rollup: 4.21.1
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
webpack-chain: 6.5.1
- webpack-dev-server: 4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ webpack-dev-server: 4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
- '@tarojs/vite-runner@4.0.8-beta.1(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(@types/babel__core@7.20.5)(jiti@1.21.6)(postcss@8.4.49)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@tarojs/vite-runner@4.0.8-beta.1(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(@types/babel__core@7.20.5)(jiti@2.3.3)(postcss@8.4.47)(rollup@3.29.5)(terser@5.31.6)(tsx@4.19.2)(typescript@5.7.2)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/core': 7.26.0
@@ -14551,9 +16040,9 @@ snapshots:
'@tarojs/runner-utils': 4.0.8-beta.1(@swc/helpers@0.5.15)
'@tarojs/runtime': 4.0.8-beta.1
'@tarojs/shared': 4.0.8-beta.1
- '@vitejs/plugin-legacy': 4.1.1(terser@5.37.0)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
- acorn-walk: 8.3.4
- autoprefixer: 10.4.20(postcss@8.4.49)
+ '@vitejs/plugin-legacy': 4.1.1(terser@5.31.6)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
+ acorn-walk: 8.3.3
+ autoprefixer: 10.4.20(postcss@8.4.47)
babel-plugin-transform-taroapi: 4.0.8-beta.1(@babel/core@7.26.0)
connect-history-api-fallback: 2.0.0
fast-glob: 3.3.2
@@ -14563,19 +16052,19 @@ snapshots:
magic-string: 0.30.14
mrmime: 2.0.0
picomatch: 4.0.2
- postcss: 8.4.49
- postcss-css-variables: 0.19.0(postcss@8.4.49)
- postcss-html-transform: 4.0.8-beta.1(postcss@8.4.49)
- postcss-import: 16.1.0(postcss@8.4.49)
- postcss-load-config: 5.1.0(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)
- postcss-modules: 6.0.1(postcss@8.4.49)
- postcss-plugin-constparse: 4.0.8-beta.1(postcss@8.4.49)
- postcss-pxtransform: 4.0.8-beta.1(postcss@8.4.49)
+ postcss: 8.4.47
+ postcss-css-variables: 0.19.0(postcss@8.4.47)
+ postcss-html-transform: 4.0.8-beta.1(postcss@8.4.47)
+ postcss-import: 16.1.0(postcss@8.4.47)
+ postcss-load-config: 5.1.0(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)
+ postcss-modules: 6.0.0(postcss@8.4.47)
+ postcss-plugin-constparse: 4.0.8-beta.1(postcss@8.4.47)
+ postcss-pxtransform: 4.0.8-beta.1(postcss@8.4.47)
regenerator-runtime: 0.11.1
sax: 1.2.4
stylelint: 16.11.0(typescript@5.7.2)
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
- vite-plugin-static-copy: 0.17.1(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
+ vite-plugin-static-copy: 0.17.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
transitivePeerDependencies:
- '@swc/helpers'
- '@types/babel__core'
@@ -14599,7 +16088,7 @@ snapshots:
- '@swc/helpers'
- supports-color
- '@tarojs/webpack5-runner@4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(less@3.13.1)(postcss@8.4.49)(sass@1.82.0)(stylus@0.64.0)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
+ '@tarojs/webpack5-runner@4.0.8-beta.1(@babel/core@7.26.0)(@swc/core@1.3.96(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@tarojs/runtime@4.0.8-beta.1)(less@4.2.0)(postcss@8.4.47)(sass@1.77.8)(stylus@0.55.0)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))':
dependencies:
'@babel/core': 7.26.0
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
@@ -14609,20 +16098,20 @@ snapshots:
'@tarojs/taro-loader': 4.0.8-beta.1(@swc/helpers@0.5.15)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
'@tarojs/webpack5-prebundle': 4.0.8-beta.1(@swc/helpers@0.5.15)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
acorn: 8.14.0
- acorn-walk: 8.3.4
- autoprefixer: 10.4.20(postcss@8.4.49)
+ acorn-walk: 8.3.3
+ autoprefixer: 10.4.20(postcss@8.4.47)
babel-loader: 8.2.1(@babel/core@7.26.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
copy-webpack-plugin: 12.0.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
css-loader: 7.1.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- css-minimizer-webpack-plugin: 6.0.0(esbuild@0.21.5)(lightningcss@1.28.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ css-minimizer-webpack-plugin: 6.0.0(esbuild@0.21.5)(lightningcss@1.26.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
detect-port: 1.6.1
esbuild: 0.21.5
esbuild-loader: 4.2.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
html-minifier: 4.0.0
html-webpack-plugin: 5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
jsdom: 24.1.3
- less-loader: 12.2.0(less@3.13.1)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- lightningcss: 1.28.2
+ less-loader: 12.2.0(less@4.2.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ lightningcss: 1.26.0
loader-utils: 3.3.1
lodash: 4.17.21
md5: 2.3.0
@@ -14630,19 +16119,19 @@ snapshots:
miniprogram-simulate: 1.6.1
ora: 5.4.1
picomatch: 4.0.2
- postcss: 8.4.49
- postcss-html-transform: 4.0.8-beta.1(postcss@8.4.49)
- postcss-import: 16.1.0(postcss@8.4.49)
- postcss-loader: 8.1.1(postcss@8.4.49)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- postcss-plugin-constparse: 4.0.8-beta.1(postcss@8.4.49)
- postcss-pxtransform: 4.0.8-beta.1(postcss@8.4.49)
- postcss-url: 10.1.3(postcss@8.4.49)
+ postcss: 8.4.47
+ postcss-html-transform: 4.0.8-beta.1(postcss@8.4.47)
+ postcss-import: 16.1.0(postcss@8.4.47)
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ postcss-plugin-constparse: 4.0.8-beta.1(postcss@8.4.47)
+ postcss-pxtransform: 4.0.8-beta.1(postcss@8.4.47)
+ postcss-url: 10.1.3(postcss@8.4.47)
regenerator-runtime: 0.11.1
resolve-url-loader: 5.0.0
- sass-loader: 14.2.1(sass@1.82.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ sass-loader: 14.2.1(sass@1.77.8)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
sax: 1.2.4
style-loader: 3.3.4(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
- stylus-loader: 8.1.1(stylus@0.64.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
+ stylus-loader: 8.1.1(stylus@0.55.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
terser-webpack-plugin: 5.3.10(@swc/core@1.3.96(@swc/helpers@0.5.15))(esbuild@0.21.5)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
vm2: 3.9.19
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
@@ -14652,9 +16141,9 @@ snapshots:
webpack-virtual-modules: 0.6.2
webpackbar: 5.0.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15)))
optionalDependencies:
- less: 3.13.1
- sass: 1.82.0
- stylus: 0.64.0
+ less: 4.2.0
+ sass: 1.77.8
+ stylus: 0.55.0
transitivePeerDependencies:
- '@parcel/css'
- '@rspack/core'
@@ -14676,8 +16165,8 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/runtime': 7.26.0
+ '@babel/code-frame': 7.26.0
+ '@babel/runtime': 7.25.4
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -14685,33 +16174,45 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.6.3':
+ '@testing-library/jest-dom@6.5.0':
dependencies:
- '@adobe/css-tools': 4.4.1
- aria-query: 5.3.2
+ '@adobe/css-tools': 4.4.0
+ aria-query: 5.3.0
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react@16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.2)(@types/react@18.3.14)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
'@testing-library/dom': 10.4.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.14
- '@types/react-dom': 18.3.2
+ '@types/react': 18.3.4
+ '@types/react-dom': 18.3.0
'@tootallnate/quickjs-emscripten@0.23.0': {}
'@trysound/sax@0.2.0': {}
+ '@tsconfig/node10@1.0.11':
+ optional: true
+
+ '@tsconfig/node12@1.0.11':
+ optional: true
+
+ '@tsconfig/node14@1.0.3':
+ optional: true
+
+ '@tsconfig/node16@1.0.4':
+ optional: true
+
'@types/acorn@4.0.6':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
'@types/archy@0.0.31': {}
@@ -14721,24 +16222,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.25.4
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.26.0
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.5':
dependencies:
@@ -14751,16 +16252,16 @@ snapshots:
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 5.0.2
+ '@types/express-serve-static-core': 4.19.5
'@types/node': 22.10.1
'@types/connect@3.4.38':
dependencies:
'@types/node': 22.10.1
- '@types/conventional-commits-parser@5.0.1':
+ '@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/debug@4.1.12':
dependencies:
@@ -14778,37 +16279,32 @@ snapshots:
'@types/estree-jsx@1.0.5':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
+
+ '@types/estree@1.0.5': {}
'@types/estree@1.0.6': {}
'@types/expect@1.20.4': {}
- '@types/express-serve-static-core@4.19.6':
- dependencies:
- '@types/node': 22.10.1
- '@types/qs': 6.9.17
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
- '@types/express-serve-static-core@5.0.2':
+ '@types/express-serve-static-core@4.19.5':
dependencies:
'@types/node': 22.10.1
- '@types/qs': 6.9.17
+ '@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.17
+ '@types/express-serve-static-core': 4.19.5
+ '@types/qs': 6.9.15
'@types/serve-static': 1.15.7
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/fs-extra@8.1.5':
dependencies:
@@ -14821,7 +16317,7 @@ snapshots:
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
'@types/hast@2.3.10':
dependencies:
@@ -14835,6 +16331,8 @@ snapshots:
'@types/html-minifier-terser@6.1.0': {}
+ '@types/http-cache-semantics@4.0.4': {}
+
'@types/http-errors@2.0.4': {}
'@types/http-proxy@1.17.15':
@@ -14857,7 +16355,7 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/keyv@3.1.4':
dependencies:
@@ -14865,21 +16363,21 @@ snapshots:
'@types/loadable__component@5.13.9':
dependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
'@types/lodash.debounce@4.0.9':
dependencies:
- '@types/lodash': 4.17.13
+ '@types/lodash': 4.17.7
'@types/lodash.isequal@4.5.8':
dependencies:
- '@types/lodash': 4.17.13
+ '@types/lodash': 4.17.7
'@types/lodash.kebabcase@4.1.9':
dependencies:
- '@types/lodash': 4.17.13
+ '@types/lodash': 4.17.7
- '@types/lodash@4.17.13': {}
+ '@types/lodash@4.17.7': {}
'@types/mdast@3.0.15':
dependencies:
@@ -14899,13 +16397,13 @@ snapshots:
'@types/mute-stream@0.0.4':
dependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/node-forge@1.3.11':
dependencies:
'@types/node': 22.10.1
- '@types/node@20.17.9':
+ '@types/node@20.16.1':
dependencies:
undici-types: 6.19.8
@@ -14917,49 +16415,49 @@ snapshots:
'@types/postcss-import@14.0.3':
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.41
'@types/postcss-url@10.0.4':
dependencies:
- '@types/node': 20.17.9
- postcss: 8.4.49
+ '@types/node': 20.16.1
+ postcss: 8.4.47
- '@types/prop-types@15.7.14': {}
+ '@types/prop-types@15.7.12': {}
- '@types/qs@6.9.17': {}
+ '@types/qs@6.9.15': {}
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.2':
+ '@types/react-dom@18.3.0':
dependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
'@types/react-router-dom@5.3.3':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
'@types/react-router': 5.1.20
'@types/react-router@5.1.20':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
'@types/react-syntax-highlighter@15.5.13':
dependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
- '@types/react-test-renderer@18.3.1':
+ '@types/react-test-renderer@18.3.0':
dependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
'@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
- '@types/react@18.3.14':
+ '@types/react@18.3.4':
dependencies:
- '@types/prop-types': 15.7.14
+ '@types/prop-types': 15.7.12
csstype: 3.1.3
'@types/resolve@1.20.2': {}
@@ -14972,7 +16470,7 @@ snapshots:
'@types/sass@1.45.0':
dependencies:
- sass: 1.82.0
+ sass: 1.77.8
'@types/semver@7.5.8': {}
@@ -15003,7 +16501,7 @@ snapshots:
'@types/testing-library__jest-dom@6.0.0':
dependencies:
- '@testing-library/jest-dom': 6.6.3
+ '@testing-library/jest-dom': 6.5.0
'@types/unist@2.0.11': {}
@@ -15012,13 +16510,13 @@ snapshots:
'@types/vinyl@2.0.12':
dependencies:
'@types/expect': 1.20.4
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/webpack-env@1.18.5': {}
'@types/wrap-ansi@3.0.0': {}
- '@types/ws@8.5.13':
+ '@types/ws@8.5.12':
dependencies:
'@types/node': 22.10.1
@@ -15034,100 +16532,129 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
optional: true
- '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
+ eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ eslint: 8.57.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.5.4)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
'@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 7.18.0
- eslint: 8.57.1
+ eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- '@typescript-eslint/scope-manager': 8.17.0
- '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- '@typescript-eslint/visitor-keys': 8.17.0
- eslint: 9.16.0(jiti@1.21.6)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.18.0
+ '@typescript-eslint/type-utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.0
+ eslint: 9.16.0(jiti@2.3.3)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ ts-api-utils: 1.3.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
+ eslint: 8.57.0
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.6
+ eslint: 8.57.0
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
+ debug: 4.3.6
+ eslint: 8.57.0
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.17.0
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
- '@typescript-eslint/visitor-keys': 8.17.0
+ '@typescript-eslint/scope-manager': 8.18.0
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/typescript-estree': 8.18.0(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.0
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.16.0(jiti@1.21.6)
- optionalDependencies:
+ eslint: 9.16.0(jiti@2.3.3)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
@@ -15142,43 +16669,54 @@ snapshots:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- '@typescript-eslint/scope-manager@8.17.0':
+ '@typescript-eslint/scope-manager@8.18.0':
dependencies:
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/visitor-keys': 8.17.0
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/visitor-keys': 8.18.0
- '@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.7.2)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ eslint: 8.57.0
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ debug: 4.3.6
+ eslint: 8.57.0
+ ts-api-utils: 1.3.0(typescript@5.5.4)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
+ debug: 4.3.6
+ eslint: 8.57.0
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@typescript-eslint/type-utils@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
+ '@typescript-eslint/typescript-estree': 8.18.0(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.16.0(jiti@1.21.6)
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ eslint: 9.16.0(jiti@2.3.3)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
@@ -15187,7 +16725,7 @@ snapshots:
'@typescript-eslint/types@7.18.0': {}
- '@typescript-eslint/types@8.17.0': {}
+ '@typescript-eslint/types@8.18.0': {}
'@typescript-eslint/typescript-estree@6.21.0(typescript@5.7.2)':
dependencies:
@@ -15198,75 +16736,99 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.6
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.5.4)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)':
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.7.2)
+ ts-api-utils: 1.3.0(typescript@5.7.2)
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.17.0(typescript@5.7.2)':
+ '@typescript-eslint/typescript-estree@8.18.0(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/visitor-keys': 8.17.0
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/visitor-keys': 8.18.0
debug: 4.3.7(supports-color@8.1.1)
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ ts-api-utils: 1.3.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.7.2)
- eslint: 8.57.1
+ eslint: 8.57.0
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
+ eslint: 8.57.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.7.2)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
- eslint: 8.57.1
+ eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@typescript-eslint/utils@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
- '@typescript-eslint/scope-manager': 8.17.0
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2)
- eslint: 9.16.0(jiti@1.21.6)
- optionalDependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
+ '@typescript-eslint/scope-manager': 8.18.0
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/typescript-estree': 8.18.0(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.3.3)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
@@ -15281,9 +16843,9 @@ snapshots:
'@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.17.0':
+ '@typescript-eslint/visitor-keys@8.18.0':
dependencies:
- '@typescript-eslint/types': 8.17.0
+ '@typescript-eslint/types': 8.18.0
eslint-visitor-keys: 4.2.0
'@ungap/structured-clone@1.2.0': {}
@@ -15297,9 +16859,9 @@ snapshots:
'@unocss/core@0.65.1': {}
- '@unocss/eslint-plugin@0.65.1(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)':
+ '@unocss/eslint-plugin@0.65.1(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
magic-string: 0.30.14
@@ -15316,12 +16878,7 @@ snapshots:
'@use-gesture/core': 10.2.20
react: 18.3.1
- '@use-gesture/react@10.2.20(react@19.0.0)':
- dependencies:
- '@use-gesture/core': 10.2.20
- react: 19.0.0
-
- '@vitejs/plugin-legacy@4.1.1(terser@5.37.0)(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitejs/plugin-legacy@4.1.1(terser@5.31.6)(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
'@babel/core': 7.26.0
'@babel/preset-env': 7.26.0(@babel/core@7.26.0)
@@ -15330,49 +16887,49 @@ snapshots:
magic-string: 0.30.14
regenerator-runtime: 0.13.11
systemjs: 6.15.1
- terser: 5.37.0
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ terser: 5.31.6
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitejs/plugin-react@4.3.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
+ optional: true
- '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitejs/plugin-react@4.3.1(vite@5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
- optional: true
- '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.14
- magicast: 0.3.5
- std-env: 3.8.0
+ magic-string: 0.30.11
+ magicast: 0.3.4
+ std-env: 3.7.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vitest: 2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- supports-color
@@ -15382,30 +16939,33 @@ snapshots:
'@vitest/utils': 1.6.0
chai: 4.5.0
- '@vitest/expect@2.1.8':
+ '@vitest/expect@2.0.5':
+ dependencies:
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
+ chai: 5.1.1
+ tinyrainbow: 1.2.0
+
+ '@vitest/expect@2.1.7':
dependencies:
- '@vitest/spy': 2.1.8
- '@vitest/utils': 2.1.8
+ '@vitest/spy': 2.1.7
+ '@vitest/utils': 2.1.7
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitest/mocker@2.1.7(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))':
dependencies:
- '@vitest/spy': 2.1.8
+ '@vitest/spy': 2.1.7
estree-walker: 3.0.3
magic-string: 0.30.14
optionalDependencies:
- vite: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
- '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))':
+ '@vitest/pretty-format@2.0.5':
dependencies:
- '@vitest/spy': 2.1.8
- estree-walker: 3.0.3
- magic-string: 0.30.14
- optionalDependencies:
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ tinyrainbow: 1.2.0
- '@vitest/pretty-format@2.1.8':
+ '@vitest/pretty-format@2.1.7':
dependencies:
tinyrainbow: 1.2.0
@@ -15415,9 +16975,14 @@ snapshots:
p-limit: 5.0.0
pathe: 1.1.2
- '@vitest/runner@2.1.8':
+ '@vitest/runner@2.0.5':
+ dependencies:
+ '@vitest/utils': 2.0.5
+ pathe: 1.1.2
+
+ '@vitest/runner@2.1.7':
dependencies:
- '@vitest/utils': 2.1.8
+ '@vitest/utils': 2.1.7
pathe: 1.1.2
'@vitest/snapshot@1.6.0':
@@ -15426,9 +16991,15 @@ snapshots:
pathe: 1.1.2
pretty-format: 29.7.0
- '@vitest/snapshot@2.1.8':
+ '@vitest/snapshot@2.0.5':
+ dependencies:
+ '@vitest/pretty-format': 2.0.5
+ magic-string: 0.30.14
+ pathe: 1.1.2
+
+ '@vitest/snapshot@2.1.7':
dependencies:
- '@vitest/pretty-format': 2.1.8
+ '@vitest/pretty-format': 2.1.7
magic-string: 0.30.14
pathe: 1.1.2
@@ -15436,20 +17007,24 @@ snapshots:
dependencies:
tinyspy: 2.2.1
- '@vitest/spy@2.1.8':
+ '@vitest/spy@2.0.5':
+ dependencies:
+ tinyspy: 3.0.0
+
+ '@vitest/spy@2.1.7':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@2.1.8(vitest@2.1.8)':
+ '@vitest/ui@2.0.5(vitest@2.0.5)':
dependencies:
- '@vitest/utils': 2.1.8
+ '@vitest/utils': 2.0.5
+ fast-glob: 3.3.2
fflate: 0.8.2
- flatted: 3.3.2
+ flatted: 3.3.1
pathe: 1.1.2
- sirv: 3.0.0
- tinyglobby: 0.2.10
+ sirv: 2.0.4
tinyrainbow: 1.2.0
- vitest: 2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vitest: 2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
'@vitest/utils@1.6.0':
dependencies:
@@ -15458,131 +17033,138 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
- '@vitest/utils@2.1.8':
+ '@vitest/utils@2.0.5':
+ dependencies:
+ '@vitest/pretty-format': 2.0.5
+ estree-walker: 3.0.3
+ loupe: 3.1.1
+ tinyrainbow: 1.2.0
+
+ '@vitest/utils@2.1.7':
dependencies:
- '@vitest/pretty-format': 2.1.8
+ '@vitest/pretty-format': 2.1.7
loupe: 3.1.2
tinyrainbow: 1.2.0
- '@volar/language-core@2.4.10':
+ '@volar/language-core@2.4.4':
dependencies:
- '@volar/source-map': 2.4.10
+ '@volar/source-map': 2.4.4
- '@volar/source-map@2.4.10': {}
+ '@volar/source-map@2.4.4': {}
- '@volar/typescript@2.4.10':
+ '@volar/typescript@2.4.4':
dependencies:
- '@volar/language-core': 2.4.10
+ '@volar/language-core': 2.4.4
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue/compiler-core@3.5.13':
+ '@vue/compiler-core@3.4.38':
dependencies:
- '@babel/parser': 7.26.3
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.26.1
+ '@vue/shared': 3.4.38
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.2.1
+ source-map-js: 1.2.0
- '@vue/compiler-dom@3.5.13':
+ '@vue/compiler-dom@3.4.38':
dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-core': 3.4.38
+ '@vue/shared': 3.4.38
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/language-core@2.1.6(typescript@5.7.2)':
+ '@vue/language-core@2.1.6(typescript@5.5.4)':
dependencies:
- '@volar/language-core': 2.4.10
- '@vue/compiler-dom': 3.5.13
+ '@volar/language-core': 2.4.4
+ '@vue/compiler-dom': 3.4.38
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.13
+ '@vue/shared': 3.4.38
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.7.2
+ typescript: 5.5.4
- '@vue/shared@3.5.13': {}
+ '@vue/shared@3.4.38': {}
- '@webassemblyjs/ast@1.14.1':
+ '@webassemblyjs/ast@1.12.1':
dependencies:
- '@webassemblyjs/helper-numbers': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
+ '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
- '@webassemblyjs/helper-api-error@1.13.2': {}
+ '@webassemblyjs/helper-api-error@1.11.6': {}
- '@webassemblyjs/helper-buffer@1.14.1': {}
+ '@webassemblyjs/helper-buffer@1.12.1': {}
- '@webassemblyjs/helper-numbers@1.13.2':
+ '@webassemblyjs/helper-numbers@1.11.6':
dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.13.2
- '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
- '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
- '@webassemblyjs/helper-wasm-section@1.14.1':
+ '@webassemblyjs/helper-wasm-section@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/ieee754@1.13.2':
+ '@webassemblyjs/ieee754@1.11.6':
dependencies:
'@xtuc/ieee754': 1.2.0
- '@webassemblyjs/leb128@1.13.2':
+ '@webassemblyjs/leb128@1.11.6':
dependencies:
'@xtuc/long': 4.2.2
- '@webassemblyjs/utf8@1.13.2': {}
+ '@webassemblyjs/utf8@1.11.6': {}
- '@webassemblyjs/wasm-edit@1.14.1':
+ '@webassemblyjs/wasm-edit@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/helper-wasm-section': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-opt': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wast-printer': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
- '@webassemblyjs/wasm-gen@1.14.1':
+ '@webassemblyjs/wasm-gen@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- '@webassemblyjs/wasm-opt@1.14.1':
+ '@webassemblyjs/wasm-opt@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-buffer': 1.14.1
- '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wasm-parser@1.14.1':
+ '@webassemblyjs/wasm-parser@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/helper-api-error': 1.13.2
- '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/ieee754': 1.13.2
- '@webassemblyjs/leb128': 1.13.2
- '@webassemblyjs/utf8': 1.13.2
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
- '@webassemblyjs/wast-printer@1.14.1':
+ '@webassemblyjs/wast-printer@1.12.1':
dependencies:
- '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
'@xtuc/ieee754@1.2.0': {}
@@ -15598,7 +17180,7 @@ snapshots:
dependencies:
event-target-shim: 5.0.1
- abortcontroller-polyfill@1.7.6: {}
+ abortcontroller-polyfill@1.7.8: {}
accepts@1.3.8:
dependencies:
@@ -15609,14 +17191,24 @@ snapshots:
dependencies:
acorn: 8.14.0
+ acorn-import-attributes@1.9.5(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
+ acorn-jsx@5.3.2(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
+
acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
acorn: 8.14.0
- acorn-walk@8.3.4:
+ acorn-walk@8.3.3:
dependencies:
acorn: 8.14.0
+ acorn@8.12.1: {}
+
acorn@8.14.0: {}
address@1.2.2: {}
@@ -15630,7 +17222,7 @@ snapshots:
agent-base@7.1.1:
dependencies:
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
@@ -15689,7 +17281,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.3
+ fast-uri: 3.0.1
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -15717,7 +17309,11 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
+ ansi-regex@6.0.1: {}
+
+ ansi-styles@3.2.1:
+ dependencies:
+ color-convert: 1.9.3
ansi-styles@4.3.0:
dependencies:
@@ -15746,25 +17342,32 @@ snapshots:
are-docs-informative@0.0.2: {}
+ arg@4.1.3:
+ optional: true
+
+ arg@5.0.2: {}
+
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
argparse@2.0.1: {}
+ aria-query@5.1.3:
+ dependencies:
+ deep-equal: 2.2.3
+
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
- aria-query@5.3.2: {}
-
arr-diff@4.0.0: {}
arr-union@3.1.0: {}
array-buffer-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
is-array-buffer: 3.0.4
array-differ@1.0.0: {}
@@ -15777,12 +17380,12 @@ snapshots:
array-includes@3.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
- is-string: 1.1.0
+ is-string: 1.0.7
array-slice@1.1.0: {}
@@ -15796,50 +17399,50 @@ snapshots:
array.prototype.findlast@1.2.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
array.prototype.flatmap@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
array.prototype.tosorted@1.1.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-shim-unscopables: 1.0.2
arraybuffer.prototype.slice@1.0.3:
dependencies:
array-buffer-byte-length: 1.0.1
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
@@ -15863,11 +17466,11 @@ snapshots:
ast-types@0.13.4:
dependencies:
- tslib: 2.8.1
+ tslib: 2.7.0
ast-types@0.16.1:
dependencies:
- tslib: 2.8.1
+ tslib: 2.7.0
astral-regex@2.0.0: {}
@@ -15895,19 +17498,26 @@ snapshots:
at-least-node@1.0.0: {}
- atomically@2.0.3:
+ atob@2.1.2: {}
+
+ autoprefixer@10.4.20(postcss@8.4.41):
dependencies:
- stubborn-fs: 1.2.5
- when-exit: 2.1.3
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001653
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.0.1
+ postcss: 8.4.41
+ postcss-value-parser: 4.2.0
- autoprefixer@10.4.20(postcss@8.4.49):
+ autoprefixer@10.4.20(postcss@8.4.47):
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001687
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001653
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.4.49
+ picocolors: 1.0.1
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -15916,19 +17526,31 @@ snapshots:
aws-sign2@0.7.0: {}
- aws4@1.13.2: {}
+ aws4@1.13.1: {}
- axe-core@4.10.2: {}
+ axe-core@4.10.0: {}
- axios@1.7.9:
+ axios@1.7.5:
+ dependencies:
+ follow-redirects: 1.15.6(debug@4.3.7)
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ axios@1.7.9(debug@4.3.7):
dependencies:
- follow-redirects: 1.15.9
- form-data: 4.0.1
+ follow-redirects: 1.15.6(debug@4.3.7)
+ form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- axobject-query@4.1.0: {}
+ axobject-query@3.1.1:
+ dependencies:
+ deep-equal: 2.2.3
+
+ b4a@1.6.6: {}
babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
@@ -15957,8 +17579,8 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -15985,31 +17607,58 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
+ dependencies:
+ '@babel/compat-data': 7.26.0
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.0
'@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
- core-js-compat: 3.39.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
+ core-js-compat: 3.38.1
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
+ optional: true
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0):
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -16038,7 +17687,7 @@ snapshots:
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.26.0)
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
@@ -16056,24 +17705,24 @@ snapshots:
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
- babel-preset-taro@4.0.8-beta.1(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0))(@babel/preset-react@7.26.3(@babel/core@7.26.0))(@swc/helpers@0.5.15)(react-refresh@0.14.2):
+ babel-preset-taro@4.0.8-beta.1(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0))(@babel/preset-react@7.25.9(@babel/core@7.26.0))(@swc/helpers@0.5.15)(react-refresh@0.14.2):
dependencies:
'@babel/core': 7.26.0
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.26.0)
'@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.26.0)
'@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
- '@babel/runtime': 7.26.0
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
+ '@babel/runtime': 7.25.4
'@babel/runtime-corejs3': 7.26.0
- '@rnx-kit/babel-preset-metro-react-native': 1.1.8(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0))(@babel/runtime@7.26.0)
+ '@rnx-kit/babel-preset-metro-react-native': 1.1.8(@babel/core@7.26.0)(@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0))(@babel/runtime@7.25.4)
'@tarojs/helper': 4.0.8-beta.1(@swc/helpers@0.5.15)
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-transform-imports-api: 1.0.0
babel-plugin-transform-solid-jsx: 4.0.8-beta.1(@babel/core@7.26.0)
core-js: 3.39.0
optionalDependencies:
- '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/plugin-transform-typescript'
@@ -16094,7 +17743,7 @@ snapshots:
balanced-match@2.0.0: {}
- bare-events@2.5.0:
+ bare-events@2.4.2:
optional: true
base64-js@1.5.1: {}
@@ -16136,7 +17785,7 @@ snapshots:
bluebird@3.7.2: {}
- body-parser@1.20.3:
+ body-parser@1.20.2:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -16146,30 +17795,30 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.13.0
+ qs: 6.11.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- bonjour-service@1.3.0:
+ bonjour-service@1.2.1:
dependencies:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
boolbase@1.0.0: {}
- boxen@8.0.1:
+ boxen@7.1.1:
dependencies:
ansi-align: 3.0.1
- camelcase: 8.0.0
+ camelcase: 7.0.1
chalk: 5.3.0
cli-boxes: 3.0.0
- string-width: 7.2.0
- type-fest: 4.30.0
- widest-line: 5.0.0
- wrap-ansi: 9.0.0
+ string-width: 5.1.2
+ type-fest: 2.19.0
+ widest-line: 4.0.1
+ wrap-ansi: 8.1.0
brace-expansion@1.1.11:
dependencies:
@@ -16184,10 +17833,17 @@ snapshots:
dependencies:
fill-range: 7.1.1
+ browserslist@4.23.3:
+ dependencies:
+ caniuse-lite: 1.0.30001653
+ electron-to-chromium: 1.5.13
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.0(browserslist@4.23.3)
+
browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001687
- electron-to-chromium: 1.5.71
+ caniuse-lite: 1.0.30001673
+ electron-to-chromium: 1.5.49
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
@@ -16224,16 +17880,16 @@ snapshots:
builtin-modules@3.3.0: {}
- bumpp@9.8.1(magicast@0.3.5):
+ bumpp@9.9.0:
dependencies:
- '@jsdevtools/ez-spawn': 3.0.4
- c12: 1.11.2(magicast@0.3.5)
+ c12: 2.0.1
cac: 6.7.14
escalade: 3.2.0
js-yaml: 4.1.0
jsonc-parser: 3.3.1
prompts: 2.4.2
semver: 7.6.3
+ tinyexec: 0.3.1
tinyglobby: 0.2.10
transitivePeerDependencies:
- magicast
@@ -16242,9 +17898,9 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.0.0(esbuild@0.23.1):
+ bundle-require@5.0.0(esbuild@0.21.5):
dependencies:
- esbuild: 0.23.1
+ esbuild: 0.21.5
load-tsconfig: 0.2.5
bundle-require@5.0.0(esbuild@0.24.0):
@@ -16252,27 +17908,39 @@ snapshots:
esbuild: 0.24.0
load-tsconfig: 0.2.5
+ bytes@3.0.0: {}
+
bytes@3.1.2: {}
- c12@1.11.2(magicast@0.3.5):
+ c12@2.0.1:
dependencies:
- chokidar: 3.6.0
- confbox: 0.1.8
+ chokidar: 4.0.1
+ confbox: 0.1.7
defu: 6.1.4
- dotenv: 16.4.7
+ dotenv: 16.4.5
giget: 1.2.3
- jiti: 1.21.6
- mlly: 1.7.3
+ jiti: 2.3.3
+ mlly: 1.7.1
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.1
+ pkg-types: 1.2.0
rc9: 2.1.2
- optionalDependencies:
- magicast: 0.3.5
cac@6.7.14: {}
+ cacheable-lookup@7.0.0: {}
+
+ cacheable-request@10.2.14:
+ dependencies:
+ '@types/http-cache-semantics': 4.0.4
+ get-stream: 6.0.1
+ http-cache-semantics: 4.1.1
+ keyv: 4.5.4
+ mimic-response: 4.0.0
+ normalize-url: 8.0.1
+ responselike: 3.0.0
+
cacheable-request@2.1.4:
dependencies:
clone-response: 1.0.2
@@ -16295,20 +17963,14 @@ snapshots:
cachedir@2.4.0: {}
- call-bind-apply-helpers@1.0.0:
+ call-bind@1.0.7:
dependencies:
+ es-define-property: 1.0.0
es-errors: 1.3.0
function-bind: 1.1.2
-
- call-bind@1.0.8:
- dependencies:
- call-bind-apply-helpers: 1.0.0
- es-define-property: 1.0.0
get-intrinsic: 1.2.4
set-function-length: 1.2.2
- call-me-maybe@1.0.2: {}
-
callsites@3.1.0: {}
camel-case@3.0.0:
@@ -16325,16 +17987,18 @@ snapshots:
camelcase@6.3.0: {}
- camelcase@8.0.0: {}
+ camelcase@7.0.1: {}
caniuse-api@3.0.0:
dependencies:
browserslist: 4.24.2
- caniuse-lite: 1.0.30001687
+ caniuse-lite: 1.0.30001673
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001687: {}
+ caniuse-lite@1.0.30001653: {}
+
+ caniuse-lite@1.0.30001673: {}
capital-case@1.0.4:
dependencies:
@@ -16363,6 +18027,14 @@ snapshots:
pathval: 1.1.1
type-detect: 4.1.0
+ chai@5.1.1:
+ dependencies:
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.1.1
+ pathval: 2.0.0
+
chai@5.1.2:
dependencies:
assertion-error: 2.0.1
@@ -16371,6 +18043,12 @@ snapshots:
loupe: 3.1.2
pathval: 2.0.0
+ chalk@2.4.2:
+ dependencies:
+ ansi-styles: 3.2.1
+ escape-string-regexp: 1.0.5
+ supports-color: 5.5.0
+
chalk@3.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -16454,7 +18132,7 @@ snapshots:
dependencies:
consola: 3.2.3
- cjs-module-lexer@1.4.1: {}
+ cjs-module-lexer@1.4.0: {}
classnames@2.5.1: {}
@@ -16482,6 +18160,10 @@ snapshots:
dependencies:
restore-cursor: 3.1.0
+ cli-cursor@4.0.0:
+ dependencies:
+ restore-cursor: 4.0.0
+
cli-cursor@5.0.0:
dependencies:
restore-cursor: 5.1.0
@@ -16555,10 +18237,16 @@ snapshots:
collect-v8-coverage@1.0.2: {}
+ color-convert@1.9.3:
+ dependencies:
+ color-name: 1.1.3
+
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
+ color-name@1.1.3: {}
+
color-name@1.1.4: {}
color-support@1.1.3: {}
@@ -16604,16 +18292,16 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
- compression@1.7.5:
+ compression@1.7.4:
dependencies:
- bytes: 3.1.2
+ accepts: 1.3.8
+ bytes: 3.0.0
compressible: 2.0.18
debug: 2.6.9
- negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.2.1
+ safe-buffer: 5.1.2
vary: 1.1.2
transitivePeerDependencies:
- supports-color
@@ -16622,6 +18310,8 @@ snapshots:
concat-map@0.0.1: {}
+ confbox@0.1.7: {}
+
confbox@0.1.8: {}
config-chain@1.1.13:
@@ -16629,11 +18319,12 @@ snapshots:
ini: 1.3.8
proto-list: 1.2.4
- configstore@7.0.0:
+ configstore@6.0.0:
dependencies:
- atomically: 2.0.3
- dot-prop: 9.0.0
+ dot-prop: 6.0.1
graceful-fs: 4.2.11
+ unique-string: 3.0.0
+ write-file-atomic: 3.0.3
xdg-basedir: 5.1.0
confusing-browser-globals@1.0.11: {}
@@ -16677,7 +18368,7 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.7.1: {}
+ cookie@0.6.0: {}
copy-anything@2.0.6:
dependencies:
@@ -16698,11 +18389,11 @@ snapshots:
serialize-javascript: 6.0.2
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- core-js-compat@3.39.0:
+ core-js-compat@3.38.1:
dependencies:
browserslist: 4.24.2
- core-js-pure@3.39.0: {}
+ core-js-pure@3.38.1: {}
core-js@3.39.0: {}
@@ -16710,12 +18401,21 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@5.1.0(@types/node@20.17.9)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
+ cosmiconfig-typescript-loader@5.0.0(@types/node@20.16.1)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4):
dependencies:
- '@types/node': 20.17.9
- cosmiconfig: 9.0.0(typescript@5.7.2)
+ '@types/node': 20.16.1
+ cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 1.21.6
- typescript: 5.7.2
+ typescript: 5.5.4
+
+ cosmiconfig@9.0.0(typescript@5.5.4):
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ optionalDependencies:
+ typescript: 5.5.4
cosmiconfig@9.0.0(typescript@5.7.2):
dependencies:
@@ -16726,13 +18426,13 @@ snapshots:
optionalDependencies:
typescript: 5.7.2
- create-jest@29.7.0(@types/node@22.10.1):
+ create-jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.10.1)
+ jest-config: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -16741,11 +18441,20 @@ snapshots:
- supports-color
- ts-node
+ create-require@1.1.1:
+ optional: true
+
cross-spawn-async@2.2.5:
dependencies:
lru-cache: 4.1.5
which: 1.3.1
+ cross-spawn@7.0.3:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -16754,37 +18463,41 @@ snapshots:
crypt@0.0.2: {}
- css-declaration-sorter@7.2.0(postcss@8.4.49):
+ crypto-random-string@4.0.0:
dependencies:
- postcss: 8.4.49
+ type-fest: 1.4.0
+
+ css-declaration-sorter@7.2.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
css-functions-list@3.2.3: {}
css-loader@7.1.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.49)
- postcss: 8.4.49
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.49)
- postcss-modules-local-by-default: 4.1.0(postcss@8.4.49)
- postcss-modules-scope: 3.2.1(postcss@8.4.49)
- postcss-modules-values: 4.0.0(postcss@8.4.49)
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- css-minimizer-webpack-plugin@6.0.0(esbuild@0.21.5)(lightningcss@1.28.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
+ css-minimizer-webpack-plugin@6.0.0(esbuild@0.21.5)(lightningcss@1.26.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- cssnano: 6.1.2(postcss@8.4.49)
+ cssnano: 6.1.2(postcss@8.4.47)
jest-worker: 29.7.0
- postcss: 8.4.49
+ postcss: 8.4.47
schema-utils: 4.2.0
serialize-javascript: 6.0.2
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
optionalDependencies:
esbuild: 0.21.5
- lightningcss: 1.28.2
+ lightningcss: 1.26.0
css-select@4.3.0:
dependencies:
@@ -16826,53 +18539,59 @@ snapshots:
css.escape@1.5.1: {}
+ css@3.0.0:
+ dependencies:
+ inherits: 2.0.4
+ source-map: 0.6.1
+ source-map-resolve: 0.6.0
+
cssesc@3.0.0: {}
cssfontparser@1.2.1: {}
- cssnano-preset-default@6.1.2(postcss@8.4.49):
+ cssnano-preset-default@6.1.2(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
- css-declaration-sorter: 7.2.0(postcss@8.4.49)
- cssnano-utils: 4.0.2(postcss@8.4.49)
- postcss: 8.4.49
- postcss-calc: 9.0.1(postcss@8.4.49)
- postcss-colormin: 6.1.0(postcss@8.4.49)
- postcss-convert-values: 6.1.0(postcss@8.4.49)
- postcss-discard-comments: 6.0.2(postcss@8.4.49)
- postcss-discard-duplicates: 6.0.3(postcss@8.4.49)
- postcss-discard-empty: 6.0.3(postcss@8.4.49)
- postcss-discard-overridden: 6.0.2(postcss@8.4.49)
- postcss-merge-longhand: 6.0.5(postcss@8.4.49)
- postcss-merge-rules: 6.1.1(postcss@8.4.49)
- postcss-minify-font-values: 6.1.0(postcss@8.4.49)
- postcss-minify-gradients: 6.0.3(postcss@8.4.49)
- postcss-minify-params: 6.1.0(postcss@8.4.49)
- postcss-minify-selectors: 6.0.4(postcss@8.4.49)
- postcss-normalize-charset: 6.0.2(postcss@8.4.49)
- postcss-normalize-display-values: 6.0.2(postcss@8.4.49)
- postcss-normalize-positions: 6.0.2(postcss@8.4.49)
- postcss-normalize-repeat-style: 6.0.2(postcss@8.4.49)
- postcss-normalize-string: 6.0.2(postcss@8.4.49)
- postcss-normalize-timing-functions: 6.0.2(postcss@8.4.49)
- postcss-normalize-unicode: 6.1.0(postcss@8.4.49)
- postcss-normalize-url: 6.0.2(postcss@8.4.49)
- postcss-normalize-whitespace: 6.0.2(postcss@8.4.49)
- postcss-ordered-values: 6.0.2(postcss@8.4.49)
- postcss-reduce-initial: 6.1.0(postcss@8.4.49)
- postcss-reduce-transforms: 6.0.2(postcss@8.4.49)
- postcss-svgo: 6.0.3(postcss@8.4.49)
- postcss-unique-selectors: 6.0.4(postcss@8.4.49)
-
- cssnano-utils@4.0.2(postcss@8.4.49):
- dependencies:
- postcss: 8.4.49
-
- cssnano@6.1.2(postcss@8.4.49):
- dependencies:
- cssnano-preset-default: 6.1.2(postcss@8.4.49)
- lilconfig: 3.1.3
- postcss: 8.4.49
+ css-declaration-sorter: 7.2.0(postcss@8.4.47)
+ cssnano-utils: 4.0.2(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-calc: 9.0.1(postcss@8.4.47)
+ postcss-colormin: 6.1.0(postcss@8.4.47)
+ postcss-convert-values: 6.1.0(postcss@8.4.47)
+ postcss-discard-comments: 6.0.2(postcss@8.4.47)
+ postcss-discard-duplicates: 6.0.3(postcss@8.4.47)
+ postcss-discard-empty: 6.0.3(postcss@8.4.47)
+ postcss-discard-overridden: 6.0.2(postcss@8.4.47)
+ postcss-merge-longhand: 6.0.5(postcss@8.4.47)
+ postcss-merge-rules: 6.1.1(postcss@8.4.47)
+ postcss-minify-font-values: 6.1.0(postcss@8.4.47)
+ postcss-minify-gradients: 6.0.3(postcss@8.4.47)
+ postcss-minify-params: 6.1.0(postcss@8.4.47)
+ postcss-minify-selectors: 6.0.4(postcss@8.4.47)
+ postcss-normalize-charset: 6.0.2(postcss@8.4.47)
+ postcss-normalize-display-values: 6.0.2(postcss@8.4.47)
+ postcss-normalize-positions: 6.0.2(postcss@8.4.47)
+ postcss-normalize-repeat-style: 6.0.2(postcss@8.4.47)
+ postcss-normalize-string: 6.0.2(postcss@8.4.47)
+ postcss-normalize-timing-functions: 6.0.2(postcss@8.4.47)
+ postcss-normalize-unicode: 6.1.0(postcss@8.4.47)
+ postcss-normalize-url: 6.0.2(postcss@8.4.47)
+ postcss-normalize-whitespace: 6.0.2(postcss@8.4.47)
+ postcss-ordered-values: 6.0.2(postcss@8.4.47)
+ postcss-reduce-initial: 6.1.0(postcss@8.4.47)
+ postcss-reduce-transforms: 6.0.2(postcss@8.4.47)
+ postcss-svgo: 6.0.3(postcss@8.4.47)
+ postcss-unique-selectors: 6.0.4(postcss@8.4.47)
+
+ cssnano-utils@4.0.2(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+
+ cssnano@6.1.2(postcss@8.4.47):
+ dependencies:
+ cssnano-preset-default: 6.1.2(postcss@8.4.47)
+ lilconfig: 3.1.2
+ postcss: 8.4.47
csso@3.5.1:
dependencies:
@@ -16892,7 +18611,7 @@ snapshots:
cypress@13.16.1:
dependencies:
- '@cypress/request': 3.0.6
+ '@cypress/request': 3.0.7
'@cypress/xvfb': 1.2.4(supports-color@8.1.1)
'@types/sinonjs__fake-timers': 8.1.1
'@types/sizzle': 2.3.9
@@ -16944,6 +18663,8 @@ snapshots:
dependencies:
assert-plus: 1.0.0
+ data-uri-to-buffer@4.0.1: {}
+
data-uri-to-buffer@6.0.2: {}
data-urls@5.0.0:
@@ -16953,19 +18674,19 @@ snapshots:
data-view-buffer@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
data-view-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
data-view-byte-offset@1.0.0:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
@@ -16977,12 +18698,20 @@ snapshots:
dependencies:
ms: 2.0.0
+ debug@3.1.0:
+ dependencies:
+ ms: 2.0.0
+
debug@3.2.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
optionalDependencies:
supports-color: 8.1.1
+ debug@4.3.6:
+ dependencies:
+ ms: 2.1.2
+
debug@4.3.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
@@ -17003,6 +18732,10 @@ snapshots:
dependencies:
mimic-response: 1.0.1
+ decompress-response@6.0.0:
+ dependencies:
+ mimic-response: 3.1.0
+
decompress-tar@4.1.1:
dependencies:
file-type: 5.2.0
@@ -17049,6 +18782,27 @@ snapshots:
deep-eql@5.0.2: {}
+ deep-equal@2.2.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.2.4
+ is-arguments: 1.1.1
+ is-array-buffer: 3.0.4
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.3
+ isarray: 2.0.5
+ object-is: 1.1.6
+ object-keys: 1.1.1
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ side-channel: 1.0.6
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.2
+ which-typed-array: 1.1.15
+
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
@@ -17074,11 +18828,13 @@ snapshots:
defer-to-connect@1.1.3: {}
+ defer-to-connect@2.0.1: {}
+
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
es-errors: 1.3.0
- gopd: 1.2.0
+ gopd: 1.0.1
define-lazy-prop@2.0.0: {}
@@ -17144,6 +18900,9 @@ snapshots:
diff-sequences@29.6.3: {}
+ diff@4.0.2:
+ optional: true
+
dingtalk-jsapi@2.15.4:
dependencies:
promise-polyfill: 7.1.2
@@ -17174,7 +18933,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
csstype: 3.1.3
dom-serializer@1.4.1:
@@ -17220,15 +18979,15 @@ snapshots:
dependencies:
is-obj: 2.0.0
- dot-prop@9.0.0:
+ dot-prop@6.0.1:
dependencies:
- type-fest: 4.30.0
+ is-obj: 2.0.0
dotenv-expand@11.0.7:
dependencies:
- dotenv: 16.4.7
+ dotenv: 16.4.5
- dotenv@16.4.7: {}
+ dotenv@16.4.5: {}
download-git-repo@3.0.2:
dependencies:
@@ -17253,6 +19012,8 @@ snapshots:
duplexer3@0.1.5: {}
+ duplexer@0.1.2: {}
+
each-props@3.0.0:
dependencies:
is-plain-object: 5.0.0
@@ -17271,7 +19032,9 @@ snapshots:
dependencies:
jake: 10.9.2
- electron-to-chromium@1.5.71: {}
+ electron-to-chromium@1.5.13: {}
+
+ electron-to-chromium@1.5.49: {}
emittery@0.13.1: {}
@@ -17285,8 +19048,6 @@ snapshots:
encodeurl@1.0.2: {}
- encodeurl@2.0.0: {}
-
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
@@ -17324,12 +19085,12 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-abstract@1.23.5:
+ es-abstract@1.23.3:
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
data-view-buffer: 1.0.1
data-view-byte-length: 1.0.1
data-view-byte-offset: 1.0.0
@@ -17337,30 +19098,30 @@ snapshots:
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-set-tostringtag: 2.0.3
- es-to-primitive: 1.3.0
+ es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
globalthis: 1.0.4
- gopd: 1.2.0
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
- has-proto: 1.1.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
internal-slot: 1.0.7
is-array-buffer: 3.0.4
is-callable: 1.2.7
is-data-view: 1.0.1
is-negative-zero: 2.0.3
- is-regex: 1.2.0
+ is-regex: 1.1.4
is-shared-array-buffer: 1.0.3
- is-string: 1.1.0
+ is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.3
+ object-inspect: 1.13.2
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
+ regexp.prototype.flags: 1.5.2
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
string.prototype.trim: 1.2.9
@@ -17368,10 +19129,10 @@ snapshots:
string.prototype.trimstart: 1.0.8
typed-array-buffer: 1.0.2
typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.3
- typed-array-length: 1.0.7
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
unbox-primitive: 1.0.2
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.15
es-define-property@1.0.0:
dependencies:
@@ -17379,22 +19140,33 @@ snapshots:
es-errors@1.3.0: {}
- es-iterator-helpers@1.2.0:
+ es-get-iterator@1.1.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ is-arguments: 1.1.1
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-string: 1.0.7
+ isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
+
+ es-iterator-helpers@1.0.19:
+ dependencies:
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.4
- gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.1.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
internal-slot: 1.0.7
- iterator.prototype: 1.1.3
+ iterator.prototype: 1.1.2
safe-array-concat: 1.1.2
es-module-lexer@0.10.5: {}
@@ -17415,25 +19187,11 @@ snapshots:
dependencies:
hasown: 2.0.2
- es-to-primitive@1.3.0:
+ es-to-primitive@1.2.1:
dependencies:
is-callable: 1.2.7
is-date-object: 1.0.5
- is-symbol: 1.1.0
-
- esast-util-from-estree@2.0.0:
- dependencies:
- '@types/estree-jsx': 1.0.5
- devlop: 1.1.0
- estree-util-visit: 2.0.0
- unist-util-position-from-estree: 2.0.0
-
- esast-util-from-js@2.0.1:
- dependencies:
- '@types/estree-jsx': 1.0.5
- acorn: 8.14.0
- esast-util-from-estree: 2.0.0
- vfile-message: 4.0.2
+ is-symbol: 1.0.4
esbuild-loader@4.2.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
@@ -17523,6 +19281,8 @@ snapshots:
'@esbuild/win32-ia32': 0.24.0
'@esbuild/win32-x64': 0.24.0
+ escalade@3.1.2: {}
+
escalade@3.2.0: {}
escape-goat@4.0.0: {}
@@ -17545,61 +19305,61 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.16.0(jiti@1.21.6)):
+ eslint-compat-utils@0.5.1(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
semver: 7.6.3
- eslint-compat-utils@0.6.4(eslint@9.16.0(jiti@1.21.6)):
+ eslint-compat-utils@0.6.4(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
semver: 7.6.3
- eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1):
+ eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0):
dependencies:
confusing-browser-globals: 1.0.11
- eslint: 8.57.1
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
+ eslint: 8.57.0
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
object.assign: 4.1.5
object.entries: 1.1.8
semver: 6.3.1
- eslint-config-airbnb@19.0.4(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint@8.57.1):
+ eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.35.0(eslint@8.57.0))(eslint@8.57.0):
dependencies:
- eslint: 8.57.1
- eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
- eslint-plugin-react: 7.37.2(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint: 8.57.0
+ eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
+ eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0)
+ eslint-plugin-react: 7.35.0(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
object.assign: 4.1.5
object.entries: 1.1.8
- eslint-config-flat-gitignore@0.3.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-config-flat-gitignore@0.3.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint/compat': 1.2.4(eslint@9.16.0(jiti@1.21.6))
- eslint: 9.16.0(jiti@1.21.6)
+ '@eslint/compat': 1.2.4(eslint@9.16.0(jiti@2.3.3))
+ eslint: 9.16.0(jiti@2.3.3)
find-up-simple: 1.0.0
- eslint-config-prettier@9.1.0(eslint@8.57.1):
+ eslint-config-prettier@9.1.0(eslint@8.57.0):
dependencies:
- eslint: 8.57.1
+ eslint: 8.57.0
- eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
- eslint-config-taro@4.0.8-beta.1(@babel/core@7.26.0)(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint-plugin-vue@9.32.0(eslint@8.57.1))(eslint@8.57.1)(typescript@5.7.2):
+ eslint-config-taro@4.0.8-beta.1(@babel/core@7.26.0)(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.35.0(eslint@8.57.0))(eslint-plugin-vue@9.32.0(eslint@8.57.0))(eslint@8.57.0)(typescript@5.7.2):
dependencies:
- '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.1)
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
- eslint: 8.57.1
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)
+ '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.0)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)(typescript@5.7.2)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
+ eslint: 8.57.0
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0)
optionalDependencies:
- eslint-plugin-react: 7.37.2(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
- eslint-plugin-vue: 9.32.0(eslint@8.57.1)
+ eslint-plugin-react: 7.35.0(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
+ eslint-plugin-vue: 9.32.0(eslint@8.57.0)
transitivePeerDependencies:
- '@babel/core'
- eslint-import-resolver-typescript
@@ -17615,79 +19375,88 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-json-compat-utils@0.2.1(eslint@9.16.0(jiti@1.21.6))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.16.0(jiti@2.3.3))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1):
+ eslint-module-utils@2.8.2(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ dependencies:
+ debug: 3.2.7(supports-color@8.1.1)
+ optionalDependencies:
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-module-utils@2.8.2(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
- eslint: 8.57.1
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1):
+ eslint-module-utils@2.8.2(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- eslint: 8.57.1
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
+ eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-antfu@2.7.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-antfu@2.7.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
'@antfu/utils': 0.7.10
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
- eslint-plugin-command@0.2.6(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-command@0.2.6(eslint@9.16.0(jiti@2.3.3)):
dependencies:
'@es-joy/jsdoccomment': 0.48.0
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
- eslint-plugin-es-x@7.8.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-es-x@7.8.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
- '@eslint-community/regexpp': 4.12.1
- eslint: 9.16.0(jiti@1.21.6)
- eslint-compat-utils: 0.5.1(eslint@9.16.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.3.3))
+ '@eslint-community/regexpp': 4.11.0
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-compat-utils: 0.5.1(eslint@9.16.0(jiti@2.3.3))
- eslint-plugin-import-x@4.5.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2):
+ eslint-plugin-import-x@4.5.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2):
dependencies:
- '@typescript-eslint/scope-manager': 8.17.0
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.18.0
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
debug: 4.3.7(supports-color@8.1.1)
doctrine: 3.0.0
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.8.1
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
stable-hash: 0.0.4
- tslib: 2.8.1
+ tslib: 2.7.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0):
dependencies:
- '@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 8.57.1
+ eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1)
+ eslint-module-utils: 2.8.2(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -17696,27 +19465,52 @@ snapshots:
object.groupby: 1.0.3
object.values: 1.2.0
semver: 6.3.1
- string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.7.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0):
dependencies:
- '@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 8.57.1
+ eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1)
+ eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ hasown: 2.0.2
+ is-core-module: 2.15.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint@8.57.0):
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7(supports-color@8.1.1)
+ doctrine: 2.1.0
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -17725,38 +19519,37 @@ snapshots:
object.groupby: 1.0.3
object.values: 1.2.0
semver: 6.3.1
- string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.7.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsdoc@50.6.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-jsdoc@50.6.1(eslint@9.16.0(jiti@2.3.3)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.3.7(supports-color@8.1.1)
escape-string-regexp: 4.0.0
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
semver: 7.6.3
spdx-expression-parse: 4.0.0
- synckit: 0.9.2
+ synckit: 0.9.1
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.18.2(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-jsonc@2.18.2(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
- eslint: 9.16.0(jiti@1.21.6)
- eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@1.21.6))
- eslint-json-compat-utils: 0.2.1(eslint@9.16.0(jiti@1.21.6))(jsonc-eslint-parser@2.4.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@2.3.3))
+ eslint-json-compat-utils: 0.2.1(eslint@9.16.0(jiti@2.3.3))(jsonc-eslint-parser@2.4.0)
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -17765,87 +19558,88 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
+ eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0):
dependencies:
- aria-query: 5.3.2
+ aria-query: 5.1.3
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.10.2
- axobject-query: 4.1.0
+ axe-core: 4.10.0
+ axobject-query: 3.1.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.57.1
+ es-iterator-helpers: 1.0.19
+ eslint: 8.57.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
object.fromentries: 2.0.8
safe-regex-test: 1.0.3
- string.prototype.includes: 2.0.1
+ string.prototype.includes: 2.0.0
- eslint-plugin-markdown@5.1.0(eslint@8.57.1):
+ eslint-plugin-markdown@5.1.0(eslint@8.57.0):
dependencies:
- eslint: 8.57.1
+ eslint: 8.57.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
- eslint-plugin-n@17.14.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-n@17.15.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@2.3.3))
enhanced-resolve: 5.17.1
- eslint: 9.16.0(jiti@1.21.6)
- eslint-plugin-es-x: 7.8.0(eslint@9.16.0(jiti@1.21.6))
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-plugin-es-x: 7.8.0(eslint@9.16.0(jiti@2.3.3))
get-tsconfig: 4.8.1
globals: 15.13.0
ignore: 5.3.2
minimatch: 9.0.5
semver: 7.6.3
- eslint-plugin-perfectionist@4.2.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2):
+ eslint-plugin-perfectionist@4.2.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2):
dependencies:
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- eslint: 9.16.0(jiti@1.21.6)
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.3.3)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2):
+ eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3):
dependencies:
- eslint: 8.57.1
- prettier: 3.4.2
+ eslint: 8.57.0
+ prettier: 3.3.3
prettier-linter-helpers: 1.0.0
- synckit: 0.9.2
+ synckit: 0.9.1
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-config-prettier: 9.1.0(eslint@8.57.1)
+ eslint-config-prettier: 9.1.0(eslint@8.57.0)
- eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@1.21.6)))(eslint@9.16.0(jiti@1.21.6))(prettier@3.4.2):
+ eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.16.0(jiti@2.3.3)))(eslint@9.16.0(jiti@2.3.3))(prettier@3.3.3):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
- prettier: 3.4.2
+ eslint: 9.16.0(jiti@2.3.3)
+ prettier: 3.3.3
prettier-linter-helpers: 1.0.0
- synckit: 0.9.2
+ synckit: 0.9.1
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@1.21.6))
+ eslint-config-prettier: 9.1.0(eslint@9.16.0(jiti@2.3.3))
- eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
+ eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
dependencies:
- eslint: 8.57.1
+ eslint: 8.57.0
- eslint-plugin-react@7.37.2(eslint@8.57.1):
+ eslint-plugin-react@7.35.0(eslint@8.57.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.2.0
- eslint: 8.57.1
+ es-iterator-helpers: 1.0.19
+ eslint: 8.57.0
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -17859,29 +19653,29 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-regexp@2.7.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-regexp@2.7.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
+ '@eslint-community/regexpp': 4.11.0
comment-parser: 1.4.1
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-sxzz@0.1.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-sxzz@0.1.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
- eslint-plugin-unicorn@56.0.1(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-unicorn@56.0.1(eslint@9.16.0(jiti@2.3.3)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
ci-info: 4.1.0
clean-regexp: 1.0.0
- core-js-compat: 3.39.0
- eslint: 9.16.0(jiti@1.21.6)
+ core-js-compat: 3.38.1
+ eslint: 9.16.0(jiti@2.3.3)
esquery: 1.6.0
globals: 15.13.0
indent-string: 4.0.0
@@ -17894,52 +19688,52 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1):
+ eslint-plugin-unused-imports@4.1.3(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0):
dependencies:
- eslint: 8.57.1
+ eslint: 8.57.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
+ '@typescript-eslint/eslint-plugin': 8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
- eslint-plugin-vue@9.32.0(eslint@8.57.1):
+ eslint-plugin-vue@9.32.0(eslint@8.57.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
- eslint: 8.57.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ eslint: 8.57.0
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.6.3
- vue-eslint-parser: 9.4.3(eslint@8.57.1)
+ vue-eslint-parser: 9.4.3(eslint@8.57.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
optional: true
- eslint-plugin-vue@9.32.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-vue@9.32.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
- eslint: 9.16.0(jiti@1.21.6)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
+ eslint: 9.16.0(jiti@2.3.3)
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.6.3
- vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@1.21.6))
+ vue-eslint-parser: 9.4.3(eslint@9.16.0(jiti@2.3.3))
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-yml@1.16.0(eslint@9.16.0(jiti@1.21.6)):
+ eslint-plugin-yml@1.16.0(eslint@9.16.0(jiti@2.3.3)):
dependencies:
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.16.0(jiti@1.21.6)
- eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@1.21.6))
+ eslint: 9.16.0(jiti@2.3.3)
+ eslint-compat-utils: 0.6.4(eslint@9.16.0(jiti@2.3.3))
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.3
@@ -18011,20 +19805,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@8.57.1:
+ eslint@8.57.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@eslint-community/regexpp': 4.11.0
'@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.1
- '@humanwhocodes/config-array': 0.13.0
+ '@eslint/js': 8.57.0
+ '@humanwhocodes/config-array': 0.11.14
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
'@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.6
- debug: 4.3.7(supports-color@8.1.1)
+ cross-spawn: 7.0.3
+ debug: 4.3.6
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -18054,9 +19848,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint@9.16.0(jiti@1.21.6):
+ eslint@9.16.0(jiti@2.3.3):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@2.3.3))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.1
'@eslint/core': 0.9.1
@@ -18091,7 +19885,7 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 1.21.6
+ jiti: 2.3.3
transitivePeerDependencies:
- supports-color
@@ -18103,8 +19897,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -18123,7 +19917,7 @@ snapshots:
estree-util-attach-comments@3.0.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
estree-util-build-jsx@3.0.1:
dependencies:
@@ -18134,11 +19928,6 @@ snapshots:
estree-util-is-identifier-name@3.0.0: {}
- estree-util-scope@1.0.0:
- dependencies:
- '@types/estree': 1.0.6
- devlop: 1.1.0
-
estree-util-to-js@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -18154,12 +19943,22 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
esutils@2.0.3: {}
etag@1.8.1: {}
+ event-stream@3.3.4:
+ dependencies:
+ duplexer: 0.1.2
+ from: 0.1.7
+ map-stream: 0.1.0
+ pause-stream: 0.0.11
+ split: 0.3.3
+ stream-combiner: 0.0.4
+ through: 2.3.8
+
event-target-shim@5.0.1: {}
eventemitter2@6.4.7: {}
@@ -18181,7 +19980,7 @@ snapshots:
execa@4.1.0:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
get-stream: 5.2.0
human-signals: 1.1.1
is-stream: 2.0.1
@@ -18193,7 +19992,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -18203,21 +20002,9 @@ snapshots:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- execa@8.0.0:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
execa@8.0.1:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
get-stream: 8.0.1
human-signals: 5.0.0
is-stream: 3.0.0
@@ -18249,34 +20036,34 @@ snapshots:
expr-parser@1.0.0: {}
- express@4.21.2:
+ express@4.19.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.3
+ body-parser: 1.20.2
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.7.1
+ cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 2.0.0
+ encodeurl: 1.0.2
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.3.1
+ finalhandler: 1.2.0
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.3
+ merge-descriptors: 1.0.1
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.12
+ path-to-regexp: 0.1.7
proxy-addr: 2.0.7
- qs: 6.13.0
+ qs: 6.11.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.19.0
- serve-static: 1.16.2
+ send: 0.18.0
+ serve-static: 1.15.0
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -18287,7 +20074,7 @@ snapshots:
ext-list@2.2.2:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
ext-name@5.0.0:
dependencies:
@@ -18345,7 +20132,7 @@ snapshots:
dependencies:
fastest-levenshtein: 1.0.16
- fast-uri@3.0.3: {}
+ fast-uri@3.0.1: {}
fastest-levenshtein@1.0.16: {}
@@ -18373,6 +20160,11 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fetch-blob@3.2.0:
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.3
+
fflate@0.8.2: {}
figures@3.2.0:
@@ -18419,10 +20211,10 @@ snapshots:
filter-obj@5.1.0: {}
- finalhandler@1.3.1:
+ finalhandler@1.2.0:
dependencies:
debug: 2.6.9
- encodeurl: 2.0.0
+ encodeurl: 1.0.2
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -18482,27 +20274,29 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.1
keyv: 4.5.4
rimraf: 3.0.2
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.1
keyv: 4.5.4
flat-cache@5.0.0:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.1
keyv: 4.5.4
flat@5.0.2: {}
- flatted@3.3.2: {}
+ flatted@3.3.1: {}
- flow-parser@0.256.0: {}
+ flow-parser@0.244.0: {}
- follow-redirects@1.15.9: {}
+ follow-redirects@1.15.6(debug@4.3.7):
+ optionalDependencies:
+ debug: 4.3.7(supports-color@8.1.1)
for-each@0.3.3:
dependencies:
@@ -18516,12 +20310,14 @@ snapshots:
foreground-child@3.3.0:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
signal-exit: 4.1.0
forever-agent@0.6.1: {}
- form-data@4.0.1:
+ form-data-encoder@2.1.4: {}
+
+ form-data@4.0.0:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -18529,6 +20325,10 @@ snapshots:
format@0.2.2: {}
+ formdata-polyfill@4.0.10:
+ dependencies:
+ fetch-blob: 3.2.0
+
forwarded@0.2.0: {}
fraction.js@4.3.7: {}
@@ -18540,6 +20340,8 @@ snapshots:
inherits: 2.0.4
readable-stream: 2.3.8
+ from@0.1.7: {}
+
fs-constants@1.0.0: {}
fs-extra@11.2.0:
@@ -18574,7 +20376,7 @@ snapshots:
fs-mkdirp-stream@2.0.1:
dependencies:
graceful-fs: 4.2.11
- streamx: 2.21.0
+ streamx: 2.19.0
fs-monkey@1.0.6: {}
@@ -18589,9 +20391,9 @@ snapshots:
function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
@@ -18604,7 +20406,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
+ get-east-asian-width@1.2.0: {}
get-func-name@2.0.2: {}
@@ -18612,8 +20414,8 @@ snapshots:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
- has-proto: 1.1.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
get-package-type@0.1.0: {}
@@ -18631,11 +20433,11 @@ snapshots:
get-stream@4.1.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.0
get-stream@5.2.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.0
get-stream@6.0.1: {}
@@ -18643,7 +20445,7 @@ snapshots:
get-symbol-description@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
@@ -18651,11 +20453,12 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- get-uri@6.0.4:
+ get-uri@6.0.3:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
+ fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
@@ -18712,7 +20515,7 @@ snapshots:
is-glob: 4.0.3
is-negated-glob: 1.0.0
normalize-path: 3.0.0
- streamx: 2.21.0
+ streamx: 2.19.0
glob-to-regexp@0.4.1: {}
@@ -18735,16 +20538,16 @@ snapshots:
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
- package-json-from-dist: 1.0.1
+ package-json-from-dist: 1.0.0
path-scurry: 1.11.1
glob@11.0.0:
dependencies:
foreground-child: 3.3.0
- jackspeak: 4.0.2
+ jackspeak: 4.0.1
minimatch: 10.0.1
minipass: 7.1.2
- package-json-from-dist: 1.0.1
+ package-json-from-dist: 1.0.0
path-scurry: 2.0.0
glob@7.2.3:
@@ -18801,7 +20604,7 @@ snapshots:
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.2.0
+ gopd: 1.0.1
globby@11.1.0:
dependencies:
@@ -18839,7 +20642,23 @@ snapshots:
dependencies:
sparkles: 2.1.0
- gopd@1.2.0: {}
+ gopd@1.0.1:
+ dependencies:
+ get-intrinsic: 1.2.4
+
+ got@13.0.0:
+ dependencies:
+ '@sindresorhus/is': 5.6.0
+ '@szmarczak/http-timer': 5.0.1
+ cacheable-lookup: 7.0.0
+ cacheable-request: 10.2.14
+ decompress-response: 6.0.0
+ form-data-encoder: 2.1.4
+ get-stream: 6.0.1
+ http2-wrapper: 2.2.1
+ lowercase-keys: 3.0.0
+ p-cancelable: 3.0.0
+ responselike: 3.0.0
got@8.3.2:
dependencies:
@@ -18905,12 +20724,12 @@ snapshots:
readable-stream: 1.1.14
streamqueue: 0.0.6
- gulp-postcss@10.0.0(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2):
+ gulp-postcss@10.0.0(jiti@2.3.3)(postcss@8.4.41)(tsx@4.19.2):
dependencies:
fancy-log: 2.0.0
plugin-error: 2.0.1
- postcss: 8.4.49
- postcss-load-config: 5.1.0(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)
+ postcss: 8.4.41
+ postcss-load-config: 5.1.0(jiti@2.3.3)(postcss@8.4.41)(tsx@4.19.2)
vinyl-sourcemaps-apply: 0.2.1
transitivePeerDependencies:
- jiti
@@ -18920,7 +20739,7 @@ snapshots:
gulp-replace@1.1.4:
dependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
'@types/vinyl': 2.0.12
istextorbinary: 3.3.0
replacestream: 4.0.3
@@ -18958,19 +20777,19 @@ snapshots:
has-bigints@1.0.2: {}
+ has-flag@3.0.0: {}
+
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.0
- has-proto@1.1.0:
- dependencies:
- call-bind: 1.0.8
+ has-proto@1.0.3: {}
has-symbol-support-x@1.4.2: {}
- has-symbols@1.1.0: {}
+ has-symbols@1.0.3: {}
has-to-string-tag-x@1.4.1:
dependencies:
@@ -18978,7 +20797,7 @@ snapshots:
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
hasown@2.0.2:
dependencies:
@@ -18988,7 +20807,7 @@ snapshots:
hast-util-to-estree@3.1.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
comma-separated-tokens: 2.0.3
@@ -18996,8 +20815,8 @@ snapshots:
estree-util-attach-comments: 3.0.0
estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
- mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
property-information: 6.5.0
space-separated-tokens: 2.0.2
@@ -19007,21 +20826,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- hast-util-to-jsx-runtime@2.3.2:
+ hast-util-to-jsx-runtime@2.3.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
'@types/hast': 3.0.4
'@types/unist': 3.0.3
comma-separated-tokens: 2.0.3
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
hast-util-whitespace: 3.0.0
- mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
property-information: 6.5.0
space-separated-tokens: 2.0.2
- style-to-object: 1.0.8
+ style-to-object: 1.0.6
unist-util-position: 5.0.0
vfile-message: 4.0.2
transitivePeerDependencies:
@@ -19050,13 +20869,11 @@ snapshots:
highlight.js@11.10.0: {}
- highlightjs-vue@1.0.0: {}
-
history@5.3.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
- hls.js@1.5.17: {}
+ hls.js@1.5.15: {}
hoist-non-react-statics@3.3.2:
dependencies:
@@ -19093,7 +20910,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.37.0
+ terser: 5.31.6
html-minifier@4.0.0:
dependencies:
@@ -19107,7 +20924,7 @@ snapshots:
html-tags@3.3.1: {}
- html-url-attributes@3.0.1: {}
+ html-url-attributes@3.0.0: {}
html-webpack-plugin@5.6.3(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
@@ -19119,7 +20936,7 @@ snapshots:
optionalDependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- html-webpack-plugin@5.6.3(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))):
+ html-webpack-plugin@5.6.3(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -19127,7 +20944,7 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
optional: true
htmlparser2@6.1.0:
@@ -19163,11 +20980,11 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.7(@types/express@4.17.21):
+ http-proxy-middleware@2.0.6(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.15
http-proxy: 1.18.1
@@ -19182,7 +20999,7 @@ snapshots:
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.6(debug@4.3.7)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -19193,10 +21010,15 @@ snapshots:
jsprim: 2.0.2
sshpk: 1.18.0
+ http2-wrapper@2.2.1:
+ dependencies:
+ quick-lru: 5.1.1
+ resolve-alpn: 1.2.1
+
https-proxy-agent@7.0.5:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
@@ -19206,7 +21028,7 @@ snapshots:
human-signals@5.0.0: {}
- husky@9.1.7: {}
+ husky@9.1.5: {}
iconv-lite@0.4.24:
dependencies:
@@ -19218,13 +21040,17 @@ snapshots:
ics@3.8.1:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.7
runes2: 1.1.4
yup: 1.5.0
- icss-utils@5.1.0(postcss@8.4.49):
+ icss-utils@5.1.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.41
+
+ icss-utils@5.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
ieee754@1.2.1: {}
@@ -19235,7 +21061,7 @@ snapshots:
image-size@0.5.5:
optional: true
- immutable@5.0.3: {}
+ immutable@4.3.7: {}
import-fresh@3.3.0:
dependencies:
@@ -19253,9 +21079,9 @@ snapshots:
importx@0.4.4:
dependencies:
- bundle-require: 5.0.0(esbuild@0.23.1)
+ bundle-require: 5.0.0(esbuild@0.21.5)
debug: 4.3.7(supports-color@8.1.1)
- esbuild: 0.23.1
+ esbuild: 0.21.5
jiti: 2.0.0-beta.3
jiti-v1: jiti@1.21.6
pathe: 1.1.2
@@ -19286,13 +21112,12 @@ snapshots:
inline-style-parser@0.1.1: {}
- inline-style-parser@0.2.4: {}
+ inline-style-parser@0.2.3: {}
- inquirer@10.2.2:
+ inquirer@10.1.8:
dependencies:
- '@inquirer/core': 9.2.1
- '@inquirer/prompts': 5.5.0
- '@inquirer/type': 1.5.5
+ '@inquirer/prompts': 5.3.8
+ '@inquirer/type': 1.5.2
'@types/mute-stream': 0.0.4
ansi-escapes: 4.3.2
mute-stream: 1.0.0
@@ -19319,7 +21144,7 @@ snapshots:
inquirer@9.3.2:
dependencies:
- '@inquirer/figures': 1.0.8
+ '@inquirer/figures': 1.0.5
ansi-escapes: 4.3.2
cli-width: 4.1.0
external-editor: 3.1.0
@@ -19375,9 +21200,14 @@ snapshots:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
+ is-arguments@1.1.1:
+ dependencies:
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
+
is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
get-intrinsic: 1.2.4
is-arrayish@0.2.1: {}
@@ -19386,7 +21216,7 @@ snapshots:
dependencies:
has-tostringtag: 1.0.2
- is-bigint@1.1.0:
+ is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
@@ -19394,9 +21224,9 @@ snapshots:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.2.0:
+ is-boolean-object@1.1.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
is-buffer@1.1.6: {}
@@ -19407,6 +21237,10 @@ snapshots:
is-callable@1.2.7: {}
+ is-ci@3.0.1:
+ dependencies:
+ ci-info: 3.9.0
+
is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -19433,9 +21267,9 @@ snapshots:
is-extglob@2.1.1: {}
- is-finalizationregistry@1.1.0:
+ is-finalizationregistry@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
is-fullwidth-code-point@3.0.0: {}
@@ -19443,7 +21277,7 @@ snapshots:
is-fullwidth-code-point@5.0.0:
dependencies:
- get-east-asian-width: 1.3.0
+ get-east-asian-width: 1.2.0
is-generator-fn@2.1.0: {}
@@ -19465,7 +21299,7 @@ snapshots:
is-hexadecimal@2.0.1: {}
- is-in-ci@1.0.0: {}
+ is-in-ci@0.1.0: {}
is-inside-container@1.0.0:
dependencies:
@@ -19501,9 +21335,8 @@ snapshots:
is-npm@6.0.0: {}
- is-number-object@1.1.0:
+ is-number-object@1.0.7:
dependencies:
- call-bind: 1.0.8
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -19536,14 +21369,16 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
+
+ is-reference@3.0.2:
+ dependencies:
+ '@types/estree': 1.0.5
- is-regex@1.2.0:
+ is-regex@1.1.4:
dependencies:
- call-bind: 1.0.8
- gopd: 1.2.0
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
- hasown: 2.0.2
is-relative@1.0.0:
dependencies:
@@ -19555,7 +21390,7 @@ snapshots:
is-shared-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
is-ssh@1.4.0:
dependencies:
@@ -19567,16 +21402,13 @@ snapshots:
is-stream@3.0.0: {}
- is-string@1.1.0:
+ is-string@1.0.7:
dependencies:
- call-bind: 1.0.8
has-tostringtag: 1.0.2
- is-symbol@1.1.0:
+ is-symbol@1.0.4:
dependencies:
- call-bind: 1.0.8
- has-symbols: 1.1.0
- safe-regex-test: 1.0.3
+ has-symbols: 1.0.3
is-text-path@2.0.0:
dependencies:
@@ -19584,7 +21416,7 @@ snapshots:
is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.15
is-typedarray@1.0.0: {}
@@ -19596,7 +21428,7 @@ snapshots:
is-unicode-supported@1.3.0: {}
- is-unicode-supported@2.1.0: {}
+ is-unicode-supported@2.0.0: {}
is-valid-glob@1.0.0: {}
@@ -19604,11 +21436,11 @@ snapshots:
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
is-weakset@2.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
get-intrinsic: 1.2.4
is-what@3.14.1: {}
@@ -19648,7 +21480,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -19658,7 +21490,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -19682,7 +21514,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -19702,12 +21534,12 @@ snapshots:
has-to-string-tag-x: 1.4.1
is-object: 1.0.2
- iterator.prototype@1.1.3:
+ iterator.prototype@1.1.2:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
- has-symbols: 1.1.0
- reflect.getprototypeof: 1.0.7
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
j-component@1.4.9:
@@ -19728,9 +21560,11 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jackspeak@4.0.2:
+ jackspeak@4.0.1:
dependencies:
'@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
jake@10.9.2:
dependencies:
@@ -19758,7 +21592,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -19778,16 +21612,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@22.10.1):
+ jest-cli@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)):
dependencies:
- '@jest/core': 29.7.0
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.10.1)
+ create-jest: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@22.10.1)
+ jest-config: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -19797,7 +21631,7 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@22.10.1):
+ jest-config@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)):
dependencies:
'@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
@@ -19822,7 +21656,8 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
+ ts-node: 10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -19851,7 +21686,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -19861,7 +21696,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -19887,7 +21722,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.26.0
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -19900,7 +21735,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -19925,7 +21760,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
resolve: 1.22.8
- resolve.exports: 2.0.3
+ resolve.exports: 2.0.2
slash: 3.0.0
jest-runner@29.7.0:
@@ -19935,7 +21770,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -19963,9 +21798,9 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
- cjs-module-lexer: 1.4.1
+ cjs-module-lexer: 1.4.0
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -19984,10 +21819,10 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
'@babel/core': 7.26.0
- '@babel/generator': 7.26.3
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.3
+ '@babel/generator': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
@@ -20009,7 +21844,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -20028,7 +21863,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -20043,17 +21878,17 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 22.10.1
+ '@types/node': 20.16.1
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@22.10.1):
+ jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)):
dependencies:
- '@jest/core': 29.7.0
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@22.10.1)
+ jest-cli: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -20064,6 +21899,8 @@ snapshots:
jiti@2.0.0-beta.3: {}
+ jiti@2.3.3: {}
+
jju@1.4.0: {}
joi@17.13.3:
@@ -20093,25 +21930,50 @@ snapshots:
jsbn@1.1.0: {}
- jscodeshift@17.1.1(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
- dependencies:
- '@babel/core': 7.26.0
- '@babel/parser': 7.26.3
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-flow': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
- '@babel/register': 7.25.9(@babel/core@7.26.0)
- flow-parser: 0.256.0
+ jscodeshift@17.0.0(@babel/preset-env@7.26.0(@babel/core@7.25.2)):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.4
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/register': 7.24.6(@babel/core@7.25.2)
+ flow-parser: 0.244.0
graceful-fs: 4.2.11
micromatch: 4.0.8
neo-async: 2.6.2
- picocolors: 1.1.1
+ picocolors: 1.0.1
recast: 0.23.9
- tmp: 0.2.3
+ temp: 0.9.4
+ write-file-atomic: 5.0.1
+ optionalDependencies:
+ '@babel/preset-env': 7.26.0(@babel/core@7.25.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ jscodeshift@17.0.0(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.4
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/register': 7.24.6(@babel/core@7.25.2)
+ flow-parser: 0.244.0
+ graceful-fs: 4.2.11
+ micromatch: 4.0.8
+ neo-async: 2.6.2
+ picocolors: 1.0.1
+ recast: 0.23.9
+ temp: 0.9.4
write-file-atomic: 5.0.1
optionalDependencies:
'@babel/preset-env': 7.26.0(@babel/core@7.26.0)
@@ -20125,13 +21987,13 @@ snapshots:
cssstyle: 4.1.0
data-urls: 5.0.0
decimal.js: 10.4.3
- form-data: 4.0.1
+ form-data: 4.0.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.16
- parse5: 7.2.1
+ nwsapi: 2.2.12
+ parse5: 7.1.2
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -20150,6 +22012,8 @@ snapshots:
jsesc@0.5.0: {}
+ jsesc@2.5.2: {}
+
jsesc@3.0.2: {}
json-buffer@3.0.0: {}
@@ -20176,7 +22040,7 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.14.0
+ acorn: 8.12.1
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.6.3
@@ -20235,7 +22099,7 @@ snapshots:
kolorist@1.8.0: {}
- ky@1.7.2: {}
+ ky@1.7.1: {}
language-subtag-registry@0.3.23: {}
@@ -20262,9 +22126,9 @@ snapshots:
lead@4.0.0: {}
- less-loader@12.2.0(less@3.13.1)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
+ less-loader@12.2.0(less@4.2.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
- less: 3.13.1
+ less: 4.2.0
optionalDependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
@@ -20281,6 +22145,20 @@ snapshots:
native-request: 1.1.2
source-map: 0.6.1
+ less@4.2.0:
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.8.1
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.11
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 3.3.1
+ source-map: 0.6.1
+
leven@3.1.0: {}
levn@0.4.1:
@@ -20298,52 +22176,52 @@ snapshots:
rechoir: 0.8.0
resolve: 1.22.8
- lightningcss-darwin-arm64@1.28.2:
+ lightningcss-darwin-arm64@1.26.0:
optional: true
- lightningcss-darwin-x64@1.28.2:
+ lightningcss-darwin-x64@1.26.0:
optional: true
- lightningcss-freebsd-x64@1.28.2:
+ lightningcss-freebsd-x64@1.26.0:
optional: true
- lightningcss-linux-arm-gnueabihf@1.28.2:
+ lightningcss-linux-arm-gnueabihf@1.26.0:
optional: true
- lightningcss-linux-arm64-gnu@1.28.2:
+ lightningcss-linux-arm64-gnu@1.26.0:
optional: true
- lightningcss-linux-arm64-musl@1.28.2:
+ lightningcss-linux-arm64-musl@1.26.0:
optional: true
- lightningcss-linux-x64-gnu@1.28.2:
+ lightningcss-linux-x64-gnu@1.26.0:
optional: true
- lightningcss-linux-x64-musl@1.28.2:
+ lightningcss-linux-x64-musl@1.26.0:
optional: true
- lightningcss-win32-arm64-msvc@1.28.2:
+ lightningcss-win32-arm64-msvc@1.26.0:
optional: true
- lightningcss-win32-x64-msvc@1.28.2:
+ lightningcss-win32-x64-msvc@1.26.0:
optional: true
- lightningcss@1.28.2:
+ lightningcss@1.26.0:
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.28.2
- lightningcss-darwin-x64: 1.28.2
- lightningcss-freebsd-x64: 1.28.2
- lightningcss-linux-arm-gnueabihf: 1.28.2
- lightningcss-linux-arm64-gnu: 1.28.2
- lightningcss-linux-arm64-musl: 1.28.2
- lightningcss-linux-x64-gnu: 1.28.2
- lightningcss-linux-x64-musl: 1.28.2
- lightningcss-win32-arm64-msvc: 1.28.2
- lightningcss-win32-x64-msvc: 1.28.2
-
- lilconfig@3.1.3: {}
+ lightningcss-darwin-arm64: 1.26.0
+ lightningcss-darwin-x64: 1.26.0
+ lightningcss-freebsd-x64: 1.26.0
+ lightningcss-linux-arm-gnueabihf: 1.26.0
+ lightningcss-linux-arm64-gnu: 1.26.0
+ lightningcss-linux-arm64-musl: 1.26.0
+ lightningcss-linux-x64-gnu: 1.26.0
+ lightningcss-linux-x64-musl: 1.26.0
+ lightningcss-win32-arm64-msvc: 1.26.0
+ lightningcss-win32-x64-msvc: 1.26.0
+
+ lilconfig@3.1.2: {}
lines-and-columns@1.2.4: {}
@@ -20353,18 +22231,18 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- lint-staged@15.2.10:
+ lint-staged@15.2.9:
dependencies:
chalk: 5.3.0
commander: 12.1.0
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
execa: 8.0.1
- lilconfig: 3.1.3
- listr2: 8.2.5
+ lilconfig: 3.1.2
+ listr2: 8.2.4
micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.5.1
+ yaml: 2.5.0
transitivePeerDependencies:
- supports-color
@@ -20381,7 +22259,7 @@ snapshots:
optionalDependencies:
enquirer: 2.4.1
- listr2@8.2.5:
+ listr2@8.2.4:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -20408,6 +22286,11 @@ snapshots:
loader-utils@3.3.1: {}
+ local-pkg@0.5.0:
+ dependencies:
+ mlly: 1.7.1
+ pkg-types: 1.2.0
+
local-pkg@0.5.1:
dependencies:
mlly: 1.7.3
@@ -20513,6 +22396,10 @@ snapshots:
dependencies:
get-func-name: 2.0.2
+ loupe@3.1.1:
+ dependencies:
+ get-func-name: 2.0.2
+
loupe@3.1.2: {}
lower-case@1.1.4: {}
@@ -20527,6 +22414,8 @@ snapshots:
lowercase-keys@2.0.0: {}
+ lowercase-keys@3.0.0: {}
+
lowlight@1.20.0:
dependencies:
fault: 1.0.4
@@ -20534,7 +22423,7 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@11.0.2: {}
+ lru-cache@11.0.0: {}
lru-cache@4.1.5:
dependencies:
@@ -20559,15 +22448,19 @@ snapshots:
macos-release@3.3.0: {}
+ magic-string@0.30.11:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
magic-string@0.30.14:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- magicast@0.3.5:
+ magicast@0.3.4:
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- source-map-js: 1.2.1
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
+ source-map-js: 1.2.0
make-dir@1.3.0:
dependencies:
@@ -20596,6 +22489,8 @@ snapshots:
map-stream@0.0.7: {}
+ map-stream@0.1.0: {}
+
markdown-extensions@2.0.0: {}
markdown-it@14.1.0:
@@ -20607,9 +22502,9 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- markdown-table@3.0.4: {}
+ markdown-table@3.0.3: {}
- marked@14.1.4: {}
+ marked@14.1.1: {}
material-colors@1.2.6: {}
@@ -20626,8 +22521,8 @@ snapshots:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
unist-util-visit-parents: 6.0.1
@@ -20651,19 +22546,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-from-markdown@2.0.2:
+ mdast-util-from-markdown@2.0.1:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
- micromark: 4.0.1
- micromark-util-decode-numeric-character-reference: 2.0.2
- micromark-util-decode-string: 2.0.1
- micromark-util-normalize-identifier: 2.0.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark: 4.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-decode-string: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
unist-util-stringify-position: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -20674,23 +22569,23 @@ snapshots:
ccount: 2.0.1
devlop: 1.1.0
mdast-util-find-and-replace: 3.0.1
- micromark-util-character: 2.1.1
+ micromark-util-character: 2.1.0
mdast-util-gfm-footnote@2.0.0:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
- micromark-util-normalize-identifier: 2.0.1
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
- supports-color
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -20698,9 +22593,9 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- markdown-table: 3.0.4
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ markdown-table: 3.0.3
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -20708,35 +22603,35 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.1
mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
mdast-util-gfm-task-list-item: 2.0.0
- mdast-util-to-markdown: 2.1.2
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-expression@2.0.1:
+ mdast-util-mdx-expression@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
- mdast-util-mdx-jsx@3.1.3:
+ mdast-util-mdx-jsx@3.1.2:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
@@ -20744,10 +22639,11 @@ snapshots:
'@types/unist': 3.0.3
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
+ unist-util-remove-position: 5.0.0
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
transitivePeerDependencies:
@@ -20755,11 +22651,11 @@ snapshots:
mdast-util-mdx@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.2
- mdast-util-mdx-expression: 2.0.1
- mdast-util-mdx-jsx: 3.1.3
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-mdx-expression: 2.0.0
+ mdast-util-mdx-jsx: 3.1.2
mdast-util-mdxjs-esm: 2.0.1
- mdast-util-to-markdown: 2.1.2
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -20769,8 +22665,8 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.2
+ mdast-util-from-markdown: 2.0.1
+ mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -20785,21 +22681,20 @@ snapshots:
'@types/mdast': 4.0.4
'@ungap/structured-clone': 1.2.0
devlop: 1.1.0
- micromark-util-sanitize-uri: 2.0.1
+ micromark-util-sanitize-uri: 2.0.0
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.3
+ vfile: 6.0.2
- mdast-util-to-markdown@2.1.2:
+ mdast-util-to-markdown@2.1.0:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
- micromark-util-classify-character: 2.0.1
- micromark-util-decode-string: 2.0.1
+ micromark-util-decode-string: 2.0.0
unist-util-visit: 5.0.0
zwitch: 2.0.4
@@ -20831,7 +22726,7 @@ snapshots:
meow@13.2.0: {}
- merge-descriptors@1.0.3: {}
+ merge-descriptors@1.0.1: {}
merge-stream@2.0.0: {}
@@ -20839,81 +22734,81 @@ snapshots:
methods@1.1.2: {}
- micromark-core-commonmark@2.0.2:
+ micromark-core-commonmark@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-factory-destination: 2.0.1
- micromark-factory-label: 2.0.1
- micromark-factory-space: 2.0.1
- micromark-factory-title: 2.0.1
- micromark-factory-whitespace: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-chunked: 2.0.1
- micromark-util-classify-character: 2.0.1
- micromark-util-html-tag-name: 2.0.1
- micromark-util-normalize-identifier: 2.0.1
- micromark-util-resolve-all: 2.0.1
- micromark-util-subtokenize: 2.0.3
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
-
- micromark-extension-directive@3.0.2:
+ micromark-factory-destination: 2.0.0
+ micromark-factory-label: 2.0.0
+ micromark-factory-space: 2.0.0
+ micromark-factory-title: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-html-tag-name: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
+
+ micromark-extension-directive@3.0.1:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.1
- micromark-factory-whitespace: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-factory-whitespace: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
parse-entities: 4.0.1
micromark-extension-gfm-autolink-literal@2.1.0:
dependencies:
- micromark-util-character: 2.1.1
- micromark-util-sanitize-uri: 2.0.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-gfm-footnote@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-core-commonmark: 2.0.2
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-normalize-identifier: 2.0.1
- micromark-util-sanitize-uri: 2.0.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-gfm-strikethrough@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-util-chunked: 2.0.1
- micromark-util-classify-character: 2.0.1
- micromark-util-resolve-all: 2.0.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-chunked: 2.0.0
+ micromark-util-classify-character: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-gfm-table@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-gfm-tagfilter@2.0.0:
dependencies:
- micromark-util-types: 2.0.1
+ micromark-util-types: 2.0.0
micromark-extension-gfm-task-list-item@2.1.0:
dependencies:
devlop: 1.1.0
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-gfm@3.0.0:
dependencies:
@@ -20923,202 +22818,200 @@ snapshots:
micromark-extension-gfm-table: 2.1.0
micromark-extension-gfm-tagfilter: 2.0.0
micromark-extension-gfm-task-list-item: 2.1.0
- micromark-util-combine-extensions: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
micromark-extension-mdx-expression@3.0.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
devlop: 1.1.0
- micromark-factory-mdx-expression: 2.0.2
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
+ micromark-factory-mdx-expression: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-extension-mdx-jsx@3.0.1:
+ micromark-extension-mdx-jsx@3.0.0:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
devlop: 1.1.0
estree-util-is-identifier-name: 3.0.0
- micromark-factory-mdx-expression: 2.0.2
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-mdx-expression: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
vfile-message: 4.0.2
micromark-extension-mdx-md@2.0.0:
dependencies:
- micromark-util-types: 2.0.1
+ micromark-util-types: 2.0.0
micromark-extension-mdxjs-esm@3.0.0:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
devlop: 1.1.0
- micromark-core-commonmark: 2.0.2
- micromark-util-character: 2.1.1
+ micromark-core-commonmark: 2.0.1
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
micromark-extension-mdx-expression: 3.0.0
- micromark-extension-mdx-jsx: 3.0.1
+ micromark-extension-mdx-jsx: 3.0.0
micromark-extension-mdx-md: 2.0.0
micromark-extension-mdxjs-esm: 3.0.0
- micromark-util-combine-extensions: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-factory-destination@2.0.1:
+ micromark-factory-destination@2.0.0:
dependencies:
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-factory-label@2.0.1:
+ micromark-factory-label@2.0.0:
dependencies:
devlop: 1.1.0
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-factory-mdx-expression@2.0.2:
+ micromark-factory-mdx-expression@2.0.1:
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
devlop: 1.1.0
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
+ micromark-util-character: 2.1.0
micromark-util-events-to-acorn: 2.0.2
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
unist-util-position-from-estree: 2.0.0
vfile-message: 4.0.2
- micromark-factory-space@2.0.1:
+ micromark-factory-space@2.0.0:
dependencies:
- micromark-util-character: 2.1.1
- micromark-util-types: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-types: 2.0.0
- micromark-factory-title@2.0.1:
+ micromark-factory-title@2.0.0:
dependencies:
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-factory-whitespace@2.0.1:
+ micromark-factory-whitespace@2.0.0:
dependencies:
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-util-character@2.1.1:
+ micromark-util-character@2.1.0:
dependencies:
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-util-chunked@2.0.1:
+ micromark-util-chunked@2.0.0:
dependencies:
- micromark-util-symbol: 2.0.1
+ micromark-util-symbol: 2.0.0
- micromark-util-classify-character@2.0.1:
+ micromark-util-classify-character@2.0.0:
dependencies:
- micromark-util-character: 2.1.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-util-combine-extensions@2.0.1:
+ micromark-util-combine-extensions@2.0.0:
dependencies:
- micromark-util-chunked: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-chunked: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-util-decode-numeric-character-reference@2.0.2:
+ micromark-util-decode-numeric-character-reference@2.0.1:
dependencies:
- micromark-util-symbol: 2.0.1
+ micromark-util-symbol: 2.0.0
- micromark-util-decode-string@2.0.1:
+ micromark-util-decode-string@2.0.0:
dependencies:
decode-named-character-reference: 1.0.2
- micromark-util-character: 2.1.1
- micromark-util-decode-numeric-character-reference: 2.0.2
- micromark-util-symbol: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-symbol: 2.0.0
- micromark-util-encode@2.0.1: {}
+ micromark-util-encode@2.0.0: {}
micromark-util-events-to-acorn@2.0.2:
dependencies:
'@types/acorn': 4.0.6
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.5
'@types/unist': 3.0.3
devlop: 1.1.0
estree-util-visit: 2.0.0
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
vfile-message: 4.0.2
- micromark-util-html-tag-name@2.0.1: {}
+ micromark-util-html-tag-name@2.0.0: {}
- micromark-util-normalize-identifier@2.0.1:
+ micromark-util-normalize-identifier@2.0.0:
dependencies:
- micromark-util-symbol: 2.0.1
+ micromark-util-symbol: 2.0.0
- micromark-util-resolve-all@2.0.1:
+ micromark-util-resolve-all@2.0.0:
dependencies:
- micromark-util-types: 2.0.1
+ micromark-util-types: 2.0.0
- micromark-util-sanitize-uri@2.0.1:
+ micromark-util-sanitize-uri@2.0.0:
dependencies:
- micromark-util-character: 2.1.1
- micromark-util-encode: 2.0.1
- micromark-util-symbol: 2.0.1
+ micromark-util-character: 2.1.0
+ micromark-util-encode: 2.0.0
+ micromark-util-symbol: 2.0.0
- micromark-util-subtokenize@2.0.3:
+ micromark-util-subtokenize@2.0.1:
dependencies:
devlop: 1.1.0
- micromark-util-chunked: 2.0.1
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-util-chunked: 2.0.0
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
- micromark-util-symbol@2.0.1: {}
+ micromark-util-symbol@2.0.0: {}
- micromark-util-types@2.0.1: {}
+ micromark-util-types@2.0.0: {}
micromark@2.11.4:
dependencies:
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
- micromark@4.0.1:
+ micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-core-commonmark: 2.0.2
- micromark-factory-space: 2.0.1
- micromark-util-character: 2.1.1
- micromark-util-chunked: 2.0.1
- micromark-util-combine-extensions: 2.0.1
- micromark-util-decode-numeric-character-reference: 2.0.2
- micromark-util-encode: 2.0.1
- micromark-util-normalize-identifier: 2.0.1
- micromark-util-resolve-all: 2.0.1
- micromark-util-sanitize-uri: 2.0.1
- micromark-util-subtokenize: 2.0.3
- micromark-util-symbol: 2.0.1
- micromark-util-types: 2.0.1
+ micromark-core-commonmark: 2.0.1
+ micromark-factory-space: 2.0.0
+ micromark-util-character: 2.1.0
+ micromark-util-chunked: 2.0.0
+ micromark-util-combine-extensions: 2.0.0
+ micromark-util-decode-numeric-character-reference: 2.0.1
+ micromark-util-encode: 2.0.0
+ micromark-util-normalize-identifier: 2.0.0
+ micromark-util-resolve-all: 2.0.0
+ micromark-util-sanitize-uri: 2.0.0
+ micromark-util-subtokenize: 2.0.1
+ micromark-util-symbol: 2.0.0
+ micromark-util-types: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -21129,6 +23022,8 @@ snapshots:
mime-db@1.52.0: {}
+ mime-db@1.53.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -21145,6 +23040,10 @@ snapshots:
mimic-response@1.0.1: {}
+ mimic-response@3.1.0: {}
+
+ mimic-response@4.0.0: {}
+
min-indent@1.0.1: {}
mini-css-extract-plugin@2.9.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
@@ -21212,8 +23111,19 @@ snapshots:
minipass: 3.3.6
yallist: 4.0.0
+ mkdirp@0.5.6:
+ dependencies:
+ minimist: 1.2.8
+
mkdirp@1.0.4: {}
+ mlly@1.7.1:
+ dependencies:
+ acorn: 8.12.1
+ pathe: 1.1.2
+ pkg-types: 1.2.0
+ ufo: 1.5.4
+
mlly@1.7.3:
dependencies:
acorn: 8.14.0
@@ -21223,15 +23133,15 @@ snapshots:
mobile-detect@1.4.5: {}
- mobx-react-lite@4.0.7(mobx@6.13.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ mobx-react-lite@4.0.7(mobx@6.13.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- mobx: 6.13.5
+ mobx: 6.13.1
react: 18.3.1
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- mobx@6.13.5: {}
+ mobx@6.13.1: {}
moo-color@1.0.3:
dependencies:
@@ -21241,6 +23151,8 @@ snapshots:
ms@2.0.0: {}
+ ms@2.1.2: {}
+
ms@2.1.3: {}
muggle-string@0.4.1: {}
@@ -21269,7 +23181,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.8: {}
+ nanoid@3.3.7: {}
native-request@1.1.2:
optional: true
@@ -21278,9 +23190,13 @@ snapshots:
natural-orderby@5.0.0: {}
- negotiator@0.6.3: {}
+ needle@3.3.1:
+ dependencies:
+ iconv-lite: 0.6.3
+ sax: 1.4.1
+ optional: true
- negotiator@0.6.4: {}
+ negotiator@0.6.3: {}
neo-async@2.6.2: {}
@@ -21299,11 +23215,16 @@ snapshots:
lower-case: 2.0.2
tslib: 2.8.1
- node-addon-api@7.1.1:
- optional: true
+ node-domexception@1.0.0: {}
node-fetch-native@1.6.4: {}
+ node-fetch@3.3.2:
+ dependencies:
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
+
node-forge@1.3.1: {}
node-int64@0.4.0: {}
@@ -21329,6 +23250,8 @@ snapshots:
normalize-url@4.5.1: {}
+ normalize-url@8.0.1: {}
+
now-and-later@3.0.0:
dependencies:
once: 1.4.0
@@ -21354,7 +23277,7 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nwsapi@2.2.16: {}
+ nwsapi@2.2.12: {}
nypm@0.3.12:
dependencies:
@@ -21362,20 +23285,25 @@ snapshots:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.2.1
+ pkg-types: 1.2.0
ufo: 1.5.4
object-assign@4.1.1: {}
- object-inspect@1.13.3: {}
+ object-inspect@1.13.2: {}
+
+ object-is@1.1.6:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: 1.2.1
object-keys@1.1.1: {}
object.assign@4.1.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
object-keys: 1.1.1
object.defaults@1.1.0:
@@ -21387,22 +23315,22 @@ snapshots:
object.entries@1.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
object.pick@1.3.0:
dependencies:
@@ -21410,7 +23338,7 @@ snapshots:
object.values@1.2.0:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
@@ -21474,13 +23402,13 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@8.1.0:
+ ora@8.0.1:
dependencies:
chalk: 5.3.0
- cli-cursor: 5.0.0
+ cli-cursor: 4.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
- is-unicode-supported: 2.1.0
+ is-unicode-supported: 2.0.0
log-symbols: 6.0.0
stdin-discarder: 0.2.2
string-width: 7.2.0
@@ -21499,6 +23427,8 @@ snapshots:
p-cancelable@1.1.0: {}
+ p-cancelable@3.0.0: {}
+
p-event@2.3.1:
dependencies:
p-timeout: 2.0.1
@@ -21562,8 +23492,8 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.1
- debug: 4.3.7(supports-color@8.1.1)
- get-uri: 6.0.4
+ debug: 4.3.6
+ get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
pac-resolver: 7.0.1
@@ -21576,12 +23506,12 @@ snapshots:
degenerator: 5.0.1
netmask: 2.0.2
- package-json-from-dist@1.0.1: {}
+ package-json-from-dist@1.0.0: {}
package-json@10.0.1:
dependencies:
- ky: 1.7.2
- registry-auth-token: 5.0.3
+ ky: 1.7.1
+ registry-auth-token: 5.0.2
registry-url: 6.0.1
semver: 7.6.3
@@ -21638,11 +23568,13 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
+ '@babel/code-frame': 7.26.0
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ parse-node-version@1.0.1: {}
+
parse-passwd@1.0.0: {}
parse-path@7.0.0:
@@ -21661,7 +23593,7 @@ snapshots:
parse5@6.0.1: {}
- parse5@7.2.1:
+ parse5@7.1.2:
dependencies:
entities: 4.5.0
@@ -21708,10 +23640,10 @@ snapshots:
path-scurry@2.0.0:
dependencies:
- lru-cache: 11.0.2
+ lru-cache: 11.0.0
minipass: 7.1.2
- path-to-regexp@0.1.12: {}
+ path-to-regexp@0.1.7: {}
path-to-regexp@6.3.0: {}
@@ -21725,14 +23657,26 @@ snapshots:
pathval@2.0.0: {}
+ pause-stream@0.0.11:
+ dependencies:
+ through: 2.3.8
+
pend@1.2.0: {}
perfect-debounce@1.0.0: {}
performance-now@2.1.0: {}
+ periscopic@3.1.0:
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 3.0.3
+ is-reference: 3.0.2
+
picocolors@0.2.1: {}
+ picocolors@1.0.1: {}
+
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -21763,6 +23707,12 @@ snapshots:
dependencies:
find-up: 4.1.0
+ pkg-types@1.2.0:
+ dependencies:
+ confbox: 0.1.7
+ mlly: 1.7.1
+ pathe: 1.1.2
+
pkg-types@1.2.1:
dependencies:
confbox: 0.1.8
@@ -21786,244 +23736,300 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-calc@9.0.1(postcss@8.4.49):
+ postcss-calc@9.0.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@6.1.0(postcss@8.4.49):
+ postcss-colormin@6.1.0(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-convert-values@6.1.0(postcss@8.4.49):
+ postcss-convert-values@6.1.0(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-css-variables@0.19.0(postcss@8.4.49):
+ postcss-css-variables@0.19.0(postcss@8.4.41):
dependencies:
balanced-match: 1.0.2
escape-string-regexp: 1.0.5
extend: 3.0.2
- postcss: 8.4.49
+ postcss: 8.4.41
- postcss-discard-comments@6.0.2(postcss@8.4.49):
+ postcss-css-variables@0.19.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ balanced-match: 1.0.2
+ escape-string-regexp: 1.0.5
+ extend: 3.0.2
+ postcss: 8.4.47
- postcss-discard-duplicates@6.0.3(postcss@8.4.49):
+ postcss-discard-comments@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-discard-empty@6.0.3(postcss@8.4.49):
+ postcss-discard-duplicates@6.0.3(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-discard-overridden@6.0.2(postcss@8.4.49):
+ postcss-discard-empty@6.0.3(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-html-transform@4.0.8-beta.1(postcss@8.4.49):
+ postcss-discard-overridden@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-import@16.1.0(postcss@8.4.49):
+ postcss-html-transform@4.0.8-beta.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
+
+ postcss-import@16.1.0(postcss@8.4.41):
+ dependencies:
+ postcss: 8.4.41
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.8
+
+ postcss-import@16.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-load-config@5.1.0(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2):
+ postcss-load-config@5.1.0(jiti@2.3.3)(postcss@8.4.41)(tsx@4.19.2):
dependencies:
- lilconfig: 3.1.3
- yaml: 2.6.1
+ lilconfig: 3.1.2
+ yaml: 2.5.0
optionalDependencies:
- jiti: 1.21.6
- postcss: 8.4.49
+ jiti: 2.3.3
+ postcss: 8.4.41
tsx: 4.19.2
- postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1):
+ postcss-load-config@5.1.0(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2):
dependencies:
- lilconfig: 3.1.3
+ lilconfig: 3.1.2
+ yaml: 2.5.0
optionalDependencies:
- jiti: 1.21.6
+ jiti: 2.3.3
+ postcss: 8.4.47
+ tsx: 4.19.2
+
+ postcss-load-config@6.0.1(jiti@2.3.3)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.5.0):
+ dependencies:
+ lilconfig: 3.1.2
+ optionalDependencies:
+ jiti: 2.3.3
postcss: 8.4.49
tsx: 4.19.2
- yaml: 2.6.1
+ yaml: 2.5.0
- postcss-loader@8.1.1(postcss@8.4.49)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.7.2)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
cosmiconfig: 9.0.0(typescript@5.7.2)
jiti: 1.21.6
- postcss: 8.4.49
+ postcss: 8.4.47
semver: 7.6.3
optionalDependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
transitivePeerDependencies:
- typescript
- postcss-merge-longhand@6.0.5(postcss@8.4.49):
+ postcss-merge-longhand@6.0.5(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+ postcss-value-parser: 4.2.0
+ stylehacks: 6.1.1(postcss@8.4.47)
+
+ postcss-merge-rules@6.1.1(postcss@8.4.47):
+ dependencies:
+ browserslist: 4.24.2
+ caniuse-api: 3.0.0
+ cssnano-utils: 4.0.2(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
+
+ postcss-minify-font-values@6.1.0(postcss@8.4.47):
+ dependencies:
+ postcss: 8.4.47
+ postcss-value-parser: 4.2.0
+
+ postcss-minify-gradients@6.0.3(postcss@8.4.47):
+ dependencies:
+ colord: 2.9.3
+ cssnano-utils: 4.0.2(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-value-parser: 4.2.0
+
+ postcss-minify-params@6.1.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ browserslist: 4.24.2
+ cssnano-utils: 4.0.2(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- stylehacks: 6.1.1(postcss@8.4.49)
- postcss-merge-rules@6.1.1(postcss@8.4.49):
+ postcss-minify-selectors@6.0.4(postcss@8.4.47):
dependencies:
- browserslist: 4.24.2
- caniuse-api: 3.0.0
- cssnano-utils: 4.0.2(postcss@8.4.49)
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@6.1.0(postcss@8.4.49):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.49
- postcss-value-parser: 4.2.0
+ postcss: 8.4.41
- postcss-minify-gradients@6.0.3(postcss@8.4.49):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.47):
dependencies:
- colord: 2.9.3
- cssnano-utils: 4.0.2(postcss@8.4.49)
- postcss: 8.4.49
+ postcss: 8.4.47
+
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.41):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.41)
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-minify-params@6.1.0(postcss@8.4.49):
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.47):
dependencies:
- browserslist: 4.24.2
- cssnano-utils: 4.0.2(postcss@8.4.49)
- postcss: 8.4.49
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-minify-selectors@6.0.4(postcss@8.4.49):
+ postcss-modules-scope@3.2.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.41
postcss-selector-parser: 6.1.2
- postcss-modules-extract-imports@3.1.0(postcss@8.4.49):
+ postcss-modules-scope@3.2.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
+ postcss-selector-parser: 6.1.2
- postcss-modules-local-by-default@4.1.0(postcss@8.4.49):
+ postcss-modules-values@4.0.0(postcss@8.4.41):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.49)
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
- postcss-value-parser: 4.2.0
+ icss-utils: 5.1.0(postcss@8.4.41)
+ postcss: 8.4.41
- postcss-modules-scope@3.2.1(postcss@8.4.49):
+ postcss-modules-values@4.0.0(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ icss-utils: 5.1.0(postcss@8.4.47)
+ postcss: 8.4.47
- postcss-modules-values@4.0.0(postcss@8.4.49):
+ postcss-modules@6.0.0(postcss@8.4.41):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.49)
- postcss: 8.4.49
+ generic-names: 4.0.0
+ icss-utils: 5.1.0(postcss@8.4.41)
+ lodash.camelcase: 4.3.0
+ postcss: 8.4.41
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.41)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.41)
+ postcss-modules-scope: 3.2.0(postcss@8.4.41)
+ postcss-modules-values: 4.0.0(postcss@8.4.41)
+ string-hash: 1.1.3
- postcss-modules@6.0.1(postcss@8.4.49):
+ postcss-modules@6.0.0(postcss@8.4.47):
dependencies:
generic-names: 4.0.0
- icss-utils: 5.1.0(postcss@8.4.49)
+ icss-utils: 5.1.0(postcss@8.4.47)
lodash.camelcase: 4.3.0
- postcss: 8.4.49
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.49)
- postcss-modules-local-by-default: 4.1.0(postcss@8.4.49)
- postcss-modules-scope: 3.2.1(postcss@8.4.49)
- postcss-modules-values: 4.0.0(postcss@8.4.49)
+ postcss: 8.4.47
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.47)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.47)
+ postcss-modules-scope: 3.2.0(postcss@8.4.47)
+ postcss-modules-values: 4.0.0(postcss@8.4.47)
string-hash: 1.1.3
- postcss-normalize-charset@6.0.2(postcss@8.4.49):
+ postcss-normalize-charset@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-normalize-display-values@6.0.2(postcss@8.4.49):
+ postcss-normalize-display-values@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-positions@6.0.2(postcss@8.4.49):
+ postcss-normalize-positions@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@6.0.2(postcss@8.4.49):
+ postcss-normalize-repeat-style@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-string@6.0.2(postcss@8.4.49):
+ postcss-normalize-string@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@6.0.2(postcss@8.4.49):
+ postcss-normalize-timing-functions@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@6.1.0(postcss@8.4.49):
+ postcss-normalize-unicode@6.1.0(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-url@6.0.2(postcss@8.4.49):
+ postcss-normalize-url@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@6.0.2(postcss@8.4.49):
+ postcss-normalize-whitespace@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-ordered-values@6.0.2(postcss@8.4.49):
+ postcss-ordered-values@6.0.2(postcss@8.4.47):
dependencies:
- cssnano-utils: 4.0.2(postcss@8.4.49)
- postcss: 8.4.49
+ cssnano-utils: 4.0.2(postcss@8.4.47)
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
- postcss-plugin-constparse@4.0.8-beta.1(postcss@8.4.49):
+ postcss-plugin-constparse@4.0.8-beta.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-pxtransform@4.0.8-beta.1(postcss@8.4.49):
+ postcss-pxtransform@4.0.8-beta.1(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-reduce-initial@6.1.0(postcss@8.4.49):
+ postcss-reduce-initial@6.1.0(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
caniuse-api: 3.0.0
- postcss: 8.4.49
+ postcss: 8.4.47
- postcss-reduce-transforms@6.0.2(postcss@8.4.49):
+ postcss-reduce-transforms@6.0.2(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
postcss-resolve-nested-selector@0.1.6: {}
- postcss-rtlcss@5.5.1(postcss@8.4.49):
+ postcss-rtlcss@5.3.1(postcss@8.4.41):
dependencies:
- postcss: 8.4.49
- rtlcss: 4.3.0
+ postcss: 8.4.41
+ rtlcss: 4.2.0
postcss-safe-parser@7.0.1(postcss@8.4.49):
dependencies:
postcss: 8.4.49
- postcss-scss@4.0.9(postcss@8.4.49):
+ postcss-scss@4.0.9(postcss@8.4.41):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.41
postcss-selector-parser@6.1.2:
dependencies:
@@ -22035,23 +24041,23 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@6.0.3(postcss@8.4.49):
+ postcss-svgo@6.0.3(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@6.0.4(postcss@8.4.49):
+ postcss-unique-selectors@6.0.4(postcss@8.4.47):
dependencies:
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
- postcss-url@10.1.3(postcss@8.4.49):
+ postcss-url@10.1.3(postcss@8.4.47):
dependencies:
make-dir: 3.1.0
mime: 2.5.2
minimatch: 3.0.8
- postcss: 8.4.49
+ postcss: 8.4.47
xxhashjs: 0.2.2
postcss-value-parser@4.2.0: {}
@@ -22061,9 +24067,21 @@ snapshots:
picocolors: 0.2.1
source-map: 0.6.1
+ postcss@8.4.41:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
+ postcss@8.4.47:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
postcss@8.4.49:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.7
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -22075,12 +24093,11 @@ snapshots:
dependencies:
fast-diff: 1.3.0
- prettier-markdown-table@1.0.3(linguist-languages@7.27.0)(prettier@3.4.2):
+ prettier-markdown-table@1.0.2:
dependencies:
linguist-languages: 7.27.0
- prettier: 3.4.2
- prettier@3.4.2: {}
+ prettier@3.3.3: {}
pretty-bytes@5.6.0: {}
@@ -22151,7 +24168,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
lru-cache: 7.18.3
@@ -22168,13 +24185,15 @@ snapshots:
prr@1.0.1:
optional: true
+ ps-tree@1.2.0:
+ dependencies:
+ event-stream: 3.3.4
+
pseudomap@1.0.2: {}
- psl@1.15.0:
- dependencies:
- punycode: 2.3.1
+ psl@1.9.0: {}
- pump@3.0.2:
+ pump@3.0.0:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
@@ -22189,7 +24208,11 @@ snapshots:
pure-rand@6.1.0: {}
- qs@6.13.0:
+ qs@6.11.0:
+ dependencies:
+ side-channel: 1.0.6
+
+ qs@6.13.1:
dependencies:
side-channel: 1.0.6
@@ -22211,6 +24234,8 @@ snapshots:
queue-tick@1.0.1: {}
+ quick-lru@5.1.1: {}
+
randombytes@2.1.0:
dependencies:
safe-buffer: 5.2.1
@@ -22253,31 +24278,26 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dom@19.0.0(react@19.0.0):
- dependencies:
- react: 19.0.0
- scheduler: 0.25.0
-
react-is@16.13.1: {}
react-is@17.0.2: {}
react-is@18.3.1: {}
- react-markdown@9.0.1(@types/react@18.3.14)(react@18.3.1):
+ react-markdown@9.0.1(@types/react@18.3.4)(react@18.3.1):
dependencies:
'@types/hast': 3.0.4
- '@types/react': 18.3.14
+ '@types/react': 18.3.4
devlop: 1.1.0
- hast-util-to-jsx-runtime: 2.3.2
- html-url-attributes: 3.0.1
+ hast-util-to-jsx-runtime: 2.3.0
+ html-url-attributes: 3.0.0
mdast-util-to-hast: 13.2.0
react: 18.3.1
remark-parse: 11.0.0
- remark-rehype: 11.1.1
+ remark-rehype: 11.1.0
unified: 11.0.5
unist-util-visit: 5.0.0
- vfile: 6.0.3
+ vfile: 6.0.2
transitivePeerDependencies:
- supports-color
@@ -22289,16 +24309,16 @@ snapshots:
react-refresh@0.14.2: {}
- react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@remix-run/router': 1.21.0
+ '@remix-run/router': 1.19.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-router: 6.28.0(react@18.3.1)
+ react-router: 6.26.1(react@18.3.1)
- react-router@6.28.0(react@18.3.1):
+ react-router@6.26.1(react@18.3.1):
dependencies:
- '@remix-run/router': 1.21.0
+ '@remix-run/router': 1.19.1
react: 18.3.1
react-shallow-renderer@16.15.0(react@18.3.1):
@@ -22307,11 +24327,10 @@ snapshots:
react: 18.3.1
react-is: 18.3.1
- react-syntax-highlighter@15.6.1(react@18.3.1):
+ react-syntax-highlighter@15.5.0(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
highlight.js: 10.7.3
- highlightjs-vue: 1.0.0
lowlight: 1.20.0
prismjs: 1.29.0
react: 18.3.1
@@ -22326,28 +24345,17 @@ snapshots:
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
- dependencies:
- '@babel/runtime': 7.26.0
- dom-helpers: 5.2.1
- loose-envify: 1.4.0
- prop-types: 15.8.1
- react: 19.0.0
- react-dom: 19.0.0(react@19.0.0)
-
react@18.3.1:
dependencies:
loose-envify: 1.4.0
- react@19.0.0: {}
-
reactcss@1.2.3(react@18.3.1):
dependencies:
lodash: 4.17.21
@@ -22413,7 +24421,7 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.8.1
+ tslib: 2.7.0
rechoir@0.6.2:
dependencies:
@@ -22423,36 +24431,6 @@ snapshots:
dependencies:
resolve: 1.22.8
- recma-build-jsx@1.0.0:
- dependencies:
- '@types/estree': 1.0.6
- estree-util-build-jsx: 3.0.1
- vfile: 6.0.3
-
- recma-jsx@1.0.0(acorn@8.14.0):
- dependencies:
- acorn-jsx: 5.3.2(acorn@8.14.0)
- estree-util-to-js: 2.0.0
- recma-parse: 1.0.0
- recma-stringify: 1.0.0
- unified: 11.0.5
- transitivePeerDependencies:
- - acorn
-
- recma-parse@1.0.0:
- dependencies:
- '@types/estree': 1.0.6
- esast-util-from-js: 2.0.1
- unified: 11.0.5
- vfile: 6.0.3
-
- recma-stringify@1.0.0:
- dependencies:
- '@types/estree': 1.0.6
- estree-util-to-js: 2.0.0
- unified: 11.0.5
- vfile: 6.0.3
-
redent@3.0.0:
dependencies:
indent-string: 4.0.0
@@ -22460,17 +24438,17 @@ snapshots:
refa@0.12.1:
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.11.0
- reflect.getprototypeof@1.0.7:
+ reflect.getprototypeof@1.0.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
get-intrinsic: 1.2.4
- gopd: 1.2.0
- which-builtin-type: 1.2.0
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.4
refractor@3.6.0:
dependencies:
@@ -22492,38 +24470,38 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.25.4
regex-parser@2.3.0: {}
regexp-ast-analysis@0.7.1:
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.11.0
refa: 0.12.1
regexp-tree@0.1.27: {}
- regexp.prototype.flags@1.5.3:
+ regexp.prototype.flags@1.5.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@6.1.1:
dependencies:
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.0
regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regjsparser: 0.11.2
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.1.0
registry-auth-token@4.2.2:
dependencies:
rc: 1.2.8
- registry-auth-token@5.0.3:
+ registry-auth-token@5.0.2:
dependencies:
'@pnpm/npm-conf': 2.3.1
@@ -22541,43 +24519,37 @@ snapshots:
dependencies:
jsesc: 0.5.0
- regjsparser@0.12.0:
+ regjsparser@0.11.2:
dependencies:
jsesc: 3.0.2
- rehype-recma@1.0.0:
- dependencies:
- '@types/estree': 1.0.6
- '@types/hast': 3.0.4
- hast-util-to-estree: 3.1.0
- transitivePeerDependencies:
- - supports-color
-
relateurl@0.2.7: {}
- release-it@17.10.0(typescript@5.7.2):
+ release-it@17.6.0(typescript@5.7.2):
dependencies:
'@iarna/toml': 2.2.5
'@octokit/rest': 20.1.1
async-retry: 1.3.3
chalk: 5.3.0
- ci-info: 4.1.0
cosmiconfig: 9.0.0(typescript@5.7.2)
- execa: 8.0.0
+ execa: 8.0.1
git-url-parse: 14.0.0
globby: 14.0.2
+ got: 13.0.0
inquirer: 9.3.2
+ is-ci: 3.0.1
issue-parser: 7.0.1
lodash: 4.17.21
mime-types: 2.1.35
new-github-release-url: 2.0.0
+ node-fetch: 3.3.2
open: 10.1.0
- ora: 8.1.0
+ ora: 8.0.1
os-name: 5.1.0
proxy-agent: 6.4.0
- semver: 7.6.3
+ semver: 7.6.2
shelljs: 0.8.5
- update-notifier: 7.3.1
+ update-notifier: 7.1.0
url-join: 5.0.0
wildcard-match: 5.1.3
yargs-parser: 21.1.1
@@ -22589,7 +24561,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
mdast-util-directive: 3.0.0
- micromark-extension-directive: 3.0.2
+ micromark-extension-directive: 3.0.1
unified: 11.0.5
transitivePeerDependencies:
- supports-color
@@ -22605,7 +24577,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- remark-mdx@3.1.0:
+ remark-mdx@3.0.1:
dependencies:
mdast-util-mdx: 3.0.0
micromark-extension-mdxjs: 3.0.0
@@ -22615,24 +24587,24 @@ snapshots:
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.2
- micromark-util-types: 2.0.1
+ mdast-util-from-markdown: 2.0.1
+ micromark-util-types: 2.0.0
unified: 11.0.5
transitivePeerDependencies:
- supports-color
- remark-rehype@11.1.1:
+ remark-rehype@11.1.0:
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
mdast-util-to-hast: 13.2.0
unified: 11.0.5
- vfile: 6.0.3
+ vfile: 6.0.2
remark-stringify@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-to-markdown: 2.1.2
+ mdast-util-to-markdown: 2.1.0
unified: 11.0.5
remove-trailing-separator@1.1.0: {}
@@ -22665,6 +24637,8 @@ snapshots:
requires-port@1.0.0: {}
+ resolve-alpn@1.2.1: {}
+
resolve-cwd@3.0.0:
dependencies:
resolve-from: 5.0.0
@@ -22691,10 +24665,10 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.49
+ postcss: 8.4.47
source-map: 0.6.1
- resolve.exports@2.0.3: {}
+ resolve.exports@2.0.2: {}
resolve@1.22.8:
dependencies:
@@ -22712,11 +24686,20 @@ snapshots:
dependencies:
lowercase-keys: 1.0.1
+ responselike@3.0.0:
+ dependencies:
+ lowercase-keys: 3.0.0
+
restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
+ restore-cursor@4.0.0:
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+
restore-cursor@5.1.0:
dependencies:
onetime: 7.0.0
@@ -22728,6 +24711,10 @@ snapshots:
rfdc@1.4.1: {}
+ rimraf@2.6.3:
+ dependencies:
+ glob: 7.2.3
+
rimraf@3.0.2:
dependencies:
glob: 7.2.3
@@ -22736,37 +24723,60 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.28.0:
+ rollup@4.21.1:
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.21.1
+ '@rollup/rollup-android-arm64': 4.21.1
+ '@rollup/rollup-darwin-arm64': 4.21.1
+ '@rollup/rollup-darwin-x64': 4.21.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.21.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.21.1
+ '@rollup/rollup-linux-arm64-gnu': 4.21.1
+ '@rollup/rollup-linux-arm64-musl': 4.21.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.21.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.21.1
+ '@rollup/rollup-linux-s390x-gnu': 4.21.1
+ '@rollup/rollup-linux-x64-gnu': 4.21.1
+ '@rollup/rollup-linux-x64-musl': 4.21.1
+ '@rollup/rollup-win32-arm64-msvc': 4.21.1
+ '@rollup/rollup-win32-ia32-msvc': 4.21.1
+ '@rollup/rollup-win32-x64-msvc': 4.21.1
+ fsevents: 2.3.3
+
+ rollup@4.28.1:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.28.0
- '@rollup/rollup-android-arm64': 4.28.0
- '@rollup/rollup-darwin-arm64': 4.28.0
- '@rollup/rollup-darwin-x64': 4.28.0
- '@rollup/rollup-freebsd-arm64': 4.28.0
- '@rollup/rollup-freebsd-x64': 4.28.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.28.0
- '@rollup/rollup-linux-arm-musleabihf': 4.28.0
- '@rollup/rollup-linux-arm64-gnu': 4.28.0
- '@rollup/rollup-linux-arm64-musl': 4.28.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0
- '@rollup/rollup-linux-riscv64-gnu': 4.28.0
- '@rollup/rollup-linux-s390x-gnu': 4.28.0
- '@rollup/rollup-linux-x64-gnu': 4.28.0
- '@rollup/rollup-linux-x64-musl': 4.28.0
- '@rollup/rollup-win32-arm64-msvc': 4.28.0
- '@rollup/rollup-win32-ia32-msvc': 4.28.0
- '@rollup/rollup-win32-x64-msvc': 4.28.0
+ '@rollup/rollup-android-arm-eabi': 4.28.1
+ '@rollup/rollup-android-arm64': 4.28.1
+ '@rollup/rollup-darwin-arm64': 4.28.1
+ '@rollup/rollup-darwin-x64': 4.28.1
+ '@rollup/rollup-freebsd-arm64': 4.28.1
+ '@rollup/rollup-freebsd-x64': 4.28.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.28.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.28.1
+ '@rollup/rollup-linux-arm64-gnu': 4.28.1
+ '@rollup/rollup-linux-arm64-musl': 4.28.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.28.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.28.1
+ '@rollup/rollup-linux-s390x-gnu': 4.28.1
+ '@rollup/rollup-linux-x64-gnu': 4.28.1
+ '@rollup/rollup-linux-x64-musl': 4.28.1
+ '@rollup/rollup-win32-arm64-msvc': 4.28.1
+ '@rollup/rollup-win32-ia32-msvc': 4.28.1
+ '@rollup/rollup-win32-x64-msvc': 4.28.1
fsevents: 2.3.3
rrweb-cssom@0.7.1: {}
- rtlcss@4.3.0:
+ rtlcss@4.2.0:
dependencies:
- escalade: 3.2.0
+ escalade: 3.1.2
picocolors: 1.1.1
- postcss: 8.4.49
+ postcss: 8.4.47
strip-json-comments: 3.1.1
run-applescript@7.0.0: {}
@@ -22783,13 +24793,13 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.8.1
+ tslib: 2.7.0
safe-array-concat@1.1.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
get-intrinsic: 1.2.4
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
isarray: 2.0.5
safe-buffer@5.1.2: {}
@@ -22798,30 +24808,29 @@ snapshots:
safe-regex-test@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-regex: 1.2.0
+ is-regex: 1.1.4
safer-buffer@2.1.2: {}
- sass-loader@14.2.1(sass@1.82.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
+ sass-loader@14.2.1(sass@1.77.8)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- sass: 1.82.0
+ sass: 1.77.8
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- sass@1.82.0:
+ sass@1.77.8:
dependencies:
- chokidar: 4.0.1
- immutable: 5.0.3
- source-map-js: 1.2.1
- optionalDependencies:
- '@parcel/watcher': 2.5.0
+ chokidar: 3.6.0
+ immutable: 4.3.7
+ source-map-js: 1.2.0
sax@1.2.4: {}
- sax@1.4.1: {}
+ sax@1.4.1:
+ optional: true
saxes@6.0.0:
dependencies:
@@ -22831,8 +24840,6 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- scheduler@0.25.0: {}
-
schema-utils@2.7.1:
dependencies:
'@types/json-schema': 7.0.15
@@ -22854,7 +24861,7 @@ snapshots:
scslre@0.3.0:
dependencies:
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/regexpp': 4.11.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
@@ -22876,7 +24883,7 @@ snapshots:
loglevel: 1.9.2
loglevel-plugin-prefix: 0.8.4
pretty-bytes: 5.6.0
- sass: 1.82.0
+ sass: 1.77.8
tslib: 1.14.1
seek-bzip@1.0.6:
@@ -22890,6 +24897,10 @@ snapshots:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
+ semver-diff@4.0.0:
+ dependencies:
+ semver: 7.6.3
+
semver-greatest-satisfied-range@2.0.0:
dependencies:
sver: 1.8.4
@@ -22902,9 +24913,11 @@ snapshots:
dependencies:
lru-cache: 6.0.0
+ semver@7.6.2: {}
+
semver@7.6.3: {}
- send@0.19.0:
+ send@0.18.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -22950,12 +24963,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.16.2:
+ serve-static@1.15.0:
dependencies:
- encodeurl: 2.0.0
+ encodeurl: 1.0.2
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.19.0
+ send: 0.18.0
transitivePeerDependencies:
- supports-color
@@ -22965,7 +24978,7 @@ snapshots:
es-errors: 1.3.0
function-bind: 1.1.2
get-intrinsic: 1.2.4
- gopd: 1.2.0
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -22999,10 +25012,10 @@ snapshots:
side-channel@1.0.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- object-inspect: 1.13.3
+ object-inspect: 1.13.2
siginfo@2.0.0: {}
@@ -23018,9 +25031,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sirv@3.0.0:
+ sirv@2.0.4:
dependencies:
- '@polka/url': 1.0.0-next.28
+ '@polka/url': 1.0.0-next.25
mrmime: 2.0.0
totalist: 3.0.1
@@ -23076,7 +25089,7 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -23106,8 +25119,15 @@ snapshots:
source-list-map@2.0.1: {}
+ source-map-js@1.2.0: {}
+
source-map-js@1.2.1: {}
+ source-map-resolve@0.6.0:
+ dependencies:
+ atob: 2.1.2
+ decode-uri-component: 0.2.2
+
source-map-support@0.5.13:
dependencies:
buffer-from: 1.1.2
@@ -23178,6 +25198,10 @@ snapshots:
split2@4.2.0: {}
+ split@0.3.3:
+ dependencies:
+ through: 2.3.8
+
sprintf-js@1.0.3: {}
sprintf-js@1.1.3: {}
@@ -23204,17 +25228,40 @@ snapshots:
stackframe@1.3.4: {}
+ start-server-and-test@2.0.8:
+ dependencies:
+ arg: 5.0.2
+ bluebird: 3.7.2
+ check-more-types: 2.24.0
+ debug: 4.3.7(supports-color@8.1.1)
+ execa: 5.1.1
+ lazy-ass: 1.6.0
+ ps-tree: 1.2.0
+ wait-on: 8.0.1(debug@4.3.7)
+ transitivePeerDependencies:
+ - supports-color
+
statuses@1.5.0: {}
statuses@2.0.1: {}
+ std-env@3.7.0: {}
+
std-env@3.8.0: {}
stdin-discarder@0.2.2: {}
+ stop-iteration-iterator@1.0.0:
+ dependencies:
+ internal-slot: 1.0.7
+
+ stream-combiner@0.0.4:
+ dependencies:
+ duplexer: 0.1.2
+
stream-composer@1.0.2:
dependencies:
- streamx: 2.21.0
+ streamx: 2.19.0
stream-exhaust@1.0.2: {}
@@ -23222,13 +25269,13 @@ snapshots:
dependencies:
readable-stream: 1.1.14
- streamx@2.21.0:
+ streamx@2.19.0:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
- text-decoder: 1.2.1
+ text-decoder: 1.1.1
optionalDependencies:
- bare-events: 2.5.0
+ bare-events: 2.4.2
strict-uri-encode@1.1.0: {}
@@ -23256,53 +25303,52 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
+ get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
string.fromcodepoint@0.2.1: {}
- string.prototype.includes@2.0.1:
+ string.prototype.includes@2.0.0:
dependencies:
- call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
string.prototype.matchall@4.0.11:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
- gopd: 1.2.0
- has-symbols: 1.1.0
+ gopd: 1.0.1
+ has-symbols: 1.0.3
internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.3
+ regexp.prototype.flags: 1.5.2
set-function-name: 2.0.2
side-channel: 1.0.6
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
string.prototype.trimend@1.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
@@ -23327,7 +25373,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.1.0
+ ansi-regex: 6.0.1
strip-bom@3.0.0: {}
@@ -23359,8 +25405,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- stubborn-fs@1.2.5: {}
-
style-loader@3.3.4(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
@@ -23369,14 +25413,14 @@ snapshots:
dependencies:
inline-style-parser: 0.1.1
- style-to-object@1.0.8:
+ style-to-object@1.0.6:
dependencies:
- inline-style-parser: 0.2.4
+ inline-style-parser: 0.2.3
- stylehacks@6.1.1(postcss@8.4.49):
+ stylehacks@6.1.1(postcss@8.4.47):
dependencies:
browserslist: 4.24.2
- postcss: 8.4.49
+ postcss: 8.4.47
postcss-selector-parser: 6.1.2
stylelint@16.11.0(typescript@5.7.2):
@@ -23423,20 +25467,23 @@ snapshots:
- supports-color
- typescript
- stylus-loader@8.1.1(stylus@0.64.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
+ stylus-loader@8.1.1(stylus@0.55.0)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
fast-glob: 3.3.2
normalize-path: 3.0.0
- stylus: 0.64.0
+ stylus: 0.55.0
optionalDependencies:
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- stylus@0.64.0:
+ stylus@0.55.0:
dependencies:
- '@adobe/css-tools': 4.3.3
- debug: 4.3.7(supports-color@8.1.1)
- glob: 10.4.5
- sax: 1.4.1
+ css: 3.0.0
+ debug: 3.1.0
+ glob: 7.2.3
+ mkdirp: 1.0.4
+ safer-buffer: 2.1.2
+ sax: 1.2.4
+ semver: 6.3.1
source-map: 0.7.4
transitivePeerDependencies:
- supports-color
@@ -23451,6 +25498,10 @@ snapshots:
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ supports-color@5.5.0:
+ dependencies:
+ has-flag: 3.0.0
+
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -23488,12 +25539,17 @@ snapshots:
synckit@0.6.2:
dependencies:
- tslib: 2.8.1
+ tslib: 2.7.0
+
+ synckit@0.9.1:
+ dependencies:
+ '@pkgr/core': 0.1.1
+ tslib: 2.7.0
synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.8.1
+ tslib: 2.7.0
systemjs@6.15.1: {}
@@ -23528,18 +25584,23 @@ snapshots:
teex@1.0.1:
dependencies:
- streamx: 2.21.0
+ streamx: 2.19.0
+
+ temp@0.9.4:
+ dependencies:
+ mkdirp: 0.5.6
+ rimraf: 2.6.3
- terser-webpack-plugin@5.3.10(@swc/core@1.10.0(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.15))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.37.0
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ terser: 5.31.6
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
optionalDependencies:
- '@swc/core': 1.10.0(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.1(@swc/helpers@0.5.15)
terser-webpack-plugin@5.3.10(@swc/core@1.3.96(@swc/helpers@0.5.15))(esbuild@0.21.5)(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
dependencies:
@@ -23547,13 +25608,13 @@ snapshots:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.37.0
+ terser: 5.31.6
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
optionalDependencies:
'@swc/core': 1.3.96(@swc/helpers@0.5.15)
esbuild: 0.21.5
- terser@5.37.0:
+ terser@5.31.6:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.14.0
@@ -23572,7 +25633,9 @@ snapshots:
glob: 10.4.5
minimatch: 9.0.5
- text-decoder@1.2.1: {}
+ text-decoder@1.1.1:
+ dependencies:
+ b4a: 1.6.6
text-extensions@2.4.0: {}
@@ -23613,19 +25676,21 @@ snapshots:
tinypool@0.8.4: {}
- tinypool@1.0.2: {}
+ tinypool@1.0.1: {}
tinyrainbow@1.2.0: {}
tinyspy@2.2.1: {}
+ tinyspy@3.0.0: {}
+
tinyspy@3.0.2: {}
- tldts-core@6.1.65: {}
+ tldts-core@6.1.66: {}
- tldts@6.1.65:
+ tldts@6.1.66:
dependencies:
- tldts-core: 6.1.65
+ tldts-core: 6.1.66
tmp@0.0.33:
dependencies:
@@ -23637,6 +25702,8 @@ snapshots:
to-buffer@1.1.1: {}
+ to-fast-properties@2.0.0: {}
+
to-readable-stream@1.0.0: {}
to-regex-range@5.0.1:
@@ -23645,7 +25712,7 @@ snapshots:
to-through@3.0.0:
dependencies:
- streamx: 2.21.0
+ streamx: 2.19.0
toidentifier@1.0.1: {}
@@ -23655,14 +25722,14 @@ snapshots:
tough-cookie@4.1.4:
dependencies:
- psl: 1.15.0
+ psl: 1.9.0
punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
tough-cookie@5.0.0:
dependencies:
- tldts: 6.1.65
+ tldts: 6.1.66
tr46@1.0.1:
dependencies:
@@ -23682,18 +25749,22 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@1.4.3(typescript@5.7.2):
+ ts-api-utils@1.3.0(typescript@5.5.4):
+ dependencies:
+ typescript: 5.5.4
+
+ ts-api-utils@1.3.0(typescript@5.7.2):
dependencies:
typescript: 5.7.2
ts-interface-checker@0.1.13: {}
- ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@22.10.1))(typescript@5.7.2):
+ ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2)))(typescript@5.7.2):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@22.10.1)
+ jest: 29.7.0(@types/node@20.16.1)(ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -23707,6 +25778,27 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.26.0)
+ ts-node@10.9.2(@swc/core@1.10.1(@swc/helpers@0.5.15))(@types/node@20.16.1)(typescript@5.7.2):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.16.1
+ acorn: 8.14.0
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.7.2
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.10.1(@swc/helpers@0.5.15)
+ optional: true
+
tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
@@ -23716,9 +25808,11 @@ snapshots:
tslib@1.14.1: {}
+ tslib@2.7.0: {}
+
tslib@2.8.1: {}
- tsup@8.3.5(@microsoft/api-extractor@7.47.7(@types/node@22.10.1))(@swc/core@1.10.0(@swc/helpers@0.5.15))(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1):
+ tsup@8.3.5(@microsoft/api-extractor@7.47.7(@types/node@22.10.1))(@swc/core@1.10.1(@swc/helpers@0.5.15))(jiti@2.3.3)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.5.0):
dependencies:
bundle-require: 5.0.0(esbuild@0.24.0)
cac: 6.7.14
@@ -23728,9 +25822,9 @@ snapshots:
esbuild: 0.24.0
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1)
+ postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.5.0)
resolve-from: 5.0.0
- rollup: 4.28.0
+ rollup: 4.28.1
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.1
@@ -23738,7 +25832,7 @@ snapshots:
tree-kill: 1.2.2
optionalDependencies:
'@microsoft/api-extractor': 7.47.7(@types/node@22.10.1)
- '@swc/core': 1.10.0(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.1(@swc/helpers@0.5.15)
postcss: 8.4.49
typescript: 5.7.2
transitivePeerDependencies:
@@ -23782,9 +25876,9 @@ snapshots:
type-fest@0.8.1: {}
- type-fest@2.19.0: {}
+ type-fest@1.4.0: {}
- type-fest@4.30.0: {}
+ type-fest@2.19.0: {}
type-is@1.6.18:
dependencies:
@@ -23793,50 +25887,54 @@ snapshots:
typed-array-buffer@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
es-errors: 1.3.0
is-typed-array: 1.1.13
typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
- has-proto: 1.1.0
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.3:
+ typed-array-byte-offset@1.0.2:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
- has-proto: 1.1.0
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
- reflect.getprototypeof: 1.0.7
- typed-array-length@1.0.7:
+ typed-array-length@1.0.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- reflect.getprototypeof: 1.0.7
- typescript-eslint@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2):
+ typedarray-to-buffer@3.1.5:
dependencies:
- '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)
- eslint: 9.16.0(jiti@1.21.6)
- optionalDependencies:
+ is-typedarray: 1.0.0
+
+ typescript-eslint@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.18.0(@typescript-eslint/parser@8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2))(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.0(eslint@9.16.0(jiti@2.3.3))(typescript@5.7.2)
+ eslint: 9.16.0(jiti@2.3.3)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
typescript@5.4.2: {}
+ typescript@5.5.4: {}
+
typescript@5.7.2: {}
uc.micro@2.1.0: {}
@@ -23847,10 +25945,10 @@ snapshots:
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
has-bigints: 1.0.2
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.0
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
unbzip2-stream@1.4.3:
dependencies:
@@ -23884,14 +25982,14 @@ snapshots:
dependencies:
string.fromcodepoint: 0.2.1
- unicode-canonical-property-names-ecmascript@2.0.1: {}
+ unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.1
+ unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.1.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
@@ -23905,7 +26003,11 @@ snapshots:
extend: 3.0.2
is-plain-obj: 4.1.0
trough: 2.2.0
- vfile: 6.0.3
+ vfile: 6.0.2
+
+ unique-string@3.0.0:
+ dependencies:
+ crypto-random-string: 4.0.0
unist-util-is@6.0.0:
dependencies:
@@ -23919,6 +26021,11 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
+ unist-util-remove-position@5.0.0:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-visit: 5.0.0
+
unist-util-stringify-position@2.0.3:
dependencies:
'@types/unist': 2.0.11
@@ -23959,23 +26066,31 @@ snapshots:
untildify@4.0.0: {}
+ update-browserslist-db@1.1.0(browserslist@4.23.3):
+ dependencies:
+ browserslist: 4.23.3
+ escalade: 3.1.2
+ picocolors: 1.1.1
+
update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
browserslist: 4.24.2
escalade: 3.2.0
picocolors: 1.1.1
- update-notifier@7.3.1:
+ update-notifier@7.1.0:
dependencies:
- boxen: 8.0.1
+ boxen: 7.1.1
chalk: 5.3.0
- configstore: 7.0.0
- is-in-ci: 1.0.0
+ configstore: 6.0.0
+ import-lazy: 4.0.0
+ is-in-ci: 0.1.0
is-installed-globally: 1.0.0
is-npm: 6.0.0
latest-version: 9.0.0
pupa: 3.1.0
- semver: 7.6.3
+ semver: 7.6.2
+ semver-diff: 4.0.0
xdg-basedir: 5.1.0
upper-case-first@2.0.2:
@@ -24005,7 +26120,7 @@ snapshots:
url-to-options@1.0.1: {}
- use-sync-external-store@1.4.0(react@18.3.1):
+ use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
react: 18.3.1
@@ -24017,6 +26132,9 @@ snapshots:
uuid@8.3.2: {}
+ v8-compile-cache-lib@3.0.1:
+ optional: true
+
v8-to-istanbul@9.3.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -24049,9 +26167,10 @@ snapshots:
'@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
- vfile@6.0.3:
+ vfile@6.0.2:
dependencies:
'@types/unist': 3.0.3
+ unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
vinyl-contents@2.0.0:
@@ -24070,7 +26189,7 @@ snapshots:
normalize-path: 3.0.0
resolve-options: 2.0.0
stream-composer: 1.0.2
- streamx: 2.21.0
+ streamx: 2.19.0
to-through: 3.0.0
value-or-function: 4.0.0
vinyl: 3.0.0
@@ -24081,7 +26200,7 @@ snapshots:
convert-source-map: 2.0.0
graceful-fs: 4.2.11
now-and-later: 3.0.0
- streamx: 2.21.0
+ streamx: 2.19.0
vinyl: 3.0.0
vinyl-contents: 2.0.0
@@ -24097,13 +26216,13 @@ snapshots:
replace-ext: 2.0.0
teex: 1.0.1
- vite-node@1.6.0(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vite-node@1.6.0(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.1.1
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -24115,13 +26234,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.8(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vite-node@2.0.5(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@8.1.1)
- es-module-lexer: 1.5.4
+ debug: 4.3.6
pathe: 1.1.2
- vite: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ tinyrainbow: 1.2.0
+ vite: 5.4.11(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -24133,13 +26252,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.8(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vite-node@2.1.7(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@8.1.1)
es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -24151,74 +26270,88 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@4.2.1(@types/node@20.17.9)(rollup@4.28.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)):
+ vite-plugin-dts@4.2.1(@types/node@20.16.1)(rollup@4.21.1)(typescript@5.5.4)(vite@5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)):
dependencies:
- '@microsoft/api-extractor': 7.47.7(@types/node@20.17.9)
- '@rollup/pluginutils': 5.1.3(rollup@4.28.0)
- '@volar/typescript': 2.4.10
- '@vue/language-core': 2.1.6(typescript@5.7.2)
+ '@microsoft/api-extractor': 7.47.7(@types/node@20.16.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
+ '@volar/typescript': 2.4.4
+ '@vue/language-core': 2.1.6(typescript@5.5.4)
compare-versions: 6.1.1
- debug: 4.3.7(supports-color@8.1.1)
+ debug: 4.3.6
kolorist: 1.8.0
- local-pkg: 0.5.1
- magic-string: 0.30.14
- typescript: 5.7.2
+ local-pkg: 0.5.0
+ magic-string: 0.30.11
+ typescript: 5.5.4
optionalDependencies:
- vite: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-static-copy@0.17.1(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)):
+ vite-plugin-static-copy@0.17.1(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)):
dependencies:
chokidar: 3.6.0
fast-glob: 3.3.2
fs-extra: 11.2.0
picocolors: 1.1.1
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
- vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vite@5.4.11(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.49
- rollup: 4.28.0
+ postcss: 8.4.47
+ rollup: 4.21.1
optionalDependencies:
- '@types/node': 20.17.9
+ '@types/node': 20.16.1
fsevents: 2.3.3
- less: 3.13.1
- lightningcss: 1.28.2
- sass: 1.82.0
- stylus: 0.64.0
- terser: 5.37.0
+ less: 4.2.0
+ lightningcss: 1.26.0
+ sass: 1.77.8
+ stylus: 0.55.0
+ terser: 5.31.6
- vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.49
- rollup: 4.28.0
+ postcss: 8.4.47
+ rollup: 4.21.1
optionalDependencies:
'@types/node': 22.10.1
fsevents: 2.3.3
- less: 3.13.1
- lightningcss: 1.28.2
- sass: 1.82.0
- stylus: 0.64.0
- terser: 5.37.0
+ less: 4.2.0
+ lightningcss: 1.26.0
+ sass: 1.77.8
+ stylus: 0.55.0
+ terser: 5.31.6
+
+ vite@5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.41
+ rollup: 4.21.1
+ optionalDependencies:
+ '@types/node': 20.16.1
+ fsevents: 2.3.3
+ less: 4.2.0
+ lightningcss: 1.26.0
+ sass: 1.77.8
+ stylus: 0.55.0
+ terser: 5.31.6
- vitest-canvas-mock@0.3.3(vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)):
+ vitest-canvas-mock@0.3.3(vitest@2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)):
dependencies:
jest-canvas-mock: 2.5.2
- vitest: 2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vitest: 2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
- vitest@1.6.0(@types/node@22.10.1)(@vitest/ui@2.1.8(vitest@2.1.8))(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vitest@1.6.0(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
'@vitest/snapshot': 1.6.0
'@vitest/spy': 1.6.0
'@vitest/utils': 1.6.0
- acorn-walk: 8.3.4
+ acorn-walk: 8.3.3
chai: 4.5.0
debug: 4.3.7(supports-color@8.1.1)
execa: 8.0.1
@@ -24230,12 +26363,12 @@ snapshots:
strip-literal: 2.1.1
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
- vite-node: 1.6.0(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
+ vite-node: 1.6.0(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.10.1
- '@vitest/ui': 2.1.8(vitest@2.1.8)
+ '@vitest/ui': 2.0.5(vitest@2.0.5)
happy-dom: 14.12.3
jsdom: 24.1.3
transitivePeerDependencies:
@@ -24248,37 +26381,35 @@ snapshots:
- supports-color
- terser
- vitest@2.1.8(@types/node@20.17.9)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vitest@2.0.5(@types/node@20.16.1)(@vitest/ui@2.0.5)(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
- '@vitest/expect': 2.1.8
- '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
- '@vitest/pretty-format': 2.1.8
- '@vitest/runner': 2.1.8
- '@vitest/snapshot': 2.1.8
- '@vitest/spy': 2.1.8
- '@vitest/utils': 2.1.8
- chai: 5.1.2
- debug: 4.3.7(supports-color@8.1.1)
- expect-type: 1.1.0
- magic-string: 0.30.14
+ '@ampproject/remapping': 2.3.0
+ '@vitest/expect': 2.0.5
+ '@vitest/pretty-format': 2.0.5
+ '@vitest/runner': 2.0.5
+ '@vitest/snapshot': 2.0.5
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
+ chai: 5.1.1
+ debug: 4.3.6
+ execa: 8.0.1
+ magic-string: 0.30.11
pathe: 1.1.2
- std-env: 3.8.0
+ std-env: 3.7.0
tinybench: 2.9.0
- tinyexec: 0.3.1
- tinypool: 1.0.2
+ tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
- vite-node: 2.1.8(@types/node@20.17.9)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.2(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
+ vite-node: 2.0.5(@types/node@20.16.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.17.9
- '@vitest/ui': 2.1.8(vitest@2.1.8)
+ '@types/node': 20.16.1
+ '@vitest/ui': 2.0.5(vitest@2.0.5)
happy-dom: 14.12.3
jsdom: 24.1.3
transitivePeerDependencies:
- less
- lightningcss
- - msw
- sass
- sass-embedded
- stylus
@@ -24286,15 +26417,15 @@ snapshots:
- supports-color
- terser
- vitest@2.1.8(@types/node@22.10.1)(@vitest/ui@2.1.8)(happy-dom@14.12.3)(jsdom@24.1.3)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0):
+ vitest@2.1.7(@types/node@22.10.1)(@vitest/ui@2.0.5(vitest@2.0.5))(happy-dom@14.12.3)(jsdom@24.1.3)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6):
dependencies:
- '@vitest/expect': 2.1.8
- '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0))
- '@vitest/pretty-format': 2.1.8
- '@vitest/runner': 2.1.8
- '@vitest/snapshot': 2.1.8
- '@vitest/spy': 2.1.8
- '@vitest/utils': 2.1.8
+ '@vitest/expect': 2.1.7
+ '@vitest/mocker': 2.1.7(vite@5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6))
+ '@vitest/pretty-format': 2.1.7
+ '@vitest/runner': 2.1.7
+ '@vitest/snapshot': 2.1.7
+ '@vitest/spy': 2.1.7
+ '@vitest/utils': 2.1.7
chai: 5.1.2
debug: 4.3.7(supports-color@8.1.1)
expect-type: 1.1.0
@@ -24303,14 +26434,14 @@ snapshots:
std-env: 3.8.0
tinybench: 2.9.0
tinyexec: 0.3.1
- tinypool: 1.0.2
+ tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
- vite-node: 2.1.8(@types/node@22.10.1)(less@3.13.1)(lightningcss@1.28.2)(sass@1.82.0)(stylus@0.64.0)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
+ vite-node: 2.1.7(@types/node@22.10.1)(less@4.2.0)(lightningcss@1.26.0)(sass@1.77.8)(stylus@0.55.0)(terser@5.31.6)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.10.1
- '@vitest/ui': 2.1.8(vitest@2.1.8)
+ '@vitest/ui': 2.0.5(vitest@2.0.5)
happy-dom: 14.12.3
jsdom: 24.1.3
transitivePeerDependencies:
@@ -24327,14 +26458,14 @@ snapshots:
vm2@3.9.19:
dependencies:
acorn: 8.14.0
- acorn-walk: 8.3.4
+ acorn-walk: 8.3.3
vscode-uri@3.0.8: {}
- vue-eslint-parser@9.4.3(eslint@8.57.1):
+ vue-eslint-parser@9.4.3(eslint@8.57.0):
dependencies:
debug: 4.3.7(supports-color@8.1.1)
- eslint: 8.57.1
+ eslint: 8.57.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -24345,10 +26476,10 @@ snapshots:
- supports-color
optional: true
- vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@1.21.6)):
+ vue-eslint-parser@9.4.3(eslint@9.16.0(jiti@2.3.3)):
dependencies:
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.16.0(jiti@1.21.6)
+ eslint: 9.16.0(jiti@2.3.3)
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -24362,6 +26493,16 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
+ wait-on@8.0.1(debug@4.3.7):
+ dependencies:
+ axios: 1.7.9(debug@4.3.7)
+ joi: 17.13.3
+ lodash: 4.17.21
+ minimist: 1.2.8
+ rxjs: 7.8.1
+ transitivePeerDependencies:
+ - debug
+
walker@1.0.8:
dependencies:
makeerror: 1.0.12
@@ -24379,6 +26520,8 @@ snapshots:
dependencies:
defaults: 1.0.4
+ web-streams-polyfill@3.3.3: {}
+
webidl-conversions@4.0.2: {}
webidl-conversions@7.0.0: {}
@@ -24397,14 +26540,14 @@ snapshots:
schema-utils: 4.2.0
webpack: 5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))
- webpack-dev-middleware@5.3.4(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))):
+ webpack-dev-middleware@5.3.4(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
optional: true
webpack-dev-server@4.15.2(webpack@5.91.0(@swc/core@1.3.96(@swc/helpers@0.5.15))):
@@ -24415,18 +26558,18 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.13
+ '@types/ws': 8.5.12
ansi-html-community: 0.0.8
- bonjour-service: 1.3.0
+ bonjour-service: 1.2.1
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.5
+ compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.21.2
+ express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.5.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.6(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.9.1
open: 8.4.2
@@ -24447,7 +26590,7 @@ snapshots:
- supports-color
- utf-8-validate
- webpack-dev-server@4.15.2(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))):
+ webpack-dev-server@4.15.2(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -24455,18 +26598,18 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.13
+ '@types/ws': 8.5.12
ansi-html-community: 0.0.8
- bonjour-service: 1.3.0
+ bonjour-service: 1.2.1
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.5
+ compression: 1.7.4
connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- express: 4.21.2
+ express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.5.2
- http-proxy-middleware: 2.0.7(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.6(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.9.1
open: 8.4.2
@@ -24477,10 +26620,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ webpack-dev-middleware: 5.3.4(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
ws: 8.18.0
optionalDependencies:
- webpack: 5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15))
+ webpack: 5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15))
transitivePeerDependencies:
- bufferutil
- debug
@@ -24511,9 +26654,9 @@ snapshots:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/wasm-edit': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.14.0
acorn-import-assertions: 1.9.0(acorn@8.14.0)
browserslist: 4.24.2
@@ -24538,14 +26681,15 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)):
+ webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.14.1
- '@webassemblyjs/wasm-edit': 1.14.1
- '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
@@ -24560,7 +26704,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.10.0(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.0(@swc/helpers@0.5.15)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.10.1(@swc/helpers@0.5.15))(webpack@5.93.0(@swc/core@1.10.1(@swc/helpers@0.5.15)))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -24605,31 +26749,28 @@ snapshots:
tr46: 1.0.1
webidl-conversions: 4.0.2
- when-exit@2.1.3: {}
-
- which-boxed-primitive@1.1.0:
+ which-boxed-primitive@1.0.2:
dependencies:
- is-bigint: 1.1.0
- is-boolean-object: 1.2.0
- is-number-object: 1.1.0
- is-string: 1.1.0
- is-symbol: 1.1.0
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
+ is-string: 1.0.7
+ is-symbol: 1.0.4
- which-builtin-type@1.2.0:
+ which-builtin-type@1.1.4:
dependencies:
- call-bind: 1.0.8
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
is-async-function: 2.0.0
is-date-object: 1.0.5
- is-finalizationregistry: 1.1.0
+ is-finalizationregistry: 1.0.2
is-generator-function: 1.0.10
- is-regex: 1.2.0
+ is-regex: 1.1.4
is-weakref: 1.0.2
isarray: 2.0.5
- which-boxed-primitive: 1.1.0
+ which-boxed-primitive: 1.0.2
which-collection: 1.0.2
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.15
which-collection@1.0.2:
dependencies:
@@ -24638,12 +26779,12 @@ snapshots:
is-weakmap: 2.0.2
is-weakset: 2.0.3
- which-typed-array@1.1.16:
+ which-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
+ gopd: 1.0.1
has-tostringtag: 1.0.2
which@1.3.1:
@@ -24659,9 +26800,9 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
- widest-line@5.0.0:
+ widest-line@4.0.1:
dependencies:
- string-width: 7.2.0
+ string-width: 5.1.2
wildcard-match@5.1.3: {}
@@ -24699,6 +26840,13 @@ snapshots:
wrappy@1.0.2: {}
+ write-file-atomic@3.0.3:
+ dependencies:
+ imurmurhash: 0.1.4
+ is-typedarray: 1.0.0
+ signal-exit: 3.0.7
+ typedarray-to-buffer: 3.1.5
+
write-file-atomic@4.0.2:
dependencies:
imurmurhash: 0.1.4
@@ -24737,11 +26885,9 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.6.1
-
- yaml@2.5.1: {}
+ yaml: 2.5.0
- yaml@2.6.1: {}
+ yaml@2.5.0: {}
yargs-parser@20.2.9: {}
@@ -24772,6 +26918,9 @@ snapshots:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
+ yn@3.1.1:
+ optional: true
+
yocto-queue@0.1.0: {}
yocto-queue@1.1.1: {}
| |