diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..f00f8d8
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,39 @@
+name: Github Pages Deploy
+
+on:
+ push:
+ branches:
+ - master
+
+concurrency:
+ group: pages
+ cancel-in-progress: true
+
+jobs:
+ main:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ with:
+ persist-credentials: false
+
+ - name: Install pnpm
+ uses: pnpm/action-setup@v2.0.1
+ with:
+ version: 8.7.0
+
+ - name: Install Dependencies
+ run: |
+ pnpm install --no-frozen-lockfile
+
+ - name: Build
+ run: |
+ pnpm run build:pages
+
+ - name: Deploy
+ uses: JamesIves/github-pages-deploy-action@releases/v3
+ with:
+ ACCESS_TOKEN: ${{ secrets.ghb_token }}
+ BRANCH: gh-pages
+ FOLDER: playground/spa/dist
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index a20dd3d..a34463b 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -17,13 +17,13 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
- node-version: 16.x
+ node-version: 18.x
registry-url: https://registry.npmjs.org/
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
- version: 6.31.0
+ version: 8.7.0
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 548608a..8ff2450 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-node@v3
with:
- node-version: 16.x
+ node-version: 18.x
- run: npx changelogithub
env:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c528586..5c70dc7 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
- node-version: 16.x
+ node-version: 18.x
- name: Install dependencies
run: npx pnpm install --no-frozen-lockfile
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..eb8204b
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "eslint.experimental.useFlatConfig": true
+}
diff --git a/README.md b/README.md
index 3967de0..2124498 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,9 @@
**在vite的运行时或构建时编译指定目录下的typescript文件,供开发者独立使用**
+## 在线示例
+[Demo](https://hemengke1997.github.io/vite-plugin-public-typescript/)
+
## 为什么要使用此插件
- 假设你想在页面渲染之前就执行一些js代码,应该怎么办?
diff --git a/migrate-1.3.x-1.5.x.md b/migrate-1.3.x-1.5.x.md
deleted file mode 100644
index 4f67bf3..0000000
--- a/migrate-1.3.x-1.5.x.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# vite-plugin-public-typescript 升级指南
-
-> 从 1.3.x 升级到 1.5.x
-
-**更新点:**
-
-- vite环境下,支持内存编译模式( `destination` 配置项),不会在 `publicDir` 下生成 `js` 文件了
-- 导出了 `injectScripts` 插件,用于插入脚本(尽量使用这个,不要再使用 `vite-plugin-html` 插脚本了)
-- 修复了一些奇怪的bug
-
-
-## 直接使用?
-
-1. 从 `vite-config` 中引入 `injectScripts` 替换 `vite-plugin-html`
-2. 注意 `publicTypescript` 的配置项。新版本默认 `inputDir: 'public-typescript'`(旧版本是 `publicTypescript`)。如果已经设置 `inputDir`,则不需要修改
-
-## 与 `modern-flexible` 一起使用?
-
-`vite-plugin-public-typescript` 的 `sideEffects` 设置为 `true`
-
-## 参考
-
-### with vite
-[playground](./playground/spa/vite.config.ts)
diff --git a/package.json b/package.json
index 5c09a3d..c8c9723 100644
--- a/package.json
+++ b/package.json
@@ -40,38 +40,38 @@
"preinstall": "npx only-allow pnpm",
"up": "pnpm update --i --L",
"taze": "taze -I -r -w",
- "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
- "bump": "bumpp package.json -c --all -p -t"
+ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
+ "bump": "bumpp package.json -c -p -t --all -x \"pnpm run changelog\""
},
"peerDependencies": {
"vite": "3 || 4"
},
"dependencies": {
"debug": "^4.3.4",
- "esbuild": "^0.19.2",
+ "esbuild": "^0.19.4",
"fs-extra": "^11.1.1",
- "magic-string": "^0.30.3",
+ "magic-string": "^0.30.5",
"on-change": "^4.0.2",
"parse5": "^7.1.2",
"tiny-glob": "^0.2.9",
"watcher": "^2.3.0"
},
"devDependencies": {
- "@minko-fe/eslint-config": "^1.3.3",
- "@minko-fe/tsconfig": "^1.3.3",
+ "@minko-fe/eslint-config": "^2.0.0",
+ "@minko-fe/tsconfig": "^2.0.0",
"@types/debug": "^4.1.9",
"@types/fs-extra": "^11.0.2",
- "@types/mock-fs": "^4.13.1",
- "@types/node": "^20.6.5",
+ "@types/mock-fs": "^4.13.2",
+ "@types/node": "^20.8.6",
"bumpp": "^9.2.0",
"conventional-changelog-cli": "^4.1.0",
- "eslint": "^8.50.0",
+ "eslint": "^8.51.0",
"mock-fs": "^5.2.0",
"sirv": "^2.0.3",
- "taze": "^0.11.2",
+ "taze": "^0.11.4",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
- "vite": "^4.4.9",
- "vitest": "^0.34.4"
+ "vite": "^4.4.11",
+ "vitest": "^0.34.6"
}
}
diff --git a/playground/spa/index.html b/playground/spa/index.html
index 2b6686b..66abb8a 100644
--- a/playground/spa/index.html
+++ b/playground/spa/index.html
@@ -5,7 +5,7 @@
-
Vite + React + TS
+ vite-plugin-public-typescript-demo
diff --git a/playground/spa/package.json b/playground/spa/package.json
index 5604d14..fb61adb 100644
--- a/playground/spa/package.json
+++ b/playground/spa/package.json
@@ -15,12 +15,12 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@types/react": "^18.2.21",
- "@types/react-dom": "^18.2.7",
- "@vitejs/plugin-react": "^4.0.4",
+ "@types/react": "^18.2.28",
+ "@types/react-dom": "^18.2.13",
+ "@vitejs/plugin-react": "^4.1.0",
"cross-env": "^7.0.3",
- "typescript": "^4.9.5",
- "vite": "^4.3.0",
+ "typescript": "^5.2.2",
+ "vite": "^4.4.11",
"vite-plugin-public-typescript": "workspace:*"
}
}
diff --git a/playground/spa/public-typescript/haha.ts b/playground/spa/public-typescript/haha.ts
index 52fee1c..bc03383 100644
--- a/playground/spa/public-typescript/haha.ts
+++ b/playground/spa/public-typescript/haha.ts
@@ -1,4 +1,2 @@
// @ts-expect-error
-console.log(haha)
-// @ts-expect-error
-console.log(app)
+console.log(haha, '来自vite define的环境变量')
diff --git a/playground/spa/public-typescript/index.ts b/playground/spa/public-typescript/index.ts
index 198ef78..77e85c0 100644
--- a/playground/spa/public-typescript/index.ts
+++ b/playground/spa/public-typescript/index.ts
@@ -1 +1 @@
-console.log(import.meta.env)
+console.log(import.meta.env, '来自 vite 的 import.meta.env')
diff --git a/playground/spa/public-typescript/manifest.json b/playground/spa/public-typescript/manifest.json
index 0711817..62db5e6 100644
--- a/playground/spa/public-typescript/manifest.json
+++ b/playground/spa/public-typescript/manifest.json
@@ -1,5 +1,5 @@
{
- "haha": "/spa/out/haha.bdaaba63.js",
- "index": "/spa/out/index.fd9d9011.js",
- "test": "/spa/out/test.e29e5748.js"
+ "haha": "/vite-plugin-public-typescript/out/haha.5ff2aef3.js",
+ "index": "/vite-plugin-public-typescript/out/index.d6349a0d.js",
+ "test": "/vite-plugin-public-typescript/out/test.09b479d0.js"
}
diff --git a/playground/spa/public-typescript/test.ts b/playground/spa/public-typescript/test.ts
index 4b2e663..f8c5e07 100644
--- a/playground/spa/public-typescript/test.ts
+++ b/playground/spa/public-typescript/test.ts
@@ -1 +1 @@
-console.log('test')
+console.log('test', '简单打印一个 test 字符串')
diff --git a/playground/spa/src/App.tsx b/playground/spa/src/App.tsx
index 996542c..7ec3018 100644
--- a/playground/spa/src/App.tsx
+++ b/playground/spa/src/App.tsx
@@ -1,27 +1,24 @@
-import { useState } from 'react'
-import reactLogo from './assets/react.svg'
+import manifest from '../public-typescript/manifest.json'
import './App.css'
-// const a = manifest.haha
+function formatManifst() {
+ return Object.keys(manifest).map((key) => (
+
+
文件 {key}.ts 的 js uri 是:
+
{(manifest as Record)[key]}
+
+ ))
+}
function App() {
- const [count, setCount] = useState(0)
-
return (
+
以下都是 vite-plugin-public-typescript 插件编译后,通过 manifest.json 文件获取的:
+
{formatManifst()}
+
-
Vite + React
-
-
+
请打开控制台观察以上文件的打印
-
Click on the Vite and React logos to learn more
)
}
diff --git a/playground/spa/vite.config.ts b/playground/spa/vite.config.ts
index 6722d83..b22febf 100644
--- a/playground/spa/vite.config.ts
+++ b/playground/spa/vite.config.ts
@@ -1,39 +1,17 @@
-import { type HtmlTagDescriptor, defineConfig } from 'vite'
+import { defineConfig } from 'vite'
import { injectScripts, publicTypescript } from 'vite-plugin-public-typescript'
import react from '@vitejs/plugin-react'
import manifest from './public-typescript/manifest.json'
// https://vitejs.dev/config/
-export default defineConfig((env) => ({
- base: '/spa',
+export default defineConfig(() => ({
+ base: '/vite-plugin-public-typescript/',
define: {
haha: JSON.stringify('custom define!'),
app: JSON.stringify({ hello: 'world' }),
},
plugins: [
react(),
- {
- name: 'transform-demo',
- async transformIndexHtml(html) {
- const tags: HtmlTagDescriptor[] = [
- {
- tag: 'script',
- attrs: {
- 'src': manifest.test,
- 'data-vppt': true,
- },
- injectTo: 'head-prepend',
- },
- ]
-
- html = html.replace('Vite + React + TS', env.command === 'build' ? 'build' : 'serve')
-
- return {
- html,
- tags,
- }
- },
- },
publicTypescript({
inputDir: 'public-typescript',
manifestName: 'manifest',
@@ -55,6 +33,11 @@ export default defineConfig((env) => ({
},
injectTo: 'head-prepend',
},
+ {
+ attrs: {
+ src: manifest.test,
+ },
+ },
]),
],
clearScreen: true,
diff --git a/playground/ssr/package.json b/playground/ssr/package.json
index 93258ce..7c95d68 100644
--- a/playground/ssr/package.json
+++ b/playground/ssr/package.json
@@ -19,13 +19,13 @@
"sirv": "^2.0.3"
},
"devDependencies": {
- "@types/express": "^4.17.17",
- "@types/node": "^18.17.15",
- "@types/react": "^18.2.21",
- "@types/react-dom": "^18.2.7",
+ "@types/express": "^4.17.19",
+ "@types/node": "^20.8.6",
+ "@types/react": "^18.2.28",
+ "@types/react-dom": "^18.2.13",
"cross-env": "^7.0.3",
- "typescript": "^4.9.5",
- "vite": "^4.4.9",
+ "typescript": "^5.2.2",
+ "vite": "^4.4.11",
"vite-plugin-public-typescript": "workspace:*"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 17d2e3e..22d35b7 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,14 +12,14 @@ importers:
specifier: ^4.3.4
version: 4.3.4
esbuild:
- specifier: ^0.19.2
- version: 0.19.2
+ specifier: ^0.19.4
+ version: 0.19.4
fs-extra:
specifier: ^11.1.1
version: 11.1.1
magic-string:
- specifier: ^0.30.3
- version: 0.30.3
+ specifier: ^0.30.5
+ version: 0.30.5
on-change:
specifier: ^4.0.2
version: 4.0.2
@@ -34,11 +34,11 @@ importers:
version: 2.3.0
devDependencies:
'@minko-fe/eslint-config':
- specifier: ^1.3.3
- version: 1.3.3(eslint@8.50.0)
+ specifier: ^2.0.0
+ version: 2.0.0(eslint@8.51.0)
'@minko-fe/tsconfig':
- specifier: ^1.3.3
- version: 1.3.3(typescript@5.2.2)
+ specifier: ^2.0.0
+ version: 2.0.0(typescript@5.2.2)
'@types/debug':
specifier: ^4.1.9
version: 4.1.9
@@ -46,11 +46,11 @@ importers:
specifier: ^11.0.2
version: 11.0.2
'@types/mock-fs':
- specifier: ^4.13.1
- version: 4.13.1
+ specifier: ^4.13.2
+ version: 4.13.2
'@types/node':
- specifier: ^20.6.5
- version: 20.6.5
+ specifier: ^20.8.6
+ version: 20.8.6
bumpp:
specifier: ^9.2.0
version: 9.2.0
@@ -58,8 +58,8 @@ importers:
specifier: ^4.1.0
version: 4.1.0
eslint:
- specifier: ^8.50.0
- version: 8.50.0
+ specifier: ^8.51.0
+ version: 8.51.0
mock-fs:
specifier: ^5.2.0
version: 5.2.0
@@ -67,8 +67,8 @@ importers:
specifier: ^2.0.3
version: 2.0.3
taze:
- specifier: ^0.11.2
- version: 0.11.2
+ specifier: ^0.11.4
+ version: 0.11.4
tsup:
specifier: ^7.2.0
version: 7.2.0(typescript@5.2.2)
@@ -76,11 +76,11 @@ importers:
specifier: ^5.2.2
version: 5.2.2
vite:
- specifier: ^4.4.9
- version: 4.4.9(@types/node@20.6.5)
+ specifier: ^4.4.11
+ version: 4.4.11(@types/node@20.8.6)
vitest:
- specifier: ^0.34.4
- version: 0.34.4
+ specifier: ^0.34.6
+ version: 0.34.6
playground/spa:
dependencies:
@@ -92,23 +92,23 @@ importers:
version: 18.2.0(react@18.2.0)
devDependencies:
'@types/react':
- specifier: ^18.2.21
- version: 18.2.21
+ specifier: ^18.2.28
+ version: 18.2.28
'@types/react-dom':
- specifier: ^18.2.7
- version: 18.2.7
+ specifier: ^18.2.13
+ version: 18.2.13
'@vitejs/plugin-react':
- specifier: ^4.0.4
- version: 4.0.4(vite@4.4.9)
+ specifier: ^4.1.0
+ version: 4.1.0(vite@4.4.11)
cross-env:
specifier: ^7.0.3
version: 7.0.3
typescript:
- specifier: ^4.9.5
- version: 4.9.5
+ specifier: ^5.2.2
+ version: 5.2.2
vite:
- specifier: ^4.3.0
- version: 4.4.9(@types/node@20.6.5)
+ specifier: ^4.4.11
+ version: 4.4.11(@types/node@20.8.6)
vite-plugin-public-typescript:
specifier: workspace:*
version: link:../..
@@ -135,26 +135,26 @@ importers:
version: 2.0.3
devDependencies:
'@types/express':
- specifier: ^4.17.17
- version: 4.17.17
+ specifier: ^4.17.19
+ version: 4.17.19
'@types/node':
- specifier: ^18.17.15
- version: 18.17.15
+ specifier: ^20.8.6
+ version: 20.8.6
'@types/react':
- specifier: ^18.2.21
- version: 18.2.21
+ specifier: ^18.2.28
+ version: 18.2.28
'@types/react-dom':
- specifier: ^18.2.7
- version: 18.2.7
+ specifier: ^18.2.13
+ version: 18.2.13
cross-env:
specifier: ^7.0.3
version: 7.0.3
typescript:
- specifier: ^4.9.5
- version: 4.9.5
+ specifier: ^5.2.2
+ version: 5.2.2
vite:
- specifier: ^4.4.9
- version: 4.4.9(@types/node@18.17.15)
+ specifier: ^4.4.11
+ version: 4.4.11(@types/node@20.8.6)
vite-plugin-public-typescript:
specifier: workspace:*
version: link:../..
@@ -196,21 +196,21 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.22.17:
- resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==}
+ /@babel/core@7.23.2:
+ resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
+ '@babel/generator': 7.23.0
'@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17)
- '@babel/helpers': 7.22.15
- '@babel/parser': 7.22.16
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helpers': 7.23.2
+ '@babel/parser': 7.23.0
'@babel/template': 7.22.15
- '@babel/traverse': 7.22.17
- '@babel/types': 7.22.17
- convert-source-map: 1.9.0
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
+ convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
@@ -219,11 +219,11 @@ packages:
- supports-color
dev: true
- /@babel/generator@7.22.15:
- resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==}
+ /@babel/generator@7.23.0:
+ resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.19
jsesc: 2.5.2
@@ -240,45 +240,45 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-environment-visitor@7.22.5:
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
+ /@babel/helper-environment-visitor@7.22.20:
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-function-name@7.22.5:
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
+ /@babel/helper-function-name@7.23.0:
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
dev: true
- /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17):
- resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==}
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
+ resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.17
- '@babel/helper-environment-visitor': 7.22.5
+ '@babel/core': 7.23.2
+ '@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.15
+ '@babel/helper-validator-identifier': 7.22.20
dev: true
/@babel/helper-plugin-utils@7.22.5:
@@ -290,14 +290,14 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
dev: true
/@babel/helper-string-parser@7.22.5:
@@ -320,13 +320,13 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helpers@7.22.15:
- resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==}
+ /@babel/helpers@7.23.2:
+ resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.22.17
- '@babel/types': 7.22.17
+ '@babel/traverse': 7.23.2
+ '@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -345,26 +345,34 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.22.17
+ '@babel/types': 7.23.0
+ dev: true
+
+ /@babel/parser@7.23.0:
+ resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.0
dev: true
- /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.17):
+ /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.17
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.17):
+ /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.17
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -373,22 +381,22 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/parser': 7.22.16
- '@babel/types': 7.22.17
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
dev: true
- /@babel/traverse@7.22.17:
- resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==}
+ /@babel/traverse@7.23.2:
+ resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@babel/generator': 7.23.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.16
- '@babel/types': 7.22.17
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -400,7 +408,16 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.15
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: true
+
+ /@babel/types@7.23.0:
+ resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
dev: true
@@ -413,8 +430,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.19.2:
- resolution: {integrity: sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==}
+ /@esbuild/android-arm64@0.19.4:
+ resolution: {integrity: sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -431,8 +448,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.19.2:
- resolution: {integrity: sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==}
+ /@esbuild/android-arm@0.19.4:
+ resolution: {integrity: sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -449,8 +466,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.19.2:
- resolution: {integrity: sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==}
+ /@esbuild/android-x64@0.19.4:
+ resolution: {integrity: sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -467,8 +484,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.19.2:
- resolution: {integrity: sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==}
+ /@esbuild/darwin-arm64@0.19.4:
+ resolution: {integrity: sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -485,8 +502,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.19.2:
- resolution: {integrity: sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==}
+ /@esbuild/darwin-x64@0.19.4:
+ resolution: {integrity: sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -503,8 +520,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.19.2:
- resolution: {integrity: sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==}
+ /@esbuild/freebsd-arm64@0.19.4:
+ resolution: {integrity: sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -521,8 +538,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.19.2:
- resolution: {integrity: sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==}
+ /@esbuild/freebsd-x64@0.19.4:
+ resolution: {integrity: sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -539,8 +556,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.19.2:
- resolution: {integrity: sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==}
+ /@esbuild/linux-arm64@0.19.4:
+ resolution: {integrity: sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -557,8 +574,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.19.2:
- resolution: {integrity: sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==}
+ /@esbuild/linux-arm@0.19.4:
+ resolution: {integrity: sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -575,8 +592,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.19.2:
- resolution: {integrity: sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==}
+ /@esbuild/linux-ia32@0.19.4:
+ resolution: {integrity: sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -593,8 +610,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.19.2:
- resolution: {integrity: sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==}
+ /@esbuild/linux-loong64@0.19.4:
+ resolution: {integrity: sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -611,8 +628,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.19.2:
- resolution: {integrity: sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==}
+ /@esbuild/linux-mips64el@0.19.4:
+ resolution: {integrity: sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -629,8 +646,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.19.2:
- resolution: {integrity: sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==}
+ /@esbuild/linux-ppc64@0.19.4:
+ resolution: {integrity: sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -647,8 +664,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.19.2:
- resolution: {integrity: sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==}
+ /@esbuild/linux-riscv64@0.19.4:
+ resolution: {integrity: sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -665,8 +682,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.19.2:
- resolution: {integrity: sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==}
+ /@esbuild/linux-s390x@0.19.4:
+ resolution: {integrity: sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -683,8 +700,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.19.2:
- resolution: {integrity: sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==}
+ /@esbuild/linux-x64@0.19.4:
+ resolution: {integrity: sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -701,8 +718,8 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.19.2:
- resolution: {integrity: sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==}
+ /@esbuild/netbsd-x64@0.19.4:
+ resolution: {integrity: sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -719,8 +736,8 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.19.2:
- resolution: {integrity: sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==}
+ /@esbuild/openbsd-x64@0.19.4:
+ resolution: {integrity: sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -737,8 +754,8 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.19.2:
- resolution: {integrity: sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==}
+ /@esbuild/sunos-x64@0.19.4:
+ resolution: {integrity: sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -755,8 +772,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.19.2:
- resolution: {integrity: sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==}
+ /@esbuild/win32-arm64@0.19.4:
+ resolution: {integrity: sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -773,8 +790,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.19.2:
- resolution: {integrity: sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==}
+ /@esbuild/win32-ia32@0.19.4:
+ resolution: {integrity: sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -791,8 +808,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.19.2:
- resolution: {integrity: sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==}
+ /@esbuild/win32-x64@0.19.4:
+ resolution: {integrity: sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -800,13 +817,13 @@ packages:
dev: false
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.50.0):
+ /@eslint-community/eslint-utils@4.4.0(eslint@8.51.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
dependencies:
- eslint: 8.50.0
+ eslint: 8.51.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -832,8 +849,8 @@ packages:
- supports-color
dev: true
- /@eslint/js@8.50.0:
- resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==}
+ /@eslint/js@8.51.0:
+ resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
@@ -928,38 +945,40 @@ packages:
type-detect: 4.0.8
dev: true
- /@minko-fe/eslint-config@1.3.3(eslint@8.50.0):
- resolution: {integrity: sha512-VcaY499BIH+dxAZtXLTN3xSoqYmzvxjzzfT2wDpTUCIWqr1Nrqmquef7maZ/xk3eDFibo0v1v9TAQnthTfH8fw==}
+ /@minko-fe/eslint-config@2.0.0(eslint@8.51.0):
+ resolution: {integrity: sha512-KPgr5vn+Afs83t7lqY6tKMGkBa50iBrdUynWo+aTj2NylyFRpLEU7oSZGxHKx/Ffn4wcvVlP8/TEFYwgaPEfBw==}
peerDependencies:
eslint: ^8.0.0
dependencies:
- '@minko-fe/prettier-config': 1.3.3(prettier@3.0.3)
- '@typescript-eslint/eslint-plugin': 6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/parser': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
- eslint: 8.50.0
- eslint-config-prettier: 9.0.0(eslint@8.50.0)
- eslint-config-standard: 17.1.0(eslint-plugin-import@2.28.1)(eslint-plugin-n@16.1.0)(eslint-plugin-promise@6.1.1)(eslint@8.50.0)
+ '@minko-fe/prettier-config': 1.3.7(prettier@3.0.3)
+ '@typescript-eslint/eslint-plugin': 6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ eslint: 8.51.0
+ eslint-config-prettier: 9.0.0(eslint@8.51.0)
+ eslint-config-standard: 17.1.0(eslint-plugin-import@2.28.1)(eslint-plugin-n@16.1.0)(eslint-plugin-promise@6.1.1)(eslint@8.51.0)
eslint-define-config: 1.23.0
- eslint-plugin-antfu: 1.0.0-beta.3(eslint@8.50.0)(typescript@5.2.2)
- eslint-plugin-eslint-comments: 3.2.0(eslint@8.50.0)
+ eslint-plugin-antfu: 0.43.1(eslint@8.51.0)(typescript@5.2.2)
+ eslint-plugin-eslint-comments: 3.2.0(eslint@8.51.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-i: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)
- eslint-plugin-jsonc: 2.9.0(eslint@8.50.0)
- eslint-plugin-markdown: 3.0.1(eslint@8.50.0)
- eslint-plugin-n: 16.1.0(eslint@8.50.0)
- eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.50.0)(prettier@3.0.3)
- eslint-plugin-promise: 6.1.1(eslint@8.50.0)
- eslint-plugin-react: 7.33.2(eslint@8.50.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.50.0)
+ eslint-plugin-i: 2.28.1(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)
+ eslint-plugin-jsonc: 2.9.0(eslint@8.51.0)
+ eslint-plugin-markdown: 3.0.1(eslint@8.51.0)
+ eslint-plugin-n: 16.1.0(eslint@8.51.0)
+ eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.51.0)(prettier@3.0.3)
+ eslint-plugin-promise: 6.1.1(eslint@8.51.0)
+ eslint-plugin-react: 7.33.2(eslint@8.51.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@8.51.0)
eslint-plugin-sort-keys: 2.3.5
- eslint-plugin-unicorn: 48.0.1(eslint@8.50.0)
- eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.7.2)(eslint@8.50.0)
- eslint-plugin-vue: 9.17.0(eslint@8.50.0)
- eslint-plugin-yml: 1.9.0(eslint@8.50.0)
+ eslint-plugin-unicorn: 48.0.1(eslint@8.51.0)
+ eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.7.5)(eslint@8.51.0)
+ eslint-plugin-vue: 9.17.0(eslint@8.51.0)
+ eslint-plugin-yml: 1.9.0(eslint@8.51.0)
+ find-up: 5.0.0
globals: 13.22.0
jsonc-eslint-parser: 2.3.0
local-pkg: 0.4.3
+ parse-gitignore: 2.0.0
prettier: 3.0.3
typescript: 5.2.2
yaml-eslint-parser: 1.2.2
@@ -970,16 +989,16 @@ packages:
- supports-color
dev: true
- /@minko-fe/prettier-config@1.3.3(prettier@3.0.3):
- resolution: {integrity: sha512-ZRqLWZnNZ3FpOS0YinaaeUVzhs2ofZKr6G0x78GjFYVIDrVU1GtB/AwEYDCb4vvX4U+4qvjPayAZBuN9W2km0Q==}
+ /@minko-fe/prettier-config@1.3.7(prettier@3.0.3):
+ resolution: {integrity: sha512-SJTJtiGrrzDFsLvQDGSjL2BUqVeJfRqlkU/cpACQRoW+PUQqNeflylBc/pKzGgOEnhppb5C6gEcARQ8QamLJFg==}
peerDependencies:
prettier: '>=2.0.0'
dependencies:
prettier: 3.0.3
dev: true
- /@minko-fe/tsconfig@1.3.3(typescript@5.2.2):
- resolution: {integrity: sha512-J3Zx5Ty7YP/EBLdMt839fkU+Yr8CRNEn43JiIOia7FE8ArRgnpjQWsxY4fUbnXi10aRh3RCylIY+/nYexCsVSg==}
+ /@minko-fe/tsconfig@2.0.0(typescript@5.2.2):
+ resolution: {integrity: sha512-yNJ/CkD2c9YNvoaPG1TrxMCq379dfev2RAsTsgdezHcUjSVpPeoB8Q8qdeZaHpgqUe3yTrqiyTOVRtiUzHKPOw==}
peerDependencies:
typescript: '>=4.0.0'
dependencies:
@@ -1007,9 +1026,22 @@ packages:
fastq: 1.15.0
dev: true
- /@npmcli/config@6.2.1:
- resolution: {integrity: sha512-Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@npmcli/agent@2.2.0:
+ resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ agent-base: 7.1.0
+ http-proxy-agent: 7.0.0
+ https-proxy-agent: 7.0.2
+ lru-cache: 10.0.1
+ socks-proxy-agent: 8.0.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@npmcli/config@8.0.0:
+ resolution: {integrity: sha512-a2ybqstXSCAbP7QghgGcOvLTBlaR3wWQyAmTfWXJld6qP6+vKQabTZQwzRPs00kKi870beNZHhV4Fvlca2l/uA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@npmcli/map-workspaces': 3.0.4
ci-info: 3.8.0
@@ -1028,18 +1060,18 @@ packages:
semver: 7.5.4
dev: true
- /@npmcli/git@4.1.0:
- resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@npmcli/git@5.0.3:
+ resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@npmcli/promise-spawn': 6.0.2
- lru-cache: 7.18.3
- npm-pick-manifest: 8.0.2
+ '@npmcli/promise-spawn': 7.0.0
+ lru-cache: 10.0.1
+ npm-pick-manifest: 9.0.0
proc-log: 3.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
semver: 7.5.4
- which: 3.0.1
+ which: 4.0.0
transitivePeerDependencies:
- bluebird
dev: true
@@ -1073,22 +1105,22 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /@npmcli/promise-spawn@6.0.2:
- resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@npmcli/promise-spawn@7.0.0:
+ resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- which: 3.0.1
+ which: 4.0.0
dev: true
- /@npmcli/run-script@6.0.2:
- resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@npmcli/run-script@7.0.1:
+ resolution: {integrity: sha512-Od/JMrgkjZ8alyBE0IzeqZDiF1jgMez9Gkc/OYrCkHHiXNwM0wc6s7+h+xM7kYDZkS0tAoOLr9VvygyE5+2F7g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@npmcli/node-gyp': 3.0.0
- '@npmcli/promise-spawn': 6.0.2
+ '@npmcli/promise-spawn': 7.0.0
node-gyp: 9.4.0
read-package-json-fast: 3.0.2
- which: 3.0.1
+ which: 4.0.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -1115,9 +1147,9 @@ packages:
/@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
- /@sigstore/bundle@1.1.0:
- resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@sigstore/bundle@2.1.0:
+ resolution: {integrity: sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@sigstore/protobuf-specs': 0.2.1
dev: true
@@ -1127,23 +1159,23 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /@sigstore/sign@1.0.0:
- resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@sigstore/sign@2.1.0:
+ resolution: {integrity: sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 1.1.0
+ '@sigstore/bundle': 2.1.0
'@sigstore/protobuf-specs': 0.2.1
- make-fetch-happen: 11.1.1
+ make-fetch-happen: 13.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /@sigstore/tuf@1.0.3:
- resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@sigstore/tuf@2.2.0:
+ resolution: {integrity: sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
'@sigstore/protobuf-specs': 0.2.1
- tuf-js: 1.1.7
+ tuf-js: 2.1.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -1157,24 +1189,53 @@ packages:
engines: {node: '>= 10'}
dev: true
- /@tufjs/canonical-json@1.0.0:
- resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@tufjs/canonical-json@2.0.0:
+ resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dev: true
- /@tufjs/models@1.0.4:
- resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /@tufjs/models@2.0.0:
+ resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@tufjs/canonical-json': 1.0.0
+ '@tufjs/canonical-json': 2.0.0
minimatch: 9.0.3
dev: true
+ /@types/babel__core@7.20.2:
+ resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==}
+ dependencies:
+ '@babel/parser': 7.22.16
+ '@babel/types': 7.22.17
+ '@types/babel__generator': 7.6.5
+ '@types/babel__template': 7.4.2
+ '@types/babel__traverse': 7.20.2
+ dev: true
+
+ /@types/babel__generator@7.6.5:
+ resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==}
+ dependencies:
+ '@babel/types': 7.23.0
+ dev: true
+
+ /@types/babel__template@7.4.2:
+ resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==}
+ dependencies:
+ '@babel/parser': 7.23.0
+ '@babel/types': 7.23.0
+ dev: true
+
+ /@types/babel__traverse@7.20.2:
+ resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==}
+ dependencies:
+ '@babel/types': 7.23.0
+ dev: true
+
/@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.36
- '@types/node': 18.17.15
+ '@types/node': 20.8.6
dev: true
/@types/chai-subset@1.3.3:
@@ -1190,7 +1251,7 @@ packages:
/@types/connect@3.4.36:
resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
dependencies:
- '@types/node': 18.17.15
+ '@types/node': 20.8.6
dev: true
/@types/debug@4.1.9:
@@ -1202,13 +1263,13 @@ packages:
/@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
- '@types/node': 18.17.15
+ '@types/node': 20.8.6
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
dev: true
- /@types/express@4.17.17:
- resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
+ /@types/express@4.17.19:
+ resolution: {integrity: sha512-UtOfBtzN9OvpZPPbnnYunfjM7XCI4jyk1NvnFhTVz5krYAnW4o5DCoIekvms+8ApqhB4+9wSge1kBijdfTSmfg==}
dependencies:
'@types/body-parser': 1.19.2
'@types/express-serve-static-core': 4.17.33
@@ -1220,7 +1281,7 @@ packages:
resolution: {integrity: sha512-c0hrgAOVYr21EX8J0jBMXGLMgJqVf/v6yxi0dLaJboW9aQPh16Id+z6w2Tx1hm+piJOLv8xPfVKZCLfjPw/IMQ==}
dependencies:
'@types/jsonfile': 6.1.2
- '@types/node': 20.6.5
+ '@types/node': 20.8.6
dev: true
/@types/json-schema@7.0.13:
@@ -1234,7 +1295,7 @@ packages:
/@types/jsonfile@6.1.2:
resolution: {integrity: sha512-8t92P+oeW4d/CRQfJaSqEwXujrhH4OEeHRjGU3v1Q8mUS8GPF3yiX26sw4svv6faL2HfBtGTe2xWIoVgN3dy9w==}
dependencies:
- '@types/node': 20.6.5
+ '@types/node': 20.8.6
dev: true
/@types/mdast@3.0.12:
@@ -1247,22 +1308,20 @@ packages:
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
dev: true
- /@types/mock-fs@4.13.1:
- resolution: {integrity: sha512-m6nFAJ3lBSnqbvDZioawRvpLXSaPyn52Srf7OfzjubYbYX8MTUdIgDxQl0wEapm4m/pNYSd9TXocpQ0TvZFlYA==}
+ /@types/mock-fs@4.13.2:
+ resolution: {integrity: sha512-mSIMAOjrNTVUFmZgJEigSIm+GlS4hbrk8U5+M8EB45uMrykKdN9TidjjSaOY1yFph2+TD7bsIfB4r+IrMYVyPQ==}
dependencies:
- '@types/node': 20.6.5
+ '@types/node': 20.8.6
dev: true
/@types/ms@0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: true
- /@types/node@18.17.15:
- resolution: {integrity: sha512-2yrWpBk32tvV/JAd3HNHWuZn/VDN1P+72hWirHnvsvTGSqbANi+kSeuQR9yAHnbvaBvHDsoTdXV0Fe+iRtHLKA==}
- dev: true
-
- /@types/node@20.6.5:
- resolution: {integrity: sha512-2qGq5LAOTh9izcc0+F+dToFigBWiK1phKPt7rNhOqJSr35y8rlIBjDwGtFSgAI6MGIhjwOVNSQZVdJsZJ2uR1w==}
+ /@types/node@20.8.6:
+ resolution: {integrity: sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==}
+ dependencies:
+ undici-types: 5.25.3
dev: true
/@types/normalize-package-data@2.4.2:
@@ -1281,14 +1340,14 @@ packages:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
dev: true
- /@types/react-dom@18.2.7:
- resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
+ /@types/react-dom@18.2.13:
+ resolution: {integrity: sha512-eJIUv7rPP+EC45uNYp/ThhSpE16k22VJUknt5OLoH9tbXoi8bMhwLf5xRuWMywamNbWzhrSmU7IBJfPup1+3fw==}
dependencies:
- '@types/react': 18.2.21
+ '@types/react': 18.2.28
dev: true
- /@types/react@18.2.21:
- resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==}
+ /@types/react@18.2.28:
+ resolution: {integrity: sha512-ad4aa/RaaJS3hyGz0BGegdnSRXQBkd1CCYDCdNjBPg90UUpLgo+WlJqb9fMYUxtehmzF3PJaTWqRZjko6BRzBg==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
@@ -1307,15 +1366,15 @@ packages:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
- '@types/node': 18.17.15
+ '@types/node': 20.8.6
dev: true
/@types/unist@2.0.8:
resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==}
dev: true
- /@typescript-eslint/eslint-plugin@6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-ooaHxlmSgZTM6CHYAFRlifqh1OAr3PAQEwi7lhYhaegbnXrnh7CDcHmc3+ihhbQC7H0i4JF0psI5ehzkF6Yl6Q==}
+ /@typescript-eslint/eslint-plugin@6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-JhtAwTRhOUcP96D0Y6KYnwig/MRQbOoLGXTON2+LlyB/N35SP9j1boai2zzwXb7ypKELXMx3DVk9UTaEq1vHEw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -1326,13 +1385,13 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.8.1
- '@typescript-eslint/parser': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.7.2
- '@typescript-eslint/type-utils': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.2
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/type-utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
- eslint: 8.50.0
+ eslint: 8.51.0
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
@@ -1343,8 +1402,8 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser@6.7.2(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-KA3E4ox0ws+SPyxQf9iSI25R6b4Ne78ORhNHeVKrPQnoYsb9UhieoiRoJgrzgEeKGOXhcY1i8YtOeCHHTDa6Fw==}
+ /@typescript-eslint/parser@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-bIZVSGx2UME/lmhLcjdVc7ePBwn7CLqKarUBL4me1C5feOd663liTGjMBGVcGr+BhnSLeP4SgwdvNnnkbIdkCw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -1353,27 +1412,27 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.2
- '@typescript-eslint/types': 6.7.2
- '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.2
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
- eslint: 8.50.0
+ eslint: 8.51.0
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@6.7.2:
- resolution: {integrity: sha512-bgi6plgyZjEqapr7u2mhxGR6E8WCzKNUFWNh6fkpVe9+yzRZeYtDTbsIBzKbcxI+r1qVWt6VIoMSNZ4r2A+6Yw==}
+ /@typescript-eslint/scope-manager@6.7.5:
+ resolution: {integrity: sha512-GAlk3eQIwWOJeb9F7MKQ6Jbah/vx1zETSDw8likab/eFcqkjSD7BI75SDAeC5N2L0MmConMoPvTsmkrg71+B1A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.2
- '@typescript-eslint/visitor-keys': 6.7.2
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/visitor-keys': 6.7.5
dev: true
- /@typescript-eslint/type-utils@6.7.2(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-36F4fOYIROYRl0qj95dYKx6kybddLtsbmPIYNK0OBeXv2j9L5nZ17j9jmfy+bIDHKQgn2EZX+cofsqi8NPATBQ==}
+ /@typescript-eslint/type-utils@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-Gs0qos5wqxnQrvpYv+pf3XfcRXW6jiAn9zE/K+DlmYf6FcpxeNYN0AIETaPR7rHO4K2UY+D0CIbDP9Ut0U4m1g==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -1382,23 +1441,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
debug: 4.3.4
- eslint: 8.50.0
+ eslint: 8.51.0
ts-api-utils: 1.0.3(typescript@5.2.2)
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types@6.7.2:
- resolution: {integrity: sha512-flJYwMYgnUNDAN9/GAI3l8+wTmvTYdv64fcH8aoJK76Y+1FCZ08RtI5zDerM/FYT5DMkAc+19E4aLmd5KqdFyg==}
+ /@typescript-eslint/types@6.7.5:
+ resolution: {integrity: sha512-WboQBlOXtdj1tDFPyIthpKrUb+kZf2VroLZhxKa/VlwLlLyqv/PwUNgL30BlTVZV1Wu4Asu2mMYPqarSO4L5ZQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@6.7.2(typescript@5.2.2):
- resolution: {integrity: sha512-kiJKVMLkoSciGyFU0TOY0fRxnp9qq1AzVOHNeN1+B9erKFCJ4Z8WdjAkKQPP+b1pWStGFqezMLltxO+308dJTQ==}
+ /@typescript-eslint/typescript-estree@6.7.5(typescript@5.2.2):
+ resolution: {integrity: sha512-NhJiJ4KdtwBIxrKl0BqG1Ur+uw7FiOnOThcYx9DpOGJ/Abc9z2xNzLeirCG02Ig3vkvrc2qFLmYSSsaITbKjlg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -1406,8 +1465,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.2
- '@typescript-eslint/visitor-keys': 6.7.2
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/visitor-keys': 6.7.5
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -1418,80 +1477,81 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@6.7.2(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-ZCcBJug/TS6fXRTsoTkgnsvyWSiXwMNiPzBUani7hDidBdj1779qwM1FIAmpH4lvlOZNF3EScsxxuGifjpLSWQ==}
+ /@typescript-eslint/utils@6.7.5(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-pfRRrH20thJbzPPlPc4j0UNGvH1PjPlhlCMq4Yx7EGjV7lvEeGX0U6MJYe8+SyFutWgSHsdbJ3BXzZccYggezA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
'@types/json-schema': 7.0.13
'@types/semver': 7.5.2
- '@typescript-eslint/scope-manager': 6.7.2
- '@typescript-eslint/types': 6.7.2
- '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2)
- eslint: 8.50.0
+ '@typescript-eslint/scope-manager': 6.7.5
+ '@typescript-eslint/types': 6.7.5
+ '@typescript-eslint/typescript-estree': 6.7.5(typescript@5.2.2)
+ eslint: 8.51.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys@6.7.2:
- resolution: {integrity: sha512-uVw9VIMFBUTz8rIeaUT3fFe8xIUx8r4ywAdlQv1ifH+6acn/XF8Y6rwJ7XNmkNMDrTW+7+vxFFPIF40nJCVsMQ==}
+ /@typescript-eslint/visitor-keys@6.7.5:
+ resolution: {integrity: sha512-3MaWdDZtLlsexZzDSdQWsFQ9l9nL8B80Z4fImSpyllFC/KLqWQRdEcB+gGGO+N3Q2uL40EsG66wZLsohPxNXvg==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.2
+ '@typescript-eslint/types': 6.7.5
eslint-visitor-keys: 3.4.3
dev: true
- /@vitejs/plugin-react@4.0.4(vite@4.4.9):
- resolution: {integrity: sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g==}
+ /@vitejs/plugin-react@4.1.0(vite@4.4.11):
+ resolution: {integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0
dependencies:
- '@babel/core': 7.22.17
- '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.17)
- '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.17)
+ '@babel/core': 7.23.2
+ '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2)
+ '@types/babel__core': 7.20.2
react-refresh: 0.14.0
- vite: 4.4.9(@types/node@20.6.5)
+ vite: 4.4.11(@types/node@20.8.6)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitest/expect@0.34.4:
- resolution: {integrity: sha512-XlMKX8HyYUqB8dsY8Xxrc64J2Qs9pKMt2Z8vFTL4mBWXJsg4yoALHzJfDWi8h5nkO4Zua4zjqtapQ/IluVkSnA==}
+ /@vitest/expect@0.34.6:
+ resolution: {integrity: sha512-QUzKpUQRc1qC7qdGo7rMK3AkETI7w18gTCUrsNnyjjJKYiuUB9+TQK3QnR1unhCnWRC0AbKv2omLGQDF/mIjOw==}
dependencies:
- '@vitest/spy': 0.34.4
- '@vitest/utils': 0.34.4
- chai: 4.3.8
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
+ chai: 4.3.10
dev: true
- /@vitest/runner@0.34.4:
- resolution: {integrity: sha512-hwwdB1StERqUls8oV8YcpmTIpVeJMe4WgYuDongVzixl5hlYLT2G8afhcdADeDeqCaAmZcSgLTLtqkjPQF7x+w==}
+ /@vitest/runner@0.34.6:
+ resolution: {integrity: sha512-1CUQgtJSLF47NnhN+F9X2ycxUP0kLHQ/JWvNHbeBfwW8CzEGgeskzNnHDyv1ieKTltuR6sdIHV+nmR6kPxQqzQ==}
dependencies:
- '@vitest/utils': 0.34.4
+ '@vitest/utils': 0.34.6
p-limit: 4.0.0
pathe: 1.1.1
dev: true
- /@vitest/snapshot@0.34.4:
- resolution: {integrity: sha512-GCsh4coc3YUSL/o+BPUo7lHQbzpdttTxL6f4q0jRx2qVGoYz/cyTRDJHbnwks6TILi6560bVWoBpYC10PuTLHw==}
+ /@vitest/snapshot@0.34.6:
+ resolution: {integrity: sha512-B3OZqYn6k4VaN011D+ve+AA4whM4QkcwcrwaKwAbyyvS/NB1hCWjFIBQxAQQSQir9/RtyAAGuq+4RJmbn2dH4w==}
dependencies:
- magic-string: 0.30.3
+ magic-string: 0.30.5
pathe: 1.1.1
pretty-format: 29.7.0
dev: true
- /@vitest/spy@0.34.4:
- resolution: {integrity: sha512-PNU+fd7DUPgA3Ya924b1qKuQkonAW6hL7YUjkON3wmBwSTIlhOSpy04SJ0NrRsEbrXgMMj6Morh04BMf8k+w0g==}
+ /@vitest/spy@0.34.6:
+ resolution: {integrity: sha512-xaCvneSaeBw/cz8ySmF7ZwGvL0lBjfvqc1LpQ/vcdHEvpLn3Ff1vAvjw+CoGn0802l++5L/pxb7whwcWAw+DUQ==}
dependencies:
tinyspy: 2.1.1
dev: true
- /@vitest/utils@0.34.4:
- resolution: {integrity: sha512-yR2+5CHhp/K4ySY0Qtd+CAL9f5Yh1aXrKfAT42bq6CtlGPh92jIDDDSg7ydlRow1CP+dys4TrOrbELOyNInHSg==}
+ /@vitest/utils@0.34.6:
+ resolution: {integrity: sha512-IG5aDD8S6zlvloDsnzHw0Ut5xczlF+kv2BOTo+iXfPr54Yhi5qbVOgGB1hZaVq4iJ4C/MZ2J0y15IlsV/ZcI0A==}
dependencies:
diff-sequences: 29.6.3
loupe: 2.3.6
@@ -1555,6 +1615,15 @@ packages:
- supports-color
dev: true
+ /agent-base@7.1.0:
+ resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
+ engines: {node: '>= 14'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/agentkeepalive@4.5.0:
resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
engines: {node: '>= 8.0.0'}
@@ -1911,6 +1980,24 @@ packages:
unique-filename: 3.0.0
dev: true
+ /cacache@18.0.0:
+ resolution: {integrity: sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ '@npmcli/fs': 3.1.0
+ fs-minipass: 3.0.3
+ glob: 10.3.4
+ lru-cache: 10.0.1
+ minipass: 7.0.3
+ minipass-collect: 1.0.2
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ p-map: 4.0.0
+ ssri: 10.0.5
+ tar: 6.2.0
+ unique-filename: 3.0.0
+ dev: true
+
/call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
@@ -1930,14 +2017,14 @@ packages:
resolution: {integrity: sha512-vlPVrhsCS7XaSh2VvWluIQEzVhefrUQcEsQWSS5A5V+dM07uv1qHeQzAOTGIMy9i3e9bH15+muvI/UHojVgS/Q==}
dev: true
- /chai@4.3.8:
- resolution: {integrity: sha512-vX4YvVVtxlfSZ2VecZgFUTU5qPCYsobVI2O9FmwEXBhDigYGQA6jRXCycIs1yJnnWbZ6/+a2zNIF5DfVCcJBFQ==}
+ /chai@4.3.10:
+ resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
- check-error: 1.0.2
+ check-error: 1.0.3
deep-eql: 4.1.3
- get-func-name: 2.0.0
+ get-func-name: 2.0.2
loupe: 2.3.6
pathval: 1.1.1
type-detect: 4.0.8
@@ -1972,8 +2059,10 @@ packages:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
dev: true
- /check-error@1.0.2:
- resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
+ /check-error@1.0.3:
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ dependencies:
+ get-func-name: 2.0.2
dev: true
/chokidar@3.5.3:
@@ -2013,6 +2102,13 @@ packages:
engines: {node: '>=6'}
dev: true
+ /cli-progress@3.12.0:
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
+ dependencies:
+ string-width: 4.2.3
+ dev: true
+
/cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
@@ -2235,8 +2331,8 @@ packages:
split2: 4.2.0
dev: true
- /convert-source-map@1.9.0:
- resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ /convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
dev: true
/cookie-signature@1.0.6:
@@ -2324,6 +2420,11 @@ packages:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
+ /deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/default-browser-id@3.0.0:
resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
engines: {node: '>=12'}
@@ -2631,34 +2732,34 @@ packages:
'@esbuild/win32-x64': 0.18.20
dev: true
- /esbuild@0.19.2:
- resolution: {integrity: sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==}
+ /esbuild@0.19.4:
+ resolution: {integrity: sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.2
- '@esbuild/android-arm64': 0.19.2
- '@esbuild/android-x64': 0.19.2
- '@esbuild/darwin-arm64': 0.19.2
- '@esbuild/darwin-x64': 0.19.2
- '@esbuild/freebsd-arm64': 0.19.2
- '@esbuild/freebsd-x64': 0.19.2
- '@esbuild/linux-arm': 0.19.2
- '@esbuild/linux-arm64': 0.19.2
- '@esbuild/linux-ia32': 0.19.2
- '@esbuild/linux-loong64': 0.19.2
- '@esbuild/linux-mips64el': 0.19.2
- '@esbuild/linux-ppc64': 0.19.2
- '@esbuild/linux-riscv64': 0.19.2
- '@esbuild/linux-s390x': 0.19.2
- '@esbuild/linux-x64': 0.19.2
- '@esbuild/netbsd-x64': 0.19.2
- '@esbuild/openbsd-x64': 0.19.2
- '@esbuild/sunos-x64': 0.19.2
- '@esbuild/win32-arm64': 0.19.2
- '@esbuild/win32-ia32': 0.19.2
- '@esbuild/win32-x64': 0.19.2
+ '@esbuild/android-arm': 0.19.4
+ '@esbuild/android-arm64': 0.19.4
+ '@esbuild/android-x64': 0.19.4
+ '@esbuild/darwin-arm64': 0.19.4
+ '@esbuild/darwin-x64': 0.19.4
+ '@esbuild/freebsd-arm64': 0.19.4
+ '@esbuild/freebsd-x64': 0.19.4
+ '@esbuild/linux-arm': 0.19.4
+ '@esbuild/linux-arm64': 0.19.4
+ '@esbuild/linux-ia32': 0.19.4
+ '@esbuild/linux-loong64': 0.19.4
+ '@esbuild/linux-mips64el': 0.19.4
+ '@esbuild/linux-ppc64': 0.19.4
+ '@esbuild/linux-riscv64': 0.19.4
+ '@esbuild/linux-s390x': 0.19.4
+ '@esbuild/linux-x64': 0.19.4
+ '@esbuild/netbsd-x64': 0.19.4
+ '@esbuild/openbsd-x64': 0.19.4
+ '@esbuild/sunos-x64': 0.19.4
+ '@esbuild/win32-arm64': 0.19.4
+ '@esbuild/win32-ia32': 0.19.4
+ '@esbuild/win32-x64': 0.19.4
dev: false
/escalade@3.1.1:
@@ -2680,16 +2781,16 @@ packages:
engines: {node: '>=10'}
dev: true
- /eslint-config-prettier@9.0.0(eslint@8.50.0):
+ /eslint-config-prettier@9.0.0(eslint@8.51.0):
resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.50.0
+ eslint: 8.51.0
dev: true
- /eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1)(eslint-plugin-n@16.1.0)(eslint-plugin-promise@6.1.1)(eslint@8.50.0):
+ /eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1)(eslint-plugin-n@16.1.0)(eslint-plugin-promise@6.1.1)(eslint@8.51.0):
resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -2698,10 +2799,10 @@ packages:
eslint-plugin-n: '^15.0.0 || ^16.0.0 '
eslint-plugin-promise: ^6.0.0
dependencies:
- eslint: 8.50.0
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)
- eslint-plugin-n: 16.1.0(eslint@8.50.0)
- eslint-plugin-promise: 6.1.1(eslint@8.50.0)
+ eslint: 8.51.0
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)
+ eslint-plugin-n: 16.1.0(eslint@8.51.0)
+ eslint-plugin-promise: 6.1.1(eslint@8.51.0)
dev: true
/eslint-define-config@1.23.0:
@@ -2719,7 +2820,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.2)(eslint-import-resolver-node@0.3.9)(eslint@8.50.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.5)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -2740,43 +2841,43 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
debug: 3.2.7
- eslint: 8.50.0
+ eslint: 8.51.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-antfu@1.0.0-beta.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-jP9wSGmfWbAUVqzZAdq314kNFTnKjZpiqdQhCbKDVdSL9m6aGuG94FOK5nbpwQJA5vKdYc3PSPiZy1yFjWDPwg==}
+ /eslint-plugin-antfu@0.43.1(eslint@8.51.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-Nak+Qpy5qEK10dCXtVaabPTUmLBPLhsVKAFXAtxYGYRlY/SuuZUBhW2YIsLsixNROiICGuov8sN+eNOCC7Wb5g==}
dependencies:
- '@typescript-eslint/utils': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
transitivePeerDependencies:
- eslint
- supports-color
- typescript
dev: true
- /eslint-plugin-es-x@7.2.0(eslint@8.50.0):
+ /eslint-plugin-es-x@7.2.0(eslint@8.51.0):
resolution: {integrity: sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '>=8'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
'@eslint-community/regexpp': 4.8.1
- eslint: 8.50.0
+ eslint: 8.51.0
dev: true
- /eslint-plugin-eslint-comments@3.2.0(eslint@8.50.0):
+ /eslint-plugin-eslint-comments@3.2.0(eslint@8.51.0):
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
engines: {node: '>=6.5.0'}
peerDependencies:
eslint: '>=4.19.1'
dependencies:
escape-string-regexp: 1.0.5
- eslint: 8.50.0
+ eslint: 8.51.0
ignore: 5.2.4
dev: true
@@ -2786,7 +2887,7 @@ packages:
htmlparser2: 8.0.2
dev: true
- /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.50.0):
+ /eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.7.5)(eslint@8.51.0):
resolution: {integrity: sha512-a4oVt0j3ixNhGhvV4XF6NS7OWRFK2rrJ0Q5C4S2dSRb8FxZi31J0uUd5WJLL58wnVJ/OiQ1BxiXnFA4dWQO1Cg==}
engines: {node: '>=12'}
peerDependencies:
@@ -2794,9 +2895,9 @@ packages:
dependencies:
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.50.0
+ eslint: 8.51.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.2)(eslint-import-resolver-node@0.3.9)(eslint@8.50.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.5)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0)
get-tsconfig: 4.7.2
is-glob: 4.0.3
minimatch: 3.1.2
@@ -2809,7 +2910,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.50.0):
+ /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.5)(eslint@8.51.0):
resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
engines: {node: '>=4'}
peerDependencies:
@@ -2819,16 +2920,16 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.2(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.5(eslint@8.51.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.50.0
+ eslint: 8.51.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.2)(eslint-import-resolver-node@0.3.9)(eslint@8.50.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.5)(eslint-import-resolver-node@0.3.9)(eslint@8.51.0)
has: 1.0.3
is-core-module: 2.13.0
is-glob: 4.0.3
@@ -2844,40 +2945,40 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jsonc@2.9.0(eslint@8.50.0):
+ /eslint-plugin-jsonc@2.9.0(eslint@8.51.0):
resolution: {integrity: sha512-RK+LeONVukbLwT2+t7/OY54NJRccTXh/QbnXzPuTLpFMVZhPuq1C9E07+qWenGx7rrQl0kAalAWl7EmB+RjpGA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
- eslint: 8.50.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ eslint: 8.51.0
jsonc-eslint-parser: 2.3.0
natural-compare: 1.4.0
dev: true
- /eslint-plugin-markdown@3.0.1(eslint@8.50.0):
+ /eslint-plugin-markdown@3.0.1(eslint@8.51.0):
resolution: {integrity: sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.50.0
+ eslint: 8.51.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-n@16.1.0(eslint@8.50.0):
+ /eslint-plugin-n@16.1.0(eslint@8.51.0):
resolution: {integrity: sha512-3wv/TooBst0N4ND+pnvffHuz9gNPmk/NkLwAxOt2JykTl/hcuECe6yhTtLJcZjIxtZwN+GX92ACp/QTLpHA3Hg==}
engines: {node: '>=16.0.0'}
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
builtins: 5.0.1
- eslint: 8.50.0
- eslint-plugin-es-x: 7.2.0(eslint@8.50.0)
+ eslint: 8.51.0
+ eslint-plugin-es-x: 7.2.0(eslint@8.51.0)
get-tsconfig: 4.7.2
ignore: 5.2.4
is-core-module: 2.13.0
@@ -2886,7 +2987,7 @@ packages:
semver: 7.5.4
dev: true
- /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.50.0)(prettier@3.0.3):
+ /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.51.0)(prettier@3.0.3):
resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -2900,32 +3001,32 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.50.0
- eslint-config-prettier: 9.0.0(eslint@8.50.0)
+ eslint: 8.51.0
+ eslint-config-prettier: 9.0.0(eslint@8.51.0)
prettier: 3.0.3
prettier-linter-helpers: 1.0.0
synckit: 0.8.5
dev: true
- /eslint-plugin-promise@6.1.1(eslint@8.50.0):
+ /eslint-plugin-promise@6.1.1(eslint@8.51.0):
resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.50.0
+ eslint: 8.51.0
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.50.0):
+ /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.50.0
+ eslint: 8.51.0
dev: true
- /eslint-plugin-react@7.33.2(eslint@8.50.0):
+ /eslint-plugin-react@7.33.2(eslint@8.51.0):
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
peerDependencies:
@@ -2936,7 +3037,7 @@ packages:
array.prototype.tosorted: 1.1.2
doctrine: 2.1.0
es-iterator-helpers: 1.0.15
- eslint: 8.50.0
+ eslint: 8.51.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -2956,17 +3057,17 @@ packages:
natural-compare: 1.4.0
dev: true
- /eslint-plugin-unicorn@48.0.1(eslint@8.50.0):
+ /eslint-plugin-unicorn@48.0.1(eslint@8.51.0):
resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==}
engines: {node: '>=16'}
peerDependencies:
eslint: '>=8.44.0'
dependencies:
'@babel/helper-validator-identifier': 7.22.20
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
ci-info: 3.8.0
clean-regexp: 1.0.0
- eslint: 8.50.0
+ eslint: 8.51.0
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -2980,7 +3081,7 @@ packages:
strip-indent: 3.0.0
dev: true
- /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.7.2)(eslint@8.50.0):
+ /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.7.5)(eslint@8.51.0):
resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -2990,37 +3091,37 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.50.0)(typescript@5.2.2)
- eslint: 8.50.0
+ '@typescript-eslint/eslint-plugin': 6.7.5(@typescript-eslint/parser@6.7.5)(eslint@8.51.0)(typescript@5.2.2)
+ eslint: 8.51.0
eslint-rule-composer: 0.3.0
dev: true
- /eslint-plugin-vue@9.17.0(eslint@8.50.0):
+ /eslint-plugin-vue@9.17.0(eslint@8.51.0):
resolution: {integrity: sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
- eslint: 8.50.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
+ eslint: 8.51.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.13
semver: 7.5.4
- vue-eslint-parser: 9.3.1(eslint@8.50.0)
+ vue-eslint-parser: 9.3.1(eslint@8.51.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-yml@1.9.0(eslint@8.50.0):
+ /eslint-plugin-yml@1.9.0(eslint@8.51.0):
resolution: {integrity: sha512-ayuC57WyVQ5+QZ02y62GiB//5+zsiyzUGxUX/mrhLni+jfsKA4KoITjkbR65iUdjjhWpyTJHPcAIFLKQIOwgsw==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.50.0
+ eslint: 8.51.0
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.2
@@ -3046,15 +3147,15 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint@8.50.0:
- resolution: {integrity: sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==}
+ /eslint@8.51.0:
+ resolution: {integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0)
'@eslint-community/regexpp': 4.8.1
'@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.50.0
+ '@eslint/js': 8.51.0
'@humanwhocodes/config-array': 0.11.11
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
@@ -3160,6 +3261,21 @@ packages:
strip-final-newline: 3.0.0
dev: true
+ /execa@8.0.1:
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
+ dependencies:
+ cross-spawn: 7.0.3
+ get-stream: 8.0.1
+ human-signals: 5.0.0
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.1.0
+ onetime: 6.0.0
+ signal-exit: 4.1.0
+ strip-final-newline: 3.0.0
+ dev: true
+
/exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
dev: true
@@ -3407,8 +3523,8 @@ packages:
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
- /get-func-name@2.0.0:
- resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==}
+ /get-func-name@2.0.2:
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
dev: true
/get-intrinsic@1.2.0:
@@ -3432,6 +3548,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /get-stream@8.0.1:
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
+ dev: true
+
/get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
@@ -3643,13 +3764,6 @@ packages:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
- /hosted-git-info@6.1.1:
- resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- lru-cache: 7.18.3
- dev: true
-
/hosted-git-info@7.0.1:
resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -3692,6 +3806,16 @@ packages:
- supports-color
dev: true
+ /http-proxy-agent@7.0.0:
+ resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
@@ -3702,6 +3826,16 @@ packages:
- supports-color
dev: true
+ /https-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
@@ -3712,6 +3846,11 @@ packages:
engines: {node: '>=14.18.0'}
dev: true
+ /human-signals@5.0.0:
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
+ dev: true
+
/humanize-ms@1.2.1:
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
dependencies:
@@ -4053,6 +4192,11 @@ packages:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
+ /isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+ dev: true
+
/iterator.prototype@1.1.2:
resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
dependencies:
@@ -4269,7 +4413,7 @@ packages:
/loupe@2.3.6:
resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
dependencies:
- get-func-name: 2.0.0
+ get-func-name: 2.0.2
dev: true
/lru-cache@10.0.1:
@@ -4295,8 +4439,8 @@ packages:
engines: {node: '>=12'}
dev: true
- /magic-string@0.30.3:
- resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==}
+ /magic-string@0.30.5:
+ resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
@@ -4324,6 +4468,25 @@ packages:
- supports-color
dev: true
+ /make-fetch-happen@13.0.0:
+ resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ '@npmcli/agent': 2.2.0
+ cacache: 18.0.0
+ http-cache-semantics: 4.1.1
+ is-lambda: 1.0.1
+ minipass: 7.0.3
+ minipass-fetch: 3.0.4
+ minipass-flush: 1.0.5
+ minipass-pipeline: 1.2.4
+ negotiator: 0.6.3
+ promise-retry: 2.0.1
+ ssri: 10.0.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
dependencies:
@@ -4624,16 +4787,6 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-package-data@5.0.0:
- resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dependencies:
- hosted-git-info: 6.1.1
- is-core-module: 2.13.0
- semver: 7.5.4
- validate-npm-package-license: 3.0.4
- dev: true
-
/normalize-package-data@6.0.0:
resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==}
engines: {node: ^16.14.0 || >=18.0.0}
@@ -4668,43 +4821,43 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /npm-package-arg@10.1.0:
- resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /npm-package-arg@11.0.1:
+ resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- hosted-git-info: 6.1.1
+ hosted-git-info: 7.0.1
proc-log: 3.0.0
semver: 7.5.4
validate-npm-package-name: 5.0.0
dev: true
- /npm-packlist@7.0.4:
- resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==}
+ /npm-packlist@8.0.0:
+ resolution: {integrity: sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
ignore-walk: 6.0.3
dev: true
- /npm-pick-manifest@8.0.2:
- resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /npm-pick-manifest@9.0.0:
+ resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
npm-install-checks: 6.2.0
npm-normalize-package-bin: 3.0.1
- npm-package-arg: 10.1.0
+ npm-package-arg: 11.0.1
semver: 7.5.4
dev: true
- /npm-registry-fetch@14.0.5:
- resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /npm-registry-fetch@16.1.0:
+ resolution: {integrity: sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- make-fetch-happen: 11.1.1
- minipass: 5.0.0
+ make-fetch-happen: 13.0.0
+ minipass: 7.0.3
minipass-fetch: 3.0.4
minipass-json-stream: 1.0.1
minizlib: 2.1.2
- npm-package-arg: 10.1.0
+ npm-package-arg: 11.0.1
proc-log: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -4923,27 +5076,27 @@ packages:
engines: {node: '>=6'}
dev: true
- /pacote@15.2.0:
- resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /pacote@17.0.4:
+ resolution: {integrity: sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
dependencies:
- '@npmcli/git': 4.1.0
+ '@npmcli/git': 5.0.3
'@npmcli/installed-package-contents': 2.0.2
- '@npmcli/promise-spawn': 6.0.2
- '@npmcli/run-script': 6.0.2
- cacache: 17.1.4
+ '@npmcli/promise-spawn': 7.0.0
+ '@npmcli/run-script': 7.0.1
+ cacache: 18.0.0
fs-minipass: 3.0.3
- minipass: 5.0.0
- npm-package-arg: 10.1.0
- npm-packlist: 7.0.4
- npm-pick-manifest: 8.0.2
- npm-registry-fetch: 14.0.5
+ minipass: 7.0.3
+ npm-package-arg: 11.0.1
+ npm-packlist: 8.0.0
+ npm-pick-manifest: 9.0.0
+ npm-registry-fetch: 16.1.0
proc-log: 3.0.0
promise-retry: 2.0.1
- read-package-json: 6.0.4
+ read-package-json: 7.0.0
read-package-json-fast: 3.0.2
- sigstore: 1.9.0
+ sigstore: 2.1.0
ssri: 10.0.5
tar: 6.2.0
transitivePeerDependencies:
@@ -4969,6 +5122,11 @@ packages:
is-hexadecimal: 1.0.4
dev: true
+ /parse-gitignore@2.0.0:
+ resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==}
+ engines: {node: '>=14'}
+ dev: true
+
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -5269,13 +5427,13 @@ packages:
npm-normalize-package-bin: 3.0.1
dev: true
- /read-package-json@6.0.4:
- resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /read-package-json@7.0.0:
+ resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
glob: 10.3.4
json-parse-even-better-errors: 3.0.0
- normalize-package-data: 5.0.0
+ normalize-package-data: 6.0.0
npm-normalize-package-bin: 3.0.1
dev: true
@@ -5575,16 +5733,14 @@ packages:
engines: {node: '>=14'}
dev: true
- /sigstore@1.9.0:
- resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
+ /sigstore@2.1.0:
+ resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@sigstore/bundle': 1.1.0
+ '@sigstore/bundle': 2.1.0
'@sigstore/protobuf-specs': 0.2.1
- '@sigstore/sign': 1.0.0
- '@sigstore/tuf': 1.0.3
- make-fetch-happen: 11.1.1
+ '@sigstore/sign': 2.1.0
+ '@sigstore/tuf': 2.2.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -5622,6 +5778,17 @@ packages:
- supports-color
dev: true
+ /socks-proxy-agent@8.0.2:
+ resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.0
+ debug: 4.3.4
+ socks: 2.7.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/socks@2.7.1:
resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
@@ -5866,18 +6033,21 @@ packages:
yallist: 4.0.0
dev: true
- /taze@0.11.2:
- resolution: {integrity: sha512-HM4chXXDaHCAl1AFbSlyHUFjoaEKTewVE0j6ni5S5mRdPdJdva4AfcmXgBZYnRBiJagl6QuVtsqLjqHUiiO20A==}
+ /taze@0.11.4:
+ resolution: {integrity: sha512-X7Dob7+n77GOHO7UUQ+Bn2gZXjRK1NLffb/lMGy41uyGUCh3zOZVlQ+M7IrntXmSsNy0DDKpdzSe40mQK5NTVw==}
hasBin: true
dependencies:
'@antfu/ni': 0.21.8
- '@npmcli/config': 6.2.1
+ '@npmcli/config': 8.0.0
+ cli-progress: 3.12.0
+ deepmerge: 4.3.1
detect-indent: 7.0.1
- execa: 7.2.0
- pacote: 15.2.0
+ execa: 8.0.1
+ pacote: 17.0.4
+ picocolors: 1.0.0
prompts: 2.4.2
semver: 7.5.4
- unconfig: 0.3.10
+ unconfig: 0.3.11
yargs: 17.7.2
transitivePeerDependencies:
- bluebird
@@ -6046,13 +6216,13 @@ packages:
- ts-node
dev: true
- /tuf-js@1.1.7:
- resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /tuf-js@2.1.0:
+ resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==}
+ engines: {node: ^16.14.0 || >=18.0.0}
dependencies:
- '@tufjs/models': 1.0.4
+ '@tufjs/models': 2.0.0
debug: 4.3.4
- make-fetch-happen: 11.1.1
+ make-fetch-happen: 13.0.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -6140,12 +6310,6 @@ packages:
is-typed-array: 1.1.12
dev: true
- /typescript@4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
- hasBin: true
- dev: true
-
/typescript@5.2.2:
resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
engines: {node: '>=14.17'}
@@ -6173,8 +6337,8 @@ packages:
which-boxed-primitive: 1.0.2
dev: true
- /unconfig@0.3.10:
- resolution: {integrity: sha512-tj317lhIq2iZF/NXrJnU1t2UaGUKKz1eL1sK2t63Oq66V9BxqvZV12m55fp/fpQJ+DDmVlLgo7cnLVOZkhlO/A==}
+ /unconfig@0.3.11:
+ resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
dependencies:
'@antfu/utils': 0.7.6
defu: 6.1.2
@@ -6182,6 +6346,10 @@ packages:
mlly: 1.4.2
dev: true
+ /undici-types@5.25.3:
+ resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
+ dev: true
+
/unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6262,8 +6430,8 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /vite-node@0.34.4(@types/node@20.6.5):
- resolution: {integrity: sha512-ho8HtiLc+nsmbwZMw8SlghESEE3KxJNp04F/jPUCLVvaURwt0d+r9LxEqCX5hvrrOQ0GSyxbYr5ZfRYhQ0yVKQ==}
+ /vite-node@0.34.6(@types/node@20.8.6):
+ resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==}
engines: {node: '>=v14.18.0'}
hasBin: true
dependencies:
@@ -6272,7 +6440,7 @@ packages:
mlly: 1.4.2
pathe: 1.1.1
picocolors: 1.0.0
- vite: 4.4.9(@types/node@20.6.5)
+ vite: 4.4.11(@types/node@20.8.6)
transitivePeerDependencies:
- '@types/node'
- less
@@ -6284,44 +6452,8 @@ packages:
- terser
dev: true
- /vite@4.4.9(@types/node@18.17.15):
- resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.17.15
- esbuild: 0.18.20
- postcss: 8.4.29
- rollup: 3.29.1
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /vite@4.4.9(@types/node@20.6.5):
- resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
+ /vite@4.4.11(@types/node@20.8.6):
+ resolution: {integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
@@ -6348,7 +6480,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.6.5
+ '@types/node': 20.8.6
esbuild: 0.18.20
postcss: 8.4.29
rollup: 3.29.1
@@ -6356,8 +6488,8 @@ packages:
fsevents: 2.3.3
dev: true
- /vitest@0.34.4:
- resolution: {integrity: sha512-SE/laOsB6995QlbSE6BtkpXDeVNLJc1u2LHRG/OpnN4RsRzM3GQm4nm3PQCK5OBtrsUqnhzLdnT7se3aeNGdlw==}
+ /vitest@0.34.6:
+ resolution: {integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==}
engines: {node: '>=v14.18.0'}
hasBin: true
peerDependencies:
@@ -6389,27 +6521,27 @@ packages:
dependencies:
'@types/chai': 4.3.6
'@types/chai-subset': 1.3.3
- '@types/node': 20.6.5
- '@vitest/expect': 0.34.4
- '@vitest/runner': 0.34.4
- '@vitest/snapshot': 0.34.4
- '@vitest/spy': 0.34.4
- '@vitest/utils': 0.34.4
+ '@types/node': 20.8.6
+ '@vitest/expect': 0.34.6
+ '@vitest/runner': 0.34.6
+ '@vitest/snapshot': 0.34.6
+ '@vitest/spy': 0.34.6
+ '@vitest/utils': 0.34.6
acorn: 8.10.0
acorn-walk: 8.2.0
cac: 6.7.14
- chai: 4.3.8
+ chai: 4.3.10
debug: 4.3.4
local-pkg: 0.4.3
- magic-string: 0.30.3
+ magic-string: 0.30.5
pathe: 1.1.1
picocolors: 1.0.0
std-env: 3.4.3
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.7.0
- vite: 4.4.9(@types/node@20.6.5)
- vite-node: 0.34.4(@types/node@20.6.5)
+ vite: 4.4.11(@types/node@20.8.6)
+ vite-node: 0.34.6(@types/node@20.8.6)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -6421,14 +6553,14 @@ packages:
- terser
dev: true
- /vue-eslint-parser@9.3.1(eslint@8.50.0):
+ /vue-eslint-parser@9.3.1(eslint@8.51.0):
resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.50.0
+ eslint: 8.51.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -6519,12 +6651,12 @@ packages:
isexe: 2.0.0
dev: true
- /which@3.0.1:
- resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ /which@4.0.0:
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
hasBin: true
dependencies:
- isexe: 2.0.0
+ isexe: 3.1.1
dev: true
/why-is-node-running@2.2.2:
diff --git a/src/global-config/GlobalConfigBuilder.ts b/src/global-config/GlobalConfigBuilder.ts
index 11bad79..9723512 100644
--- a/src/global-config/GlobalConfigBuilder.ts
+++ b/src/global-config/GlobalConfigBuilder.ts
@@ -17,17 +17,17 @@ export type GlobalConfig = UserConfig & {
}
export class GlobalConfigBuilder {
- private globalConfig: GlobalConfig
+ private _globalConfig: GlobalConfig
constructor() {
- this.globalConfig = {} as GlobalConfig
+ this._globalConfig = {} as GlobalConfig
}
init(c: UserConfig) {
const root = c.viteConfig.root || process.cwd()
const absOutputDir = path.join(root, c.outputDir)
const absInputDir = path.join(root, c.inputDir)
- this.globalConfig = {
+ this._globalConfig = {
...c,
absInputDir,
absOutputDir,
@@ -37,11 +37,11 @@ export class GlobalConfigBuilder {
}
get() {
- return this.globalConfig
+ return this._globalConfig
}
set(c: UserConfig) {
- this.globalConfig = {
+ this._globalConfig = {
...this.get(),
...c,
}
diff --git a/src/helper/assert.ts b/src/helper/assert.ts
index c2753fb..bfc09ce 100644
--- a/src/helper/assert.ts
+++ b/src/helper/assert.ts
@@ -1,4 +1,3 @@
-// Taken from https://github.com/brillout/vite-plugin-ssr/blob/main/vite-plugin-ssr/utils/assert.ts
export { createErrorWithCleanStackTrace }
function createErrorWithCleanStackTrace(errorMessage: string, numberOfStackTraceLinesToRemove: number) {
diff --git a/src/manifest-cache/ManifestCache.ts b/src/manifest-cache/ManifestCache.ts
index 90ac2ac..ec29a3a 100644
--- a/src/manifest-cache/ManifestCache.ts
+++ b/src/manifest-cache/ManifestCache.ts
@@ -9,7 +9,7 @@ const debug = createDebug('vite-plugin-public-typescript:ManifestCache ===> ')
type PathOnlyCache = Record
export interface ManifestConstructor {
- write?: boolean
+ writable?: boolean
}
/**
@@ -30,14 +30,14 @@ export type CacheObject = {
}
const DEFAULT_OPTIONS: ManifestConstructor = {
- write: true,
+ writable: true,
}
export class ManifestCache = CacheObject> {
- private cache: U
+ private _cache: U
- private manifestPath = ''
- private beforeSet = (value: T | undefined) => {
+ private _manifestPath = ''
+ private _beforeSet = (value: T | undefined) => {
return value
}
@@ -47,21 +47,21 @@ export class ManifestCache({} as U, (...args) => {
- debug('cache changed:', this.cache, 'onChange args:', args)
+ this._cache = onChange({} as U, (...args) => {
+ debug('cache changed:', this._cache, 'onChange args:', args)
- if (options!.write) {
+ if (options!.writable) {
this.writeManifestJSON()
}
})
}
get() {
- return Object.assign({}, this.cache)
+ return Object.assign({}, this._cache)
}
- setBeforeSet(fn: typeof this.beforeSet) {
- this.beforeSet = fn
+ setBeforeSet(fn: typeof this._beforeSet) {
+ this._beforeSet = fn
return this
}
@@ -73,12 +73,12 @@ export class ManifestCache {
- if (this.cache[key].path === path) {
+ const k = Object.keys(this._cache).find((key) => {
+ if (this._cache[key].path === path) {
return true
}
return false
})
- return k ? this.cache[k] : null
+ return k ? this._cache[k] : null
}
}