From 17fa8b63394c52ac2dede94285e336f397056760 Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Mon, 27 Jan 2025 08:48:58 +0800
Subject: [PATCH 1/6] feat(js-plugins): add preact plugin
---
js-plugins/preact/package.json | 12 ++++++++++++
1 file changed, 12 insertions(+)
create mode 100644 js-plugins/preact/package.json
diff --git a/js-plugins/preact/package.json b/js-plugins/preact/package.json
new file mode 100644
index 0000000..86594e2
--- /dev/null
+++ b/js-plugins/preact/package.json
@@ -0,0 +1,12 @@
+{
+ "name": "preact",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC"
+}
From 057643d7d340074af9fecf8f31b836db8cfde1b7 Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Tue, 28 Jan 2025 16:49:32 +0800
Subject: [PATCH 2/6] chore(js-plugins): update playground
---
js-plugins/preact/playground/.gitignore | 24 +++++++
js-plugins/preact/playground/index.html | 13 ++++
js-plugins/preact/playground/package.json | 19 ++++++
js-plugins/preact/playground/public/vite.svg | 1 +
js-plugins/preact/playground/src/app.css | 25 +++++++
js-plugins/preact/playground/src/app.tsx | 43 ++++++++++++
.../preact/playground/src/assets/preact.svg | 1 +
js-plugins/preact/playground/src/index.css | 68 +++++++++++++++++++
js-plugins/preact/playground/src/main.tsx | 5 ++
.../preact/playground/src/vite-env.d.ts | 1 +
.../preact/playground/tsconfig.app.json | 31 +++++++++
js-plugins/preact/playground/tsconfig.json | 7 ++
.../preact/playground/tsconfig.node.json | 24 +++++++
js-plugins/preact/playground/vite.config.ts | 7 ++
14 files changed, 269 insertions(+)
create mode 100644 js-plugins/preact/playground/.gitignore
create mode 100644 js-plugins/preact/playground/index.html
create mode 100644 js-plugins/preact/playground/package.json
create mode 100644 js-plugins/preact/playground/public/vite.svg
create mode 100644 js-plugins/preact/playground/src/app.css
create mode 100644 js-plugins/preact/playground/src/app.tsx
create mode 100644 js-plugins/preact/playground/src/assets/preact.svg
create mode 100644 js-plugins/preact/playground/src/index.css
create mode 100644 js-plugins/preact/playground/src/main.tsx
create mode 100644 js-plugins/preact/playground/src/vite-env.d.ts
create mode 100644 js-plugins/preact/playground/tsconfig.app.json
create mode 100644 js-plugins/preact/playground/tsconfig.json
create mode 100644 js-plugins/preact/playground/tsconfig.node.json
create mode 100644 js-plugins/preact/playground/vite.config.ts
diff --git a/js-plugins/preact/playground/.gitignore b/js-plugins/preact/playground/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/js-plugins/preact/playground/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/js-plugins/preact/playground/index.html b/js-plugins/preact/playground/index.html
new file mode 100644
index 0000000..40366c3
--- /dev/null
+++ b/js-plugins/preact/playground/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Vite + Preact + TS
+
+
+
+
+
+
diff --git a/js-plugins/preact/playground/package.json b/js-plugins/preact/playground/package.json
new file mode 100644
index 0000000..6dedbec
--- /dev/null
+++ b/js-plugins/preact/playground/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "preact",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc -b && vite build",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "preact": "^10.25.3"
+ },
+ "devDependencies": {
+ "@preact/preset-vite": "^2.9.3",
+ "typescript": "~5.6.2",
+ "vite": "^6.0.5"
+ }
+}
diff --git a/js-plugins/preact/playground/public/vite.svg b/js-plugins/preact/playground/public/vite.svg
new file mode 100644
index 0000000..e7b8dfb
--- /dev/null
+++ b/js-plugins/preact/playground/public/vite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/js-plugins/preact/playground/src/app.css b/js-plugins/preact/playground/src/app.css
new file mode 100644
index 0000000..088ed3a
--- /dev/null
+++ b/js-plugins/preact/playground/src/app.css
@@ -0,0 +1,25 @@
+#app {
+ max-width: 1280px;
+ margin: 0 auto;
+ padding: 2rem;
+ text-align: center;
+}
+
+.logo {
+ height: 6em;
+ padding: 1.5em;
+}
+.logo:hover {
+ filter: drop-shadow(0 0 2em #646cffaa);
+}
+.logo.preact:hover {
+ filter: drop-shadow(0 0 2em #673ab8aa);
+}
+
+.card {
+ padding: 2em;
+}
+
+.read-the-docs {
+ color: #888;
+}
diff --git a/js-plugins/preact/playground/src/app.tsx b/js-plugins/preact/playground/src/app.tsx
new file mode 100644
index 0000000..81196fe
--- /dev/null
+++ b/js-plugins/preact/playground/src/app.tsx
@@ -0,0 +1,43 @@
+import { useState } from 'preact/hooks'
+import preactLogo from './assets/preact.svg'
+import viteLogo from '/vite.svg'
+import './app.css'
+
+export function App() {
+ const [count, setCount] = useState(0)
+
+ return (
+ <>
+
+ Vite + Preact
+
+
+
+ Edit src/app.tsx and save to test HMR
+
+
+
+ Check out{' '}
+
+ create-preact
+
+ , the official Preact + Vite starter
+
+
+ Click on the Vite and Preact logos to learn more
+
+ >
+ )
+}
diff --git a/js-plugins/preact/playground/src/assets/preact.svg b/js-plugins/preact/playground/src/assets/preact.svg
new file mode 100644
index 0000000..908f17d
--- /dev/null
+++ b/js-plugins/preact/playground/src/assets/preact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/js-plugins/preact/playground/src/index.css b/js-plugins/preact/playground/src/index.css
new file mode 100644
index 0000000..6119ad9
--- /dev/null
+++ b/js-plugins/preact/playground/src/index.css
@@ -0,0 +1,68 @@
+:root {
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
+ line-height: 1.5;
+ font-weight: 400;
+
+ color-scheme: light dark;
+ color: rgba(255, 255, 255, 0.87);
+ background-color: #242424;
+
+ font-synthesis: none;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+a {
+ font-weight: 500;
+ color: #646cff;
+ text-decoration: inherit;
+}
+a:hover {
+ color: #535bf2;
+}
+
+body {
+ margin: 0;
+ display: flex;
+ place-items: center;
+ min-width: 320px;
+ min-height: 100vh;
+}
+
+h1 {
+ font-size: 3.2em;
+ line-height: 1.1;
+}
+
+button {
+ border-radius: 8px;
+ border: 1px solid transparent;
+ padding: 0.6em 1.2em;
+ font-size: 1em;
+ font-weight: 500;
+ font-family: inherit;
+ background-color: #1a1a1a;
+ cursor: pointer;
+ transition: border-color 0.25s;
+}
+button:hover {
+ border-color: #646cff;
+}
+button:focus,
+button:focus-visible {
+ outline: 4px auto -webkit-focus-ring-color;
+}
+
+@media (prefers-color-scheme: light) {
+ :root {
+ color: #213547;
+ background-color: #ffffff;
+ }
+ a:hover {
+ color: #747bff;
+ }
+ button {
+ background-color: #f9f9f9;
+ }
+}
diff --git a/js-plugins/preact/playground/src/main.tsx b/js-plugins/preact/playground/src/main.tsx
new file mode 100644
index 0000000..bfb172e
--- /dev/null
+++ b/js-plugins/preact/playground/src/main.tsx
@@ -0,0 +1,5 @@
+import { render } from 'preact'
+import './index.css'
+import { App } from './app.tsx'
+
+render(, document.getElementById('app')!)
diff --git a/js-plugins/preact/playground/src/vite-env.d.ts b/js-plugins/preact/playground/src/vite-env.d.ts
new file mode 100644
index 0000000..11f02fe
--- /dev/null
+++ b/js-plugins/preact/playground/src/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/js-plugins/preact/playground/tsconfig.app.json b/js-plugins/preact/playground/tsconfig.app.json
new file mode 100644
index 0000000..d5cbc23
--- /dev/null
+++ b/js-plugins/preact/playground/tsconfig.app.json
@@ -0,0 +1,31 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+ "paths": {
+ "react": ["./node_modules/preact/compat/"],
+ "react-dom": ["./node_modules/preact/compat/"]
+ },
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "isolatedModules": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+ "jsxImportSource": "preact",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["src"]
+}
diff --git a/js-plugins/preact/playground/tsconfig.json b/js-plugins/preact/playground/tsconfig.json
new file mode 100644
index 0000000..1ffef60
--- /dev/null
+++ b/js-plugins/preact/playground/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "files": [],
+ "references": [
+ { "path": "./tsconfig.app.json" },
+ { "path": "./tsconfig.node.json" }
+ ]
+}
diff --git a/js-plugins/preact/playground/tsconfig.node.json b/js-plugins/preact/playground/tsconfig.node.json
new file mode 100644
index 0000000..db0becc
--- /dev/null
+++ b/js-plugins/preact/playground/tsconfig.node.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "ES2022",
+ "lib": ["ES2023"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "isolatedModules": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/js-plugins/preact/playground/vite.config.ts b/js-plugins/preact/playground/vite.config.ts
new file mode 100644
index 0000000..b995c32
--- /dev/null
+++ b/js-plugins/preact/playground/vite.config.ts
@@ -0,0 +1,7 @@
+import { defineConfig } from 'vite'
+import preact from '@preact/preset-vite'
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [preact()],
+})
From dcfbbb1badf0530b3f5c0f6206c181b4e7635c8a Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Tue, 28 Jan 2025 17:09:29 +0800
Subject: [PATCH 3/6] chore(js-plugins): update deps
---
js-plugins/preact/.editorconfig | 11 +
js-plugins/preact/.github/workflows/main.yml | 22 ++
js-plugins/preact/.gitignore | 116 +++++++
js-plugins/preact/.prettierignore | 2 +
js-plugins/preact/LICENSE | 21 ++
js-plugins/preact/README.md | 135 ++++++++
js-plugins/preact/demo/index.html | 14 +
js-plugins/preact/demo/package.json | 3 +
.../preact/demo/public/local-fetch-test.txt | 1 +
js-plugins/preact/demo/public/vite.svg | 1 +
js-plugins/preact/demo/src/assets/preact.svg | 1 +
.../preact/demo/src/components/Compat.tsx | 21 ++
.../preact/demo/src/components/Header.tsx | 18 ++
.../preact/demo/src/components/LocalFetch.tsx | 33 ++
js-plugins/preact/demo/src/index.tsx | 52 +++
.../preact/demo/src/pages/Home/index.tsx | 44 +++
.../preact/demo/src/pages/Home/style.css | 47 +++
js-plugins/preact/demo/src/pages/_404.tsx | 8 +
js-plugins/preact/demo/src/style.css | 70 +++++
js-plugins/preact/demo/tsconfig.json | 15 +
js-plugins/preact/demo/vite.config.ts | 17 +
js-plugins/preact/playground/farm.config.ts | 6 +
js-plugins/preact/src/devtools.ts | 76 +++++
js-plugins/preact/src/index.ts | 297 ++++++++++++++++++
js-plugins/preact/src/utils.ts | 10 +
js-plugins/preact/test/build.test.mjs | 20 ++
js-plugins/preact/test/dev.test.mjs | 41 +++
js-plugins/preact/test/util.mjs | 75 +++++
js-plugins/preact/tools/postbuild.mjs | 24 ++
js-plugins/preact/tsconfig.cjs.json | 7 +
js-plugins/preact/tsconfig.json | 12 +
31 files changed, 1220 insertions(+)
create mode 100644 js-plugins/preact/.editorconfig
create mode 100644 js-plugins/preact/.github/workflows/main.yml
create mode 100644 js-plugins/preact/.gitignore
create mode 100644 js-plugins/preact/.prettierignore
create mode 100644 js-plugins/preact/LICENSE
create mode 100644 js-plugins/preact/README.md
create mode 100644 js-plugins/preact/demo/index.html
create mode 100644 js-plugins/preact/demo/package.json
create mode 100644 js-plugins/preact/demo/public/local-fetch-test.txt
create mode 100644 js-plugins/preact/demo/public/vite.svg
create mode 100644 js-plugins/preact/demo/src/assets/preact.svg
create mode 100644 js-plugins/preact/demo/src/components/Compat.tsx
create mode 100644 js-plugins/preact/demo/src/components/Header.tsx
create mode 100644 js-plugins/preact/demo/src/components/LocalFetch.tsx
create mode 100644 js-plugins/preact/demo/src/index.tsx
create mode 100644 js-plugins/preact/demo/src/pages/Home/index.tsx
create mode 100644 js-plugins/preact/demo/src/pages/Home/style.css
create mode 100644 js-plugins/preact/demo/src/pages/_404.tsx
create mode 100644 js-plugins/preact/demo/src/style.css
create mode 100644 js-plugins/preact/demo/tsconfig.json
create mode 100644 js-plugins/preact/demo/vite.config.ts
create mode 100644 js-plugins/preact/playground/farm.config.ts
create mode 100644 js-plugins/preact/src/devtools.ts
create mode 100644 js-plugins/preact/src/index.ts
create mode 100644 js-plugins/preact/src/utils.ts
create mode 100644 js-plugins/preact/test/build.test.mjs
create mode 100644 js-plugins/preact/test/dev.test.mjs
create mode 100644 js-plugins/preact/test/util.mjs
create mode 100644 js-plugins/preact/tools/postbuild.mjs
create mode 100644 js-plugins/preact/tsconfig.cjs.json
create mode 100644 js-plugins/preact/tsconfig.json
diff --git a/js-plugins/preact/.editorconfig b/js-plugins/preact/.editorconfig
new file mode 100644
index 0000000..47a0988
--- /dev/null
+++ b/js-plugins/preact/.editorconfig
@@ -0,0 +1,11 @@
+root = true
+
+[*]
+indent_style = tab
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+
+[*.md]
+indent_style = space
+indent_size = 2
diff --git a/js-plugins/preact/.github/workflows/main.yml b/js-plugins/preact/.github/workflows/main.yml
new file mode 100644
index 0000000..caca573
--- /dev/null
+++ b/js-plugins/preact/.github/workflows/main.yml
@@ -0,0 +1,22 @@
+name: Main
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+
+jobs:
+ test:
+ name: Test
+ runs-on: ubuntu-latest
+ timeout-minutes: 5
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ with:
+ node-version-file: "package.json"
+ cache: "npm"
+ cache-dependency-path: "**/package-lock.json"
+ - run: npm ci
+ - run: npm run build
+ - run: npm test
diff --git a/js-plugins/preact/.gitignore b/js-plugins/preact/.gitignore
new file mode 100644
index 0000000..1f22b9c
--- /dev/null
+++ b/js-plugins/preact/.gitignore
@@ -0,0 +1,116 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+lerna-debug.log*
+
+# Diagnostic reports (https://nodejs.org/api/report.html)
+report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+*.lcov
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (https://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# Snowpack dependency directory (https://snowpack.dev/)
+web_modules/
+
+# TypeScript cache
+*.tsbuildinfo
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Microbundle cache
+.rpt2_cache/
+.rts2_cache_cjs/
+.rts2_cache_es/
+.rts2_cache_umd/
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# dotenv environment variables file
+.env
+.env.test
+
+# parcel-bundler cache (https://parceljs.org/)
+.cache
+.parcel-cache
+
+# Next.js build output
+.next
+out
+
+# Nuxt.js build / generate output
+.nuxt
+dist
+
+# Gatsby files
+.cache/
+# Comment in the public line in if your project uses Gatsby and not Next.js
+# https://nextjs.org/blog/next-9-1#public-directory-support
+# public
+
+# vuepress build output
+.vuepress/dist
+
+# Serverless directories
+.serverless/
+
+# FuseBox cache
+.fusebox/
+
+# DynamoDB Local files
+.dynamodb/
+
+# TernJS port file
+.tern-port
+
+# Stores VSCode versions used for testing VSCode extensions
+.vscode-test
+
+# yarn v2
+.yarn/cache
+.yarn/unplugged
+.yarn/build-state.yml
+.yarn/install-state.gz
+.pnp.*
diff --git a/js-plugins/preact/.prettierignore b/js-plugins/preact/.prettierignore
new file mode 100644
index 0000000..beed6e9
--- /dev/null
+++ b/js-plugins/preact/.prettierignore
@@ -0,0 +1,2 @@
+# Avoid tabs in code samples
+README.md
diff --git a/js-plugins/preact/LICENSE b/js-plugins/preact/LICENSE
new file mode 100644
index 0000000..af7c24f
--- /dev/null
+++ b/js-plugins/preact/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 The Preact Team
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/js-plugins/preact/README.md b/js-plugins/preact/README.md
new file mode 100644
index 0000000..e70ab14
--- /dev/null
+++ b/js-plugins/preact/README.md
@@ -0,0 +1,135 @@
+# @preact/preset-vite
+
+An all in one preset for writing Preact apps with the [vite](https://github.com/vitejs/vite) bundler.
+
+Features:
+
+- Sets up Hot Module Replacement via [prefresh](https://github.com/JoviDeCroock/prefresh/tree/main/packages/vite)
+- Enables [Preact Devtools](https://preactjs.github.io/preact-devtools/) bridge during development
+- Aliases React to `preact/compat`
+
+## Installation
+
+First intall the preset package from npm:
+
+```bash
+npm install --save-dev @preact/preset-vite
+# or
+yarn add -D @preact/preset-vite
+```
+
+Enhance your vite config with the Preact preset plugin in your `vite.config.ts` or `vite.config.js`:
+
+```js
+import { defineConfig } from "vite";
+import preact from "@preact/preset-vite";
+
+export default defineConfig({
+ plugins: [preact()]
+});
+```
+
+## Options
+
+Options can be passed to our preset plugin via the first argument:
+
+```js
+export default defineConfig({
+ plugins: [
+ preact({ devtoolsInProd: true })
+ ]
+});
+```
+
+### Available options
+
+| Option | Type | Default | Description |
+|---|---|---|---|
+| `devtoolsInProd` | `boolean` | `false` | Inject devtools bridge in production bundle instead of only in development mode |
+| `devToolsEnabled` | `boolean` | `true` | Inject devtools bridge |
+| `prefreshEnabled` | `boolean` | `true` | Inject [Prefresh](https://github.com/preactjs/prefresh) for HMR |
+| `reactAliasesEnabled` | `boolean` | `true` | Aliases `react`, `react-dom` to `preact/compat` |
+| `babel` | `object` | | See [Babel configuration](#babel-configuration) |
+| `prerender` | `object` | | See [Prerendering configuration](#prerendering-configuration) |
+
+#### Babel configuration
+
+The `babel` option lets you add plugins, presets, and [other configuration](https://babeljs.io/docs/en/options) to the Babel transformation performed on each JSX/TSX file.
+
+```js
+preact({
+ babel: {
+ presets: [...],
+ // Your plugins run before any built-in transform (eg: Fast Refresh)
+ plugins: [...],
+ // Use .babelrc files
+ babelrc: true,
+ // Use babel.config.js files
+ configFile: true,
+ }
+})
+```
+
+#### Prerendering configuration
+
+| Option | Type | Default | Description |
+|---|---|---|---|
+| `enabled` | `boolean` | `false` | Enables prerendering |
+| `renderTarget` | `string` | `"body"` | Query selector for where to insert prerender result in your HTML template |
+| `prerenderScript` | `string` | `undefined` | Absolute path to script containing exported `prerender()` function. If not provided, will try to find the prerender script in the scripts listed in your HTML entrypoint |
+| `additionalPrerenderRoutes` | `string[]` | `undefined` | Prerendering will crawl your site automatically, but you'd like to prerender some pages that may not be found (such as a `/404` page), use this option to specify them |
+| `previewMiddlewareEnabled` | `boolean` | `false` | Vite's preview server as of v5 will not use our prerendered HTML documents automatically. This option enables a middleware that will correct this, allowing you to test the result of prerendering locally |
+| `previewMiddlewareFallback` | `string` | `/index.html` | Fallback path to be used when an HTML document cannot be found via the preview middleware, e.g., `/404` or `/not-found` will be used when the user requests `/some-path-that-does-not-exist` |
+
+To prerender your app, you'll need to do these things:
+1. Enable prerendering in the plugin options
+2. Specify your render target, if you want the HTML to be inserted anywhere other than the `document.body`. This location likely should match `render()`, i.e., `render(, document.querySelector('#app'))` -> `'#app'`
+4. Create and export a `prerender()` function from a script. You could add this to your app entrypoint or create a completely separate file for it, either will work. See below for a usage example
+5. Specify where your `prerender()` function is by either a) adding a `prerender` attribute to the script tag that contains it in your entry HTML (`
+ data: { url: data.url },
+ // Optionally configure and add elements to the `` of
+ // the prerendered HTML document
+ head: {
+ // Sets the "lang" attribute: ``
+ lang: 'en',
+ // Sets the title for the current page: `My cool page`
+ title: 'My cool page',
+ // Sets any additional elements you want injected into the ``:
+ //
+ //
+ elements: new Set([
+ { type: 'link', props: { rel: 'stylesheet', href: 'foo.css' } },
+ { type: 'meta', props: { property: 'og:title', content: 'Social media title' } }
+ ])
+ }
+ };
+}
+```
+
+## License
+
+MIT, see [the license file](./LICENSE).
diff --git a/js-plugins/preact/demo/index.html b/js-plugins/preact/demo/index.html
new file mode 100644
index 0000000..3ddb76f
--- /dev/null
+++ b/js-plugins/preact/demo/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+ Vite + Preact
+
+
+
+
+
+
diff --git a/js-plugins/preact/demo/package.json b/js-plugins/preact/demo/package.json
new file mode 100644
index 0000000..bedb411
--- /dev/null
+++ b/js-plugins/preact/demo/package.json
@@ -0,0 +1,3 @@
+{
+ "type": "module"
+}
diff --git a/js-plugins/preact/demo/public/local-fetch-test.txt b/js-plugins/preact/demo/public/local-fetch-test.txt
new file mode 100644
index 0000000..b2c3cd2
--- /dev/null
+++ b/js-plugins/preact/demo/public/local-fetch-test.txt
@@ -0,0 +1 @@
+Local fetch works
diff --git a/js-plugins/preact/demo/public/vite.svg b/js-plugins/preact/demo/public/vite.svg
new file mode 100644
index 0000000..e7b8dfb
--- /dev/null
+++ b/js-plugins/preact/demo/public/vite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/js-plugins/preact/demo/src/assets/preact.svg b/js-plugins/preact/demo/src/assets/preact.svg
new file mode 100644
index 0000000..908f17d
--- /dev/null
+++ b/js-plugins/preact/demo/src/assets/preact.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/js-plugins/preact/demo/src/components/Compat.tsx b/js-plugins/preact/demo/src/components/Compat.tsx
new file mode 100644
index 0000000..1524f42
--- /dev/null
+++ b/js-plugins/preact/demo/src/components/Compat.tsx
@@ -0,0 +1,21 @@
+// @ts-ignore
+import React, { useMemo, useState } from "react";
+
+export function ReactComponent() {
+ const [v, set] = useState(0);
+
+ // NOTE: To check in devtools that babel-plugin-transform-hook-names can
+ // extract the variable names from typed expressions.
+ const _unusedState = useState(0 as any);
+ const _unusedMemo: number = useMemo(
+ () => _unusedState[0],
+ [_unusedState[0]],
+ );
+
+ return (
+
+
Counter: {v}
+
+
+ );
+}
diff --git a/js-plugins/preact/demo/src/components/Header.tsx b/js-plugins/preact/demo/src/components/Header.tsx
new file mode 100644
index 0000000..ac2dba4
--- /dev/null
+++ b/js-plugins/preact/demo/src/components/Header.tsx
@@ -0,0 +1,18 @@
+import { useLocation } from "preact-iso";
+
+export function Header() {
+ const { url } = useLocation();
+
+ return (
+
+ );
+}
diff --git a/js-plugins/preact/demo/src/components/LocalFetch.tsx b/js-plugins/preact/demo/src/components/LocalFetch.tsx
new file mode 100644
index 0000000..6e636bc
--- /dev/null
+++ b/js-plugins/preact/demo/src/components/LocalFetch.tsx
@@ -0,0 +1,33 @@
+import { useState } from "preact/hooks";
+
+const cache = new Map();
+
+async function load(url: string) {
+ const res = await fetch(url);
+ if (res.ok) return await res.text();
+ throw new Error(`Failed to fetch ${url}!`);
+}
+
+function useFetch(url: string) {
+ const [_, update] = useState({});
+
+ let data = cache.get(url);
+ if (!data) {
+ data = load(url);
+ cache.set(url, data);
+ data.then(
+ (res: string) => update((data.res = res)),
+ (err: Error) => update((data.err = err)),
+ );
+ }
+
+ if (data.res) return data.res;
+ if (data.err) throw data.err;
+ throw data;
+}
+
+export function LocalFetch() {
+ const data = useFetch("/local-fetch-test.txt");
+
+ return {data.trimEnd()}
;
+}
diff --git a/js-plugins/preact/demo/src/index.tsx b/js-plugins/preact/demo/src/index.tsx
new file mode 100644
index 0000000..5fe93dc
--- /dev/null
+++ b/js-plugins/preact/demo/src/index.tsx
@@ -0,0 +1,52 @@
+import {
+ LocationProvider,
+ Router,
+ Route,
+ hydrate,
+ prerender as ssr,
+} from "preact-iso";
+
+import { Header } from "./components/Header.js";
+import { Home } from "./pages/Home/index.js";
+import { NotFound } from "./pages/_404.js";
+import "./style.css";
+
+export function App() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
+
+if (typeof window !== "undefined") {
+ hydrate(, document.getElementById("app"));
+}
+
+export async function prerender(data) {
+ const { html, links } = await ssr();
+ return {
+ html,
+ links,
+ data: { url: data.url },
+ head: {
+ lang: "en",
+ title: "Prerendered Preact App",
+ elements: new Set([
+ {
+ type: "meta",
+ props: {
+ name: "description",
+ content: "This is a prerendered Preact app",
+ },
+ },
+ ]),
+ },
+ };
+}
diff --git a/js-plugins/preact/demo/src/pages/Home/index.tsx b/js-plugins/preact/demo/src/pages/Home/index.tsx
new file mode 100644
index 0000000..d3de026
--- /dev/null
+++ b/js-plugins/preact/demo/src/pages/Home/index.tsx
@@ -0,0 +1,44 @@
+import { ReactComponent } from "../../components/Compat";
+import { LocalFetch } from "../../components/LocalFetch";
+
+import preactLogo from "../../assets/preact.svg";
+import "./style.css";
+
+export function Home() {
+ return (
+
+
+
+
+
Get Started building Vite-powered Preact Apps
+
+
+
+
+ );
+}
+
+function Resource(props) {
+ return (
+
+ {props.title}
+ {props.description}
+
+ );
+}
diff --git a/js-plugins/preact/demo/src/pages/Home/style.css b/js-plugins/preact/demo/src/pages/Home/style.css
new file mode 100644
index 0000000..f51cfc1
--- /dev/null
+++ b/js-plugins/preact/demo/src/pages/Home/style.css
@@ -0,0 +1,47 @@
+img {
+ margin-bottom: 1.5rem;
+}
+
+img:hover {
+ filter: drop-shadow(0 0 2em #673ab8aa);
+}
+
+.home section {
+ margin-top: 5rem;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ column-gap: 1.5rem;
+}
+
+.resource {
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.5rem;
+ text-align: left;
+ text-decoration: none;
+ color: #222;
+ background-color: #f1f1f1;
+ border: 1px solid transparent;
+}
+
+.resource:hover {
+ border: 1px solid #000;
+ box-shadow: 0 25px 50px -12px #673ab888;
+}
+
+@media (max-width: 639px) {
+ .home section {
+ margin-top: 5rem;
+ grid-template-columns: 1fr;
+ row-gap: 1rem;
+ }
+}
+
+@media (prefers-color-scheme: dark) {
+ .resource {
+ color: #ccc;
+ background-color: #161616;
+ }
+ .resource:hover {
+ border: 1px solid #bbb;
+ }
+}
diff --git a/js-plugins/preact/demo/src/pages/_404.tsx b/js-plugins/preact/demo/src/pages/_404.tsx
new file mode 100644
index 0000000..36182c8
--- /dev/null
+++ b/js-plugins/preact/demo/src/pages/_404.tsx
@@ -0,0 +1,8 @@
+export function NotFound() {
+ return (
+
+ 404: Not Found
+ It's gone :(
+
+ );
+}
diff --git a/js-plugins/preact/demo/src/style.css b/js-plugins/preact/demo/src/style.css
new file mode 100644
index 0000000..13fd296
--- /dev/null
+++ b/js-plugins/preact/demo/src/style.css
@@ -0,0 +1,70 @@
+:root {
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
+ line-height: 1.5;
+ font-weight: 400;
+
+ color: #222;
+ background-color: #ffffff;
+
+ font-synthesis: none;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-text-size-adjust: 100%;
+}
+
+body {
+ margin: 0;
+}
+
+#app {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+}
+
+header {
+ display: flex;
+ justify-content: flex-end;
+ background-color: #673ab8;
+}
+
+header nav {
+ display: flex;
+}
+
+header a {
+ color: #fff;
+ padding: 0.75rem;
+ text-decoration: none;
+}
+
+header a.active {
+ background-color: #0005;
+}
+
+header a:hover {
+ background-color: #0008;
+}
+
+main {
+ flex: auto;
+ display: flex;
+ align-items: center;
+ max-width: 1280px;
+ margin: 0 auto;
+ text-align: center;
+}
+
+@media (max-width: 639px) {
+ main {
+ margin: 2rem;
+ }
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ color: #ccc;
+ background-color: #1a1a1a;
+ }
+}
diff --git a/js-plugins/preact/demo/tsconfig.json b/js-plugins/preact/demo/tsconfig.json
new file mode 100644
index 0000000..a0146af
--- /dev/null
+++ b/js-plugins/preact/demo/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "noEmit": true,
+ "allowJs": true,
+ "checkJs": true,
+
+ /* Preact Config */
+ "jsx": "react-jsx",
+ "jsxImportSource": "preact"
+ },
+ "include": ["node_modules/vite/client.d.ts", "**/*"]
+}
diff --git a/js-plugins/preact/demo/vite.config.ts b/js-plugins/preact/demo/vite.config.ts
new file mode 100644
index 0000000..0743f42
--- /dev/null
+++ b/js-plugins/preact/demo/vite.config.ts
@@ -0,0 +1,17 @@
+import { defineConfig } from "vite";
+import preact from "../src/index";
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ plugins: [
+ preact({
+ prerender: {
+ enabled: true,
+ renderTarget: "#app",
+ additionalPrerenderRoutes: ["/404"],
+ previewMiddlewareEnabled: true,
+ previewMiddlewareFallback: "/404",
+ },
+ }),
+ ],
+});
diff --git a/js-plugins/preact/playground/farm.config.ts b/js-plugins/preact/playground/farm.config.ts
new file mode 100644
index 0000000..1ba74ea
--- /dev/null
+++ b/js-plugins/preact/playground/farm.config.ts
@@ -0,0 +1,6 @@
+import { defineConfig } from '@farmfe/core'
+import preact from '@farmfe/js-plugins-preact'
+
+export default defineConfig({
+ plugins: [preact()],
+})
diff --git a/js-plugins/preact/src/devtools.ts b/js-plugins/preact/src/devtools.ts
new file mode 100644
index 0000000..5df6706
--- /dev/null
+++ b/js-plugins/preact/src/devtools.ts
@@ -0,0 +1,76 @@
+import { Plugin, ResolvedConfig, normalizePath } from "vite";
+import path from "path";
+import debug from "debug";
+import * as kl from "kolorist";
+
+import type { RollupFilter } from "./utils.js";
+import { parseId } from "./utils.js";
+
+export interface PreactDevtoolsPluginOptions {
+ devtoolsInProd?: boolean;
+ devToolsEnabled?: boolean;
+ shouldTransform: RollupFilter;
+}
+
+export function preactDevtoolsPlugin({
+ devtoolsInProd,
+ devToolsEnabled,
+ shouldTransform,
+}: PreactDevtoolsPluginOptions): Plugin {
+ const log = debug("vite:preact-devtools");
+
+ let entry = "";
+ let config: ResolvedConfig;
+ let found = false;
+
+ const plugin: Plugin = {
+ name: "preact:devtools",
+
+ // Ensure that we resolve before everything else
+ enforce: "pre",
+
+ config() {
+ return {
+ optimizeDeps: {
+ include: ["preact/debug", "preact/devtools"],
+ },
+ };
+ },
+
+ configResolved(resolvedConfig) {
+ config = resolvedConfig;
+ devToolsEnabled =
+ devToolsEnabled ?? (!config.isProduction || devtoolsInProd);
+ },
+
+ resolveId(url, importer = "") {
+ const { id } = parseId(url);
+
+ // Get the main entry file to inject into
+ if (!found && /\.html$/.test(importer) && shouldTransform(id)) {
+ found = true;
+
+ entry = normalizePath(path.join(config.root, id));
+
+ // TODO: Vite types require explicit return
+ // undefined here. They're lacking the "void" type
+ // in their declarations
+ return undefined;
+ }
+ },
+
+ transform(code, url) {
+ const { id } = parseId(url);
+
+ if (entry === id && (!config.isProduction || devToolsEnabled)) {
+ const source = config.isProduction ? "preact/devtools" : "preact/debug";
+ code = `import "${source}";\n${code}`;
+
+ log(`[inject] ${kl.cyan(source)} -> ${kl.dim(id)}`);
+ return code;
+ }
+ },
+ };
+
+ return plugin;
+}
diff --git a/js-plugins/preact/src/index.ts b/js-plugins/preact/src/index.ts
new file mode 100644
index 0000000..2f3cea1
--- /dev/null
+++ b/js-plugins/preact/src/index.ts
@@ -0,0 +1,297 @@
+import type { Plugin, ResolvedConfig } from "vite";
+import type { FilterPattern } from "@rollup/pluginutils";
+import type { ParserPlugin, ParserOptions } from "@babel/parser";
+import type { TransformOptions } from "@babel/core";
+
+import prefresh from "@prefresh/vite";
+import { preactDevtoolsPlugin } from "./devtools.js";
+import { createFilter, parseId } from "./utils.js";
+import { vitePrerenderPlugin } from "vite-prerender-plugin";
+import { transformAsync } from "@babel/core";
+// @ts-ignore package doesn't ship with declaration files
+import babelReactJsx from "@babel/plugin-transform-react-jsx";
+// @ts-ignore package doesn't ship with declaration files
+import babelReactJsxDev from "@babel/plugin-transform-react-jsx-development";
+// @ts-ignore package doesn't ship with declaration files
+import babelHookNames from "babel-plugin-transform-hook-names";
+
+export type BabelOptions = Omit<
+ TransformOptions,
+ | "ast"
+ | "filename"
+ | "root"
+ | "sourceFileName"
+ | "sourceMaps"
+ | "inputSourceMap"
+>;
+
+export interface PreactPluginOptions {
+ /**
+ * Inject devtools bridge in production bundle instead of only in development mode.
+ * @default false
+ */
+ devtoolsInProd?: boolean;
+
+ /**
+ * Whether to use Preact devtools
+ * @default true
+ */
+ devToolsEnabled?: boolean;
+
+ /**
+ * Whether to use prefresh HMR
+ * @default true
+ */
+ prefreshEnabled?: boolean;
+
+ /**
+ * Whether to alias react, react-dom to preact/compat
+ * @default true
+ */
+ reactAliasesEnabled?: boolean;
+
+ /**
+ * Prerender plugin options
+ */
+ prerender?: {
+ /**
+ * Whether to prerender your app on build
+ */
+ enabled: boolean;
+ /**
+ * Absolute path to script containing an exported `prerender()` function
+ */
+ prerenderScript?: string;
+ /**
+ * Query selector for specifying where to insert prerender result in your HTML template
+ */
+ renderTarget?: string;
+ /**
+ * Additional routes that should be prerendered
+ */
+ additionalPrerenderRoutes?: string[];
+ /**
+ * Vite's preview server won't use our prerendered HTML by default, this middleware correct this
+ */
+ previewMiddlewareEnabled?: boolean;
+ /**
+ * Path to use as a fallback/404 route, i.e., `/404` or `/not-found`
+ */
+ previewMiddlewareFallback?: string;
+ };
+
+ /**
+ * RegExp or glob to match files to be transformed
+ */
+ include?: FilterPattern;
+
+ /**
+ * RegExp or glob to match files to NOT be transformed
+ */
+ exclude?: FilterPattern;
+
+ /**
+ * Babel configuration applied in both dev and prod.
+ */
+ babel?: BabelOptions;
+ /**
+ * Import Source for jsx. Defaults to "preact".
+ */
+ jsxImportSource?: string;
+}
+
+export interface PreactBabelOptions extends BabelOptions {
+ plugins: Extract;
+ presets: Extract;
+ overrides: Extract;
+ parserOpts: ParserOptions & {
+ plugins: Extract;
+ };
+}
+
+// Taken from https://github.com/vitejs/vite/blob/main/packages/plugin-react/src/index.ts
+function preactPlugin({
+ devtoolsInProd,
+ devToolsEnabled,
+ prefreshEnabled,
+ reactAliasesEnabled,
+ prerender,
+ include,
+ exclude,
+ babel,
+ jsxImportSource,
+}: PreactPluginOptions = {}): Plugin[] {
+ const baseParserOptions = [
+ "importMeta",
+ "explicitResourceManagement",
+ "topLevelAwait",
+ ];
+ let config: ResolvedConfig;
+
+ let babelOptions = {
+ babelrc: false,
+ configFile: false,
+ ...babel,
+ } as PreactBabelOptions;
+
+ babelOptions.plugins ||= [];
+ babelOptions.presets ||= [];
+ babelOptions.overrides ||= [];
+ babelOptions.parserOpts ||= {} as any;
+ babelOptions.parserOpts.plugins ||= [];
+
+ let useBabel: boolean;
+ const shouldTransform = createFilter(
+ include || [/\.[cm]?[tj]sx?$/],
+ exclude || [/node_modules/],
+ );
+
+ devtoolsInProd = devtoolsInProd ?? false;
+ prefreshEnabled = prefreshEnabled ?? true;
+ reactAliasesEnabled = reactAliasesEnabled ?? true;
+ prerender = prerender ?? { enabled: false };
+
+ const prerenderPlugin = vitePrerenderPlugin(prerender);
+ if (!prerender.previewMiddlewareEnabled) {
+ const idx = prerenderPlugin.findIndex(
+ p => p.name == "serve-prerendered-html",
+ );
+ if (idx > -1) {
+ prerenderPlugin.splice(idx, 1);
+ }
+ }
+
+ const jsxPlugin: Plugin = {
+ name: "vite:preact-jsx",
+ enforce: "pre",
+ config() {
+ return {
+ build: {
+ rollupOptions: {
+ onwarn(warning, warn) {
+ // Silence Rollup's module-level directive warnings re:"use client".
+ // They're likely to come from `node_modules` and won't be actionable.
+ if (
+ warning.code === "MODULE_LEVEL_DIRECTIVE" &&
+ warning.message.includes("use client")
+ )
+ return;
+ // ESBuild seemingly doesn't include mappings for directives, causing
+ // Rollup to emit warnings about missing source locations. This too is
+ // likely to come from `node_modules` and won't be actionable.
+ // evanw/esbuild#3548
+ if (
+ warning.code === "SOURCEMAP_ERROR" &&
+ warning.message.includes("resolve original location") &&
+ warning.pos === 0
+ )
+ return;
+ warn(warning);
+ },
+ },
+ },
+ // While this config is unconditional, it'll only be used if Babel is not
+ esbuild: {
+ jsx: "automatic",
+ jsxImportSource: jsxImportSource ?? "preact",
+ },
+ optimizeDeps: {
+ include: ["preact", "preact/jsx-runtime", "preact/jsx-dev-runtime"],
+ },
+ };
+ },
+ configResolved(resolvedConfig) {
+ config = resolvedConfig;
+ devToolsEnabled =
+ devToolsEnabled ?? (!config.isProduction || devtoolsInProd);
+ useBabel =
+ !config.isProduction || devToolsEnabled || typeof babel !== "undefined";
+ },
+ async transform(code, url) {
+ // Ignore query parameters, as in Vue SFC virtual modules.
+ const { id } = parseId(url);
+
+ if (!useBabel || !shouldTransform(id)) return;
+
+ const parserPlugins = [
+ ...baseParserOptions,
+ "classProperties",
+ "classPrivateProperties",
+ "classPrivateMethods",
+ !id.endsWith(".ts") && "jsx",
+ /\.tsx?$/.test(id) && "typescript",
+ ].filter(Boolean) as ParserPlugin[];
+
+ const result = await transformAsync(code, {
+ ...babelOptions,
+ ast: true,
+ root: config.root,
+ filename: id,
+ parserOpts: {
+ ...babelOptions.parserOpts,
+ sourceType: "module",
+ allowAwaitOutsideFunction: true,
+ plugins: parserPlugins,
+ },
+ generatorOpts: {
+ ...babelOptions.generatorOpts,
+ decoratorsBeforeExport: true,
+ },
+ plugins: [
+ ...babelOptions.plugins,
+ [
+ config.isProduction ? babelReactJsx : babelReactJsxDev,
+ {
+ runtime: "automatic",
+ importSource: jsxImportSource ?? "preact",
+ },
+ ],
+ ...(devToolsEnabled ? [babelHookNames] : []),
+ ],
+ sourceMaps: true,
+ inputSourceMap: false as any,
+ });
+
+ // NOTE: Since no config file is being loaded, this path wouldn't occur.
+ if (!result) return;
+
+ return {
+ code: result.code || code,
+ map: result.map,
+ };
+ },
+ };
+ return [
+ ...(reactAliasesEnabled
+ ? [
+ {
+ name: "preact:config",
+ config() {
+ return {
+ resolve: {
+ alias: {
+ "react-dom/test-utils": "preact/test-utils",
+ "react-dom": "preact/compat",
+ react: "preact/compat",
+ },
+ },
+ };
+ },
+ },
+ ]
+ : []),
+ jsxPlugin,
+ preactDevtoolsPlugin({
+ devtoolsInProd,
+ devToolsEnabled,
+ shouldTransform,
+ }),
+ ...(prefreshEnabled
+ ? [prefresh({ include, exclude, parserPlugins: baseParserOptions })]
+ : []),
+ ...(prerender.enabled ? prerenderPlugin : []),
+ ];
+}
+
+export default preactPlugin;
+export { preactPlugin as preact };
diff --git a/js-plugins/preact/src/utils.ts b/js-plugins/preact/src/utils.ts
new file mode 100644
index 0000000..613e5a4
--- /dev/null
+++ b/js-plugins/preact/src/utils.ts
@@ -0,0 +1,10 @@
+import type { CreateFilter } from "@rollup/pluginutils";
+
+export { createFilter } from "@rollup/pluginutils";
+
+export type RollupFilter = ReturnType;
+
+// Allows to ignore query parameters, as in Vue SFC virtual modules.
+export function parseId(url: string) {
+ return { id: url.split("?", 2)[0] };
+}
diff --git a/js-plugins/preact/test/build.test.mjs b/js-plugins/preact/test/build.test.mjs
new file mode 100644
index 0000000..086cd15
--- /dev/null
+++ b/js-plugins/preact/test/build.test.mjs
@@ -0,0 +1,20 @@
+import { execFile } from "node:child_process";
+import { test } from "node:test";
+import { promisify } from "node:util";
+import { promises as fs } from "node:fs";
+import assert from "node:assert";
+import { dir } from "./util.mjs";
+
+const execFileAsync = promisify(execFile);
+
+test("builds demo successfully", async () => {
+ // Should complete without throwing an error
+ await execFileAsync(
+ process.execPath,
+ [dir("node_modules/vite/bin/vite.js"), "build"],
+ { cwd: dir("demo"), encoding: "utf8" },
+ );
+
+ const outputHtml = await fs.readFile(dir("demo/dist/index.html"), "utf-8");
+ assert.match(outputHtml, /Get Started building Vite-powered Preact Apps/);
+});
diff --git a/js-plugins/preact/test/dev.test.mjs b/js-plugins/preact/test/dev.test.mjs
new file mode 100644
index 0000000..08f37f5
--- /dev/null
+++ b/js-plugins/preact/test/dev.test.mjs
@@ -0,0 +1,41 @@
+import assert from "node:assert";
+import { afterEach, beforeEach, describe, it } from "node:test";
+import { devServerURL, launchDemoDevServer } from "./util.mjs";
+
+describe("dev server", async () => {
+ let devServerProc;
+ beforeEach(async () => {
+ devServerProc = await launchDemoDevServer();
+ });
+
+ afterEach(() => {
+ // Until nodejs/node#45204 is released in node v18, this won't be called on
+ // test failures, so we'll need to manually wrap tests for now
+ devServerProc.kill();
+ });
+
+ // TODO: Remove this wrapper once nodejs/node#45204 is released
+ const wrap = fn => {
+ return async (...args) => {
+ try {
+ await fn(...args);
+ } finally {
+ devServerProc.kill();
+ }
+ };
+ };
+
+ it(
+ "serves src/main.tsx",
+ wrap(async () => {
+ const mainURL = new URL("/src/index.tsx", devServerURL);
+ const res = await fetch(mainURL);
+ if (!res.ok) {
+ const body = await res.text();
+ throw new Error(
+ `Response for ${mainURL} indicated failure. Status code: ${res.status}. Full response:\n${body}`,
+ );
+ }
+ }),
+ );
+});
diff --git a/js-plugins/preact/test/util.mjs b/js-plugins/preact/test/util.mjs
new file mode 100644
index 0000000..eeba827
--- /dev/null
+++ b/js-plugins/preact/test/util.mjs
@@ -0,0 +1,75 @@
+import { spawn } from "node:child_process";
+import path from "node:path";
+import { fileURLToPath } from "node:url";
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+export const dir = (...args) => path.join(__dirname, "..", ...args);
+
+export const devServerURL = new URL("http://127.0.0.1:3000/");
+
+/**
+ * Wait for vite dev server to start
+ * @param {import('node:child_process').ChildProcess} devServerProc
+ * @returns {Promise}
+ */
+function waitForServerStart(devServerProc) {
+ return new Promise((resolve, reject) => {
+ function onError(err) {
+ cleanup();
+ reject(err);
+ }
+
+ /** @param {number | null} code */
+ function onClose(code) {
+ cleanup();
+ reject(new Error(`Dev server closed unexpectedly with code "${code}"`));
+ }
+
+ let stdout = "";
+ /** @param {Buffer | string} chunk */
+ function onData(chunk) {
+ try {
+ /** @type {string} */
+ const data = Buffer.isBuffer(chunk)
+ ? chunk.toString("utf-8")
+ : chunk.toString();
+
+ stdout += data;
+
+ if (stdout.match(/ready in [0-9]+ms/g) != null) {
+ cleanup();
+ resolve();
+ }
+ } catch (e) {
+ reject(e);
+ }
+ }
+
+ function cleanup() {
+ try {
+ devServerProc.stdout?.off("data", onData);
+ devServerProc.off("error", onError);
+ devServerProc.off("close", onClose);
+ } catch (e) {
+ reject(e);
+ }
+ }
+
+ devServerProc.stdout?.on("data", onData);
+ devServerProc.on("error", onError);
+ devServerProc.on("close", onClose);
+ });
+}
+
+export async function launchDemoDevServer() {
+ /** @type {import('node:child_process').ChildProcess} */
+ const devServerProc = spawn(
+ process.execPath,
+ [dir("node_modules/vite/bin/vite.js")],
+ { cwd: dir("demo"), stdio: "pipe" },
+ );
+
+ await waitForServerStart(devServerProc);
+
+ return devServerProc;
+}
diff --git a/js-plugins/preact/tools/postbuild.mjs b/js-plugins/preact/tools/postbuild.mjs
new file mode 100644
index 0000000..ca5120c
--- /dev/null
+++ b/js-plugins/preact/tools/postbuild.mjs
@@ -0,0 +1,24 @@
+import fs from "fs";
+import path from "path";
+import { fileURLToPath } from "url";
+
+// Note: Once TypeScript 4.5 is out of beta we can drop the whole script.
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+
+const dir = path.join(__dirname, "..", "dist", "esm");
+
+for (const file of fs.readdirSync(dir)) {
+ const ext = file.endsWith(".d.ts") ? ".mts" : ".mjs";
+ const target = path.join(dir, path.basename(file, path.extname(file)) + ext);
+
+ fs.renameSync(path.join(dir, file), target);
+
+ const source = fs.readFileSync(target, "utf-8");
+ const code = source.replace(
+ /(\w+)\.js(["'])/g,
+ (_, spec, quot) => `${spec}.mjs${quot}`,
+ );
+ if (code !== source) {
+ fs.writeFileSync(target, code);
+ }
+}
diff --git a/js-plugins/preact/tsconfig.cjs.json b/js-plugins/preact/tsconfig.cjs.json
new file mode 100644
index 0000000..f70045c
--- /dev/null
+++ b/js-plugins/preact/tsconfig.cjs.json
@@ -0,0 +1,7 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist/cjs/",
+ "module": "CommonJS"
+ }
+}
diff --git a/js-plugins/preact/tsconfig.json b/js-plugins/preact/tsconfig.json
new file mode 100644
index 0000000..2580247
--- /dev/null
+++ b/js-plugins/preact/tsconfig.json
@@ -0,0 +1,12 @@
+{
+ "compilerOptions": {
+ "target": "ES2019",
+ "strict": true,
+ "esModuleInterop": true,
+ "module": "ESNext",
+ "moduleResolution": "Node",
+ "declaration": true,
+ "outDir": "dist/esm/"
+ },
+ "files": ["./src/index.ts"]
+}
From e6494764eb8f220c8c5a45a10f6061baf623fdc5 Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Tue, 28 Jan 2025 17:09:35 +0800
Subject: [PATCH 4/6] chore(js-plugins): update deps
---
js-plugins/preact/package.json | 79 +-
js-plugins/preact/playground/package.json | 4 +-
pnpm-lock.yaml | 5534 ++++++++++++++-------
3 files changed, 3760 insertions(+), 1857 deletions(-)
diff --git a/js-plugins/preact/package.json b/js-plugins/preact/package.json
index 86594e2..e8172bc 100644
--- a/js-plugins/preact/package.json
+++ b/js-plugins/preact/package.json
@@ -1,12 +1,71 @@
{
- "name": "preact",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "keywords": [],
- "author": "",
- "license": "ISC"
+ "name": "@farmfe/js-plugins-preact",
+ "version": "0.0.1",
+ "description": "Preact preset for the farm bundler",
+ "main": "./dist/cjs/index.js",
+ "module": "./dist/esm/index.mjs",
+ "exports": {
+ ".": {
+ "import": "./dist/esm/index.mjs",
+ "require": "./dist/cjs/index.js"
+ },
+ "./package.json": "./package.json"
+ },
+ "types": "dist/cjs/index.d.ts",
+ "scripts": {
+ "dev": "farm dev",
+ "dev:build": "farm build demo",
+ "dev:preview": "farm preview demo",
+ "build": "rimraf dist && tsc && tsc -p tsconfig.cjs.json && node tools/postbuild.mjs",
+ "test": "rimraf demo/node_modules && node --test test",
+ "prepublishOnly": "npm run build"
+ },
+ "keywords": [
+ "preact",
+ "farm",
+ "preset",
+ "preset-farm"
+ ],
+ "author": "The Preact Team (https://preactjs.com)",
+ "repository": {
+ "type": "git"
+ },
+ "license": "MIT",
+ "files": [
+ "dist/"
+ ],
+ "dependencies": {
+ "@babel/plugin-transform-react-jsx": "^7.22.15",
+ "@babel/plugin-transform-react-jsx-development": "^7.22.5",
+ "@prefresh/vite": "^2.4.1",
+ "@rollup/pluginutils": "^4.1.1",
+ "babel-plugin-transform-hook-names": "^1.0.2",
+ "debug": "^4.3.4",
+ "kolorist": "^1.8.0",
+ "vite-prerender-plugin": "^0.5.3"
+ },
+ "peerDependencies": {
+ "@babel/core": "7.x"
+ },
+ "devDependencies": {
+ "@farmfe/core": "/Users/adny/rust/farm/packages/core",
+ "@farmfe/cli": "/Users/adny/rust/farm/packages/cli",
+ "@babel/core": "^7.15.8",
+ "@types/babel__code-frame": "^7.0.6",
+ "@types/babel__core": "^7.1.14",
+ "@types/debug": "^4.1.5",
+ "@types/estree": "^0.0.50",
+ "@types/node": "^14.14.33",
+ "@types/stack-trace": "^0.0.33",
+ "lint-staged": "^10.5.4",
+ "preact": "^10.19.2",
+ "preact-iso": "^2.3.2",
+ "preact-render-to-string": "^6.3.1",
+ "prettier": "^2.2.1",
+ "rimraf": "^3.0.2",
+ "rollup": "^2.77.3",
+ "ts-node": "^9.1.1",
+ "typescript": "^4.2.3",
+ "vite": "^2.6.7"
+ }
}
diff --git a/js-plugins/preact/playground/package.json b/js-plugins/preact/playground/package.json
index 6dedbec..89457f2 100644
--- a/js-plugins/preact/playground/package.json
+++ b/js-plugins/preact/playground/package.json
@@ -14,6 +14,8 @@
"devDependencies": {
"@preact/preset-vite": "^2.9.3",
"typescript": "~5.6.2",
- "vite": "^6.0.5"
+ "vite": "^6.0.5",
+ "@farmfe/core": "/Users/adny/rust/farm/packages/core",
+ "@farmfe/cli": "/Users/adny/rust/farm/packages/cli"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 265cf72..3a396e5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4 +1,4 @@
-lockfileVersion: '6.0'
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
@@ -34,7 +34,7 @@ importers:
version: 1.0.4
'@farmfe/core':
specifier: ^1.5.0
- version: 1.6.1
+ version: 1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)
'@farmfe/js-plugin-babel':
specifier: workspace:*
version: link:../../js-plugins/babel
@@ -81,7 +81,7 @@ importers:
version: 1.0.4
'@farmfe/core':
specifier: ^1.3.0
- version: 1.6.1
+ version: 1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)
'@farmfe/plugin-mdx':
specifier: workspace:*
version: link:../../rust-plugins/mdx
@@ -112,7 +112,7 @@ importers:
version: 1.0.4
'@farmfe/core':
specifier: ^1.6.0
- version: 1.6.1
+ version: 1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)
'@farmfe/js-plugin-dts':
specifier: ^0.6.4
version: 0.6.4
@@ -146,7 +146,7 @@ importers:
version: 1.0.4
'@farmfe/core':
specifier: ^1.3.23
- version: 1.6.1
+ version: 1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)
'@farmfe/js-plugin-dts':
specifier: ^0.6.4
version: 0.6.4
@@ -157,6 +157,91 @@ importers:
specifier: ^7.0.3
version: 7.0.3
+ js-plugins/preact:
+ dependencies:
+ '@babel/plugin-transform-react-jsx':
+ specifier: ^7.22.15
+ version: 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development':
+ specifier: ^7.22.5
+ version: 7.25.9(@babel/core@7.26.0)
+ '@prefresh/vite':
+ specifier: ^2.4.1
+ version: 2.4.6(preact@10.25.4)(vite@2.9.18)
+ '@rollup/pluginutils':
+ specifier: ^4.1.1
+ version: 4.2.1
+ babel-plugin-transform-hook-names:
+ specifier: ^1.0.2
+ version: 1.0.2(@babel/core@7.26.0)
+ debug:
+ specifier: ^4.3.4
+ version: 4.4.0
+ kolorist:
+ specifier: ^1.8.0
+ version: 1.8.0
+ vite-prerender-plugin:
+ specifier: ^0.5.3
+ version: 0.5.5
+ devDependencies:
+ '@babel/core':
+ specifier: ^7.15.8
+ version: 7.26.0
+ '@farmfe/cli':
+ specifier: /Users/adny/rust/farm/packages/cli
+ version: link:../../../farm/packages/cli
+ '@farmfe/core':
+ specifier: /Users/adny/rust/farm/packages/core
+ version: link:../../../farm/packages/core
+ '@types/babel__code-frame':
+ specifier: ^7.0.6
+ version: 7.0.6
+ '@types/babel__core':
+ specifier: ^7.1.14
+ version: 7.20.5
+ '@types/debug':
+ specifier: ^4.1.5
+ version: 4.1.12
+ '@types/estree':
+ specifier: ^0.0.50
+ version: 0.0.50
+ '@types/node':
+ specifier: ^14.14.33
+ version: 14.18.63
+ '@types/stack-trace':
+ specifier: ^0.0.33
+ version: 0.0.33
+ lint-staged:
+ specifier: ^10.5.4
+ version: 10.5.4
+ preact:
+ specifier: ^10.19.2
+ version: 10.25.4
+ preact-iso:
+ specifier: ^2.3.2
+ version: 2.8.1(preact-render-to-string@6.5.13(preact@10.25.4))(preact@10.25.4)
+ preact-render-to-string:
+ specifier: ^6.3.1
+ version: 6.5.13(preact@10.25.4)
+ prettier:
+ specifier: ^2.2.1
+ version: 2.8.8
+ rimraf:
+ specifier: ^3.0.2
+ version: 3.0.2
+ rollup:
+ specifier: ^2.77.3
+ version: 2.79.2
+ ts-node:
+ specifier: ^9.1.1
+ version: 9.1.1(typescript@4.9.5)
+ typescript:
+ specifier: ^4.2.3
+ version: 4.9.5
+ vite:
+ specifier: ^2.6.7
+ version: 2.9.18
+
js-plugins/react-compiler:
dependencies:
'@babel/plugin-syntax-jsx':
@@ -174,7 +259,7 @@ importers:
version: 1.0.4
'@farmfe/core':
specifier: ^1.6.0
- version: 1.6.1
+ version: 1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)
'@farmfe/js-plugin-babel':
specifier: workspace:*
version: link:../babel
@@ -195,7 +280,7 @@ importers:
devDependencies:
'@farmfe/js-plugin-visualizer':
specifier: latest
- version: 1.1.4(monaco-editor@0.52.2)(vue@3.5.13)
+ version: 1.1.4(monaco-editor@0.52.2)(vue@3.5.13(typescript@5.7.2))
'@farmfe/plugin-tools':
specifier: latest
version: 0.1.1
@@ -260,805 +345,395 @@ importers:
packages:
- /@ampproject/remapping@2.3.0:
+ '@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- dev: false
- /@ant-design/colors@6.0.0:
+ '@ant-design/colors@6.0.0':
resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==}
- dependencies:
- '@ctrl/tinycolor': 3.6.1
- dev: true
- /@ant-design/icons-svg@4.4.2:
+ '@ant-design/icons-svg@4.4.2':
resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
- dev: true
- /@ant-design/icons-vue@7.0.1(vue@3.5.13):
+ '@ant-design/icons-vue@7.0.1':
resolution: {integrity: sha512-eCqY2unfZK6Fe02AwFlDHLfoyEFreP6rBwAZMIJ1LugmfMiVgwWDYlp1YsRugaPtICYOabV1iWxXdP12u9U43Q==}
peerDependencies:
vue: '>=3.0.3'
- dependencies:
- '@ant-design/colors': 6.0.0
- '@ant-design/icons-svg': 4.4.2
- vue: 3.5.13(typescript@5.7.2)
- dev: true
- /@babel/code-frame@7.26.2:
+ '@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.25.9
- js-tokens: 4.0.0
- picocolors: 1.1.1
- /@babel/compat-data@7.26.3:
+ '@babel/compat-data@7.26.3':
resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
engines: {node: '>=6.9.0'}
- dev: false
- /@babel/core@7.26.0:
+ '@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
- '@babel/helper-compilation-targets': 7.25.9
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helpers': 7.26.0
- '@babel/parser': 7.26.3
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
- convert-source-map: 2.0.0
- debug: 4.4.0
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/generator@7.26.3:
+ '@babel/generator@7.26.3':
resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
- dev: false
- /@babel/helper-compilation-targets@7.25.9:
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.25.9':
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.26.3
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.3
- lru-cache: 5.1.1
- semver: 6.3.1
- dev: false
- /@babel/helper-module-imports@7.25.9:
+ '@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0):
+ '@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/helper-plugin-utils@7.25.9:
+ '@babel/helper-plugin-utils@7.25.9':
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- dev: false
- /@babel/helper-string-parser@7.25.9:
+ '@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.25.9:
+ '@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.25.9:
+ '@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- dev: false
- /@babel/helpers@7.26.0:
+ '@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.25.9
- '@babel/types': 7.26.3
- dev: false
- /@babel/parser@7.26.3:
+ '@babel/parser@7.26.3':
resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
engines: {node: '>=6.0.0'}
hasBin: true
- dependencies:
- '@babel/types': 7.26.3
- /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0):
+ '@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- dev: false
- /@babel/runtime@7.26.0:
+ '@babel/plugin-transform-react-jsx-development@7.25.9':
+ resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx@7.25.9':
+ resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.14.1
- /@babel/template@7.25.9:
+ '@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- dev: false
- /@babel/traverse@7.26.4:
+ '@babel/traverse@7.26.4':
resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
- '@babel/template': 7.25.9
- '@babel/types': 7.26.3
- debug: 4.4.0
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/types@7.26.3:
+ '@babel/types@7.26.3':
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- /@changesets/apply-release-plan@7.0.7:
+ '@changesets/apply-release-plan@7.0.7':
resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
- dependencies:
- '@changesets/config': 3.0.5
- '@changesets/get-version-range-type': 0.4.0
- '@changesets/git': 3.0.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- detect-indent: 6.1.0
- fs-extra: 7.0.1
- lodash.startcase: 4.4.0
- outdent: 0.5.0
- prettier: 2.8.8
- resolve-from: 5.0.0
- semver: 7.6.3
- /@changesets/assemble-release-plan@6.0.5:
+ '@changesets/assemble-release-plan@6.0.5':
resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==}
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- semver: 7.6.3
- /@changesets/changelog-git@0.2.0:
+ '@changesets/changelog-git@0.2.0':
resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
- dependencies:
- '@changesets/types': 6.0.0
- /@changesets/cli@2.27.11:
+ '@changesets/cli@2.27.11':
resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
hasBin: true
- dependencies:
- '@changesets/apply-release-plan': 7.0.7
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.5
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/get-release-plan': 4.0.6
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/should-skip-package': 0.1.1
- '@changesets/types': 6.0.0
- '@changesets/write': 0.3.2
- '@manypkg/get-packages': 1.1.3
- ansi-colors: 4.1.3
- ci-info: 3.9.0
- enquirer: 2.4.1
- external-editor: 3.1.0
- fs-extra: 7.0.1
- mri: 1.2.0
- p-limit: 2.3.0
- package-manager-detector: 0.2.8
- picocolors: 1.1.1
- resolve-from: 5.0.0
- semver: 7.6.3
- spawndamnit: 3.0.1
- term-size: 2.2.1
- /@changesets/config@3.0.5:
+ '@changesets/config@3.0.5':
resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.2
- '@changesets/logger': 0.1.1
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- micromatch: 4.0.8
- /@changesets/errors@0.2.0:
+ '@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- dependencies:
- extendable-error: 0.1.7
- /@changesets/get-dependents-graph@2.1.2:
+ '@changesets/get-dependents-graph@2.1.2':
resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- picocolors: 1.1.1
- semver: 7.6.3
- /@changesets/get-release-plan@4.0.6:
+ '@changesets/get-release-plan@4.0.6':
resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
- dependencies:
- '@changesets/assemble-release-plan': 6.0.5
- '@changesets/config': 3.0.5
- '@changesets/pre': 2.0.1
- '@changesets/read': 0.6.2
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- /@changesets/get-version-range-type@0.4.0:
+ '@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
- /@changesets/git@3.0.2:
+ '@changesets/git@3.0.2':
resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==}
- dependencies:
- '@changesets/errors': 0.2.0
- '@manypkg/get-packages': 1.1.3
- is-subdir: 1.2.0
- micromatch: 4.0.8
- spawndamnit: 3.0.1
- /@changesets/logger@0.1.1:
+ '@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
- dependencies:
- picocolors: 1.1.1
- /@changesets/parse@0.4.0:
+ '@changesets/parse@0.4.0':
resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
- dependencies:
- '@changesets/types': 6.0.0
- js-yaml: 3.14.1
- /@changesets/pre@2.0.1:
+ '@changesets/pre@2.0.1':
resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
- dependencies:
- '@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- fs-extra: 7.0.1
- /@changesets/read@0.6.2:
+ '@changesets/read@0.6.2':
resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==}
- dependencies:
- '@changesets/git': 3.0.2
- '@changesets/logger': 0.1.1
- '@changesets/parse': 0.4.0
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- p-filter: 2.1.0
- picocolors: 1.1.1
- /@changesets/should-skip-package@0.1.1:
+ '@changesets/should-skip-package@0.1.1':
resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
- dependencies:
- '@changesets/types': 6.0.0
- '@manypkg/get-packages': 1.1.3
- /@changesets/types@4.1.0:
+ '@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
- /@changesets/types@6.0.0:
+ '@changesets/types@6.0.0':
resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
- /@changesets/write@0.3.2:
+ '@changesets/write@0.3.2':
resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
- dependencies:
- '@changesets/types': 6.0.0
- fs-extra: 7.0.1
- human-id: 1.0.2
- prettier: 2.8.8
- /@commitlint/cli@19.6.1(@types/node@22.10.2)(typescript@5.7.2):
+ '@commitlint/cli@19.6.1':
resolution: {integrity: sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ==}
engines: {node: '>=v18'}
hasBin: true
- dependencies:
- '@commitlint/format': 19.5.0
- '@commitlint/lint': 19.6.0
- '@commitlint/load': 19.6.1(@types/node@22.10.2)(typescript@5.7.2)
- '@commitlint/read': 19.5.0
- '@commitlint/types': 19.5.0
- tinyexec: 0.3.1
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - typescript
- dev: true
- /@commitlint/config-validator@19.5.0:
+ '@commitlint/config-validator@19.5.0':
resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/types': 19.5.0
- ajv: 8.17.1
- dev: true
- /@commitlint/ensure@19.5.0:
+ '@commitlint/ensure@19.5.0':
resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/types': 19.5.0
- lodash.camelcase: 4.3.0
- lodash.kebabcase: 4.1.1
- lodash.snakecase: 4.1.1
- lodash.startcase: 4.4.0
- lodash.upperfirst: 4.3.1
- dev: true
- /@commitlint/execute-rule@19.5.0:
+ '@commitlint/execute-rule@19.5.0':
resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
engines: {node: '>=v18'}
- dev: true
- /@commitlint/format@19.5.0:
+ '@commitlint/format@19.5.0':
resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/types': 19.5.0
- chalk: 5.4.1
- dev: true
- /@commitlint/is-ignored@19.6.0:
+ '@commitlint/is-ignored@19.6.0':
resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/types': 19.5.0
- semver: 7.6.3
- dev: true
- /@commitlint/lint@19.6.0:
+ '@commitlint/lint@19.6.0':
resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/is-ignored': 19.6.0
- '@commitlint/parse': 19.5.0
- '@commitlint/rules': 19.6.0
- '@commitlint/types': 19.5.0
- dev: true
- /@commitlint/load@19.6.1(@types/node@22.10.2)(typescript@5.7.2):
+ '@commitlint/load@19.6.1':
resolution: {integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/execute-rule': 19.5.0
- '@commitlint/resolve-extends': 19.5.0
- '@commitlint/types': 19.5.0
- chalk: 5.4.1
- cosmiconfig: 9.0.0(typescript@5.7.2)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0)(typescript@5.7.2)
- lodash.isplainobject: 4.0.6
- lodash.merge: 4.6.2
- lodash.uniq: 4.5.0
- transitivePeerDependencies:
- - '@types/node'
- - typescript
- dev: true
- /@commitlint/message@19.5.0:
+ '@commitlint/message@19.5.0':
resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==}
engines: {node: '>=v18'}
- dev: true
- /@commitlint/parse@19.5.0:
+ '@commitlint/parse@19.5.0':
resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/types': 19.5.0
- conventional-changelog-angular: 7.0.0
- conventional-commits-parser: 5.0.0
- dev: true
- /@commitlint/read@19.5.0:
+ '@commitlint/read@19.5.0':
resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/top-level': 19.5.0
- '@commitlint/types': 19.5.0
- git-raw-commits: 4.0.0
- minimist: 1.2.8
- tinyexec: 0.3.1
- dev: true
- /@commitlint/resolve-extends@19.5.0:
+ '@commitlint/resolve-extends@19.5.0':
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/config-validator': 19.5.0
- '@commitlint/types': 19.5.0
- global-directory: 4.0.1
- import-meta-resolve: 4.1.0
- lodash.mergewith: 4.6.2
- resolve-from: 5.0.0
- dev: true
- /@commitlint/rules@19.6.0:
+ '@commitlint/rules@19.6.0':
resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==}
engines: {node: '>=v18'}
- dependencies:
- '@commitlint/ensure': 19.5.0
- '@commitlint/message': 19.5.0
- '@commitlint/to-lines': 19.5.0
- '@commitlint/types': 19.5.0
- dev: true
- /@commitlint/to-lines@19.5.0:
+ '@commitlint/to-lines@19.5.0':
resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==}
engines: {node: '>=v18'}
- dev: true
- /@commitlint/top-level@19.5.0:
+ '@commitlint/top-level@19.5.0':
resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
engines: {node: '>=v18'}
- dependencies:
- find-up: 7.0.0
- dev: true
- /@commitlint/types@19.5.0:
+ '@commitlint/types@19.5.0':
resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
engines: {node: '>=v18'}
- dependencies:
- '@types/conventional-commits-parser': 5.0.1
- chalk: 5.4.1
- dev: true
- /@ctrl/tinycolor@3.6.1:
+ '@ctrl/tinycolor@3.6.1':
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
- dev: true
- /@farmfe/cli@1.0.4:
+ '@esbuild/linux-loong64@0.14.54':
+ resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@farmfe/cli@1.0.4':
resolution: {integrity: sha512-bau/2P7DylHUDksUvbvJod/Ew4dl5ZICYVgTNn0EfrJM/ZuwLaV8LjmPo0pM4y1QOZmg/N3B9DwkXO89DrutYQ==}
engines: {node: '>= 16'}
hasBin: true
- dependencies:
- cac: 6.7.14
- cross-spawn: 7.0.6
- inquirer: 9.2.12
- walkdir: 0.4.1
- /@farmfe/core-darwin-arm64@1.6.1:
+ '@farmfe/core-darwin-arm64@1.6.1':
resolution: {integrity: sha512-Ig65wjNc2b5YCaZdnk82TRdpmEH6BxkZfg0DqUqwQtrXVe0iAvMpzmiUSHTHyyFBZcXukrRJ3SBsYLqGxPxn8g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@farmfe/core-darwin-x64@1.6.1:
+ '@farmfe/core-darwin-x64@1.6.1':
resolution: {integrity: sha512-I+WlwA/o6szoH+JcKrsrQ+a+BxHD3UYAs5AuYMhI2J4bVj8MyF+RAPAMtWZ7eSw3Wl+YDIAFSrWE6FWllGkkuA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /@farmfe/core-linux-arm64-gnu@1.6.1:
+ '@farmfe/core-linux-arm64-gnu@1.6.1':
resolution: {integrity: sha512-Rwo+EFxgZXJFLZ9eo9HiZK6cdFTPfDAjppXGSTA48W/ZpBnWyDgvH8UZ5TrkM+n/gcSPkURJLeCK/ZZXZvgiSg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@farmfe/core-linux-arm64-musl@1.6.1:
+ '@farmfe/core-linux-arm64-musl@1.6.1':
resolution: {integrity: sha512-tIALIHbkeapZ8CuWEMQKTspOWX7Cg6LyUC1Hx2QTMl8dX6JbztROilaBgKoNTrjiHPse3viXP6y7s2VNTndPNw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- optional: true
- /@farmfe/core-linux-x64-gnu@1.6.1:
+ '@farmfe/core-linux-x64-gnu@1.6.1':
resolution: {integrity: sha512-ulK7KAsmc0W3dHfJLR9WGqipqQsN3HET86OdlTsBjZeZGn/5Mv5iT6Z0jV6dCO22T9d7DCB/0im+GQpBwAQCog==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- optional: true
- /@farmfe/core-linux-x64-musl@1.6.1:
+ '@farmfe/core-linux-x64-musl@1.6.1':
resolution: {integrity: sha512-AjgNsHhDTn4nlejV0jyPGVbo2RSnK631SNxBhvRt9vCc6sd4xkSUXNlZpzxEAj+DY/0t3cLN8lIv4988n2FLEg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- requiresBuild: true
- optional: true
- /@farmfe/core-win32-arm64-msvc@1.6.1:
+ '@farmfe/core-win32-arm64-msvc@1.6.1':
resolution: {integrity: sha512-EYOe/adT64byExfupKVXF8OK7jzMTvGixVGVkrlnqFajNLupwLp6l8GjG+MSG/tHyb3oX3K9LUEC07TmXPYy3g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /@farmfe/core-win32-ia32-msvc@1.6.1:
+ '@farmfe/core-win32-ia32-msvc@1.6.1':
resolution: {integrity: sha512-RYvoHDu8i38d5NOATvHgPUFd0mQUqj165bozumV0sVwWQRZOMiAJLjCCZFvv6XS7s2nL/V8hAJ+2eqDuUO/jqA==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /@farmfe/core-win32-x64-msvc@1.6.1:
+ '@farmfe/core-win32-x64-msvc@1.6.1':
resolution: {integrity: sha512-FreMGOZ2LFCX75uZESGfCkPiecVAplFKaV5vYR3sW+k+/FPGWwO5hwRCpFfVWbzqoeO1PLp1jL3jYo/OvYhxpw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /@farmfe/core@1.6.1:
+ '@farmfe/core@1.6.1':
resolution: {integrity: sha512-X4F5AvfWcb/hKcgG6MQO7hXyLuhOhrxh5yGHDCxBu1s/1U102+23gnPilbY3TNOz45gjCOezjdRukSIfEIxR9Q==}
engines: {node: '>=16.15.1'}
- dependencies:
- '@farmfe/runtime': 0.12.10
- '@farmfe/runtime-plugin-hmr': 3.5.10
- '@farmfe/runtime-plugin-import-meta': 0.2.3
- '@farmfe/utils': 0.1.0
- '@koa/cors': 5.0.0
- '@swc/helpers': 0.5.15
- chokidar: 3.6.0
- deepmerge: 4.3.1
- dotenv: 16.4.7
- dotenv-expand: 11.0.7
- execa: 7.2.0
- farm-browserslist-generator: 1.0.5
- farm-plugin-replace-dirname: 0.2.1
- fast-glob: 3.3.2
- fs-extra: 11.2.0
- http-proxy-middleware: 3.0.3
- is-plain-object: 5.0.0
- koa: 2.15.3
- koa-compress: 5.1.1
- koa-connect: 2.1.0
- koa-static: 5.0.0
- lodash.debounce: 4.0.8
- loglevel: 1.9.2
- open: 9.1.0
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)
- zod: 3.24.1
- zod-validation-error: 1.5.0(zod@3.24.1)
- optionalDependencies:
- '@farmfe/core-darwin-arm64': 1.6.1
- '@farmfe/core-darwin-x64': 1.6.1
- '@farmfe/core-linux-arm64-gnu': 1.6.1
- '@farmfe/core-linux-arm64-musl': 1.6.1
- '@farmfe/core-linux-x64-gnu': 1.6.1
- '@farmfe/core-linux-x64-musl': 1.6.1
- '@farmfe/core-win32-arm64-msvc': 1.6.1
- '@farmfe/core-win32-ia32-msvc': 1.6.1
- '@farmfe/core-win32-x64-msvc': 1.6.1
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- /@farmfe/js-plugin-dts@0.6.4:
+ '@farmfe/js-plugin-dts@0.6.4':
resolution: {integrity: sha512-5xhjtbY1gEs6IdjBrgNcsYaJPFHxu9F9Ab5PKllaCqlg6e0gf/Jy0AshNBasOT3Uzmma6/5cX56i35vwL3U8sw==}
- dependencies:
- chalk: 5.4.1
- fast-glob: 3.3.2
- fs-extra: 11.2.0
- ts-morph: 23.0.0
- typescript: 5.7.2
- dev: true
- /@farmfe/js-plugin-visualizer@1.1.4(monaco-editor@0.52.2)(vue@3.5.13):
+ '@farmfe/js-plugin-visualizer@1.1.4':
resolution: {integrity: sha512-OgVILggB2haeKLpnxaL8jowDLedmO7KPjrFYIAqgqTozV2Pf5FPy/+ywc4Pew85+wFTBxU+e+wFkCv9jKszHRA==}
- dependencies:
- '@ant-design/icons-vue': 7.0.1(vue@3.5.13)
- '@guolao/vue-monaco-editor': 1.5.4(monaco-editor@0.52.2)(vue@3.5.13)
- '@types/ws': 8.5.13
- axios: 1.7.9
- bufferutil: 4.0.8
- core-js: 3.39.0
- envinfo: 7.14.0
- sirv: 2.0.4
- utf-8-validate: 6.0.5
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)
- transitivePeerDependencies:
- - '@vue/composition-api'
- - debug
- - monaco-editor
- - vue
- dev: true
- /@farmfe/plugin-react-darwin-arm64@1.2.6:
+ '@farmfe/plugin-react-darwin-arm64@1.2.6':
resolution: {integrity: sha512-LcIZs2dIZWXEp05wnBmCxYMeXAu66tJSyWamdSDengbyzgvIrD0Ap1+QIDlluEnz7XOFxSH3jJZuuZP8h8qNfA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-darwin-x64@1.2.6:
+ '@farmfe/plugin-react-darwin-x64@1.2.6':
resolution: {integrity: sha512-E2HarfTjYIgZO454YGqnu84kOefddRyKqLtEMkG6j7Sij+uP1uEgi5mjWIwsJY9TWv5DYbx1FPmiLigC5IKP9w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-linux-arm64-gnu@1.2.6:
+ '@farmfe/plugin-react-linux-arm64-gnu@1.2.6':
resolution: {integrity: sha512-VK+4AtqUcAKQvAmUgWnQK3M2bXQaptMyGN/28xo/wuUjz88wso27ay5bfPxEfDHeorRwcSq5l4Gf4rQFRGc+Wg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-linux-arm64-musl@1.2.6:
+ '@farmfe/plugin-react-linux-arm64-musl@1.2.6':
resolution: {integrity: sha512-e1OFg8d1VnEGcg08ewTxJVbv6ie1e8U8fUSABbEUePKzeom8cfC9P4jadACw08M2Ls4YnOlLPFLTSlVCg9Xhew==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-linux-x64-gnu@1.2.6:
+ '@farmfe/plugin-react-linux-x64-gnu@1.2.6':
resolution: {integrity: sha512-0WFKSkPv/NK7A/czyluS0V+h/qxIb6jILUh82RyOfVjCit0WGPDVN/IH/ZIp2qMGdjtP9er8u4yt4zNGKrHZNQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-linux-x64-musl@1.2.6:
+ '@farmfe/plugin-react-linux-x64-musl@1.2.6':
resolution: {integrity: sha512-X386lU5+4ELeaIS3c2xgB4cUjry12HUF3/lJWje2hV0SvGHwErkM07HhjbQd/XsJyg6dP8YnAn3RkuYFiwoTog==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-win32-arm64-msvc@1.2.6:
+ '@farmfe/plugin-react-win32-arm64-msvc@1.2.6':
resolution: {integrity: sha512-Ufr59JWTYv5Yq/FBBnCWtX136sVilqYDX4CfpBDEUxSEqFgaXGyslme1qDmh1248bscqbbvYI4zbn7ECV209ow==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-win32-ia32-msvc@1.2.6:
+ '@farmfe/plugin-react-win32-ia32-msvc@1.2.6':
resolution: {integrity: sha512-qzbeV639ywoGBGUAboi31+9vzpmS+llvRcxdpkKVTVrDQ7Wb0SO1Dmd7g2gItip6jAj8md+5sL9WudYJ/EOA5g==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react-win32-x64-msvc@1.2.6:
+ '@farmfe/plugin-react-win32-x64-msvc@1.2.6':
resolution: {integrity: sha512-Og2yvMOpR2VSLgUEthhJ1W0kM4FQjupHN+gPMr97KyoM+dh6xYwnbZ0Cs9JnNIqQFPlYiPuq9EzLPVffxX8xHg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: true
- optional: true
- /@farmfe/plugin-react@1.2.6:
+ '@farmfe/plugin-react@1.2.6':
resolution: {integrity: sha512-AVXMnqwekp+Cke6a16/xWnviUnQiFeY1FhxkTGJVamHQFgGmm+uAhPXJ85sQDQLAwtkAMd8rimEhNFVeHIKkaw==}
- optionalDependencies:
- '@farmfe/plugin-react-darwin-arm64': 1.2.6
- '@farmfe/plugin-react-darwin-x64': 1.2.6
- '@farmfe/plugin-react-linux-arm64-gnu': 1.2.6
- '@farmfe/plugin-react-linux-arm64-musl': 1.2.6
- '@farmfe/plugin-react-linux-x64-gnu': 1.2.6
- '@farmfe/plugin-react-linux-x64-musl': 1.2.6
- '@farmfe/plugin-react-win32-arm64-msvc': 1.2.6
- '@farmfe/plugin-react-win32-ia32-msvc': 1.2.6
- '@farmfe/plugin-react-win32-x64-msvc': 1.2.6
- dev: true
- /@farmfe/plugin-tools@0.1.1:
+ '@farmfe/plugin-tools@0.1.1':
resolution: {integrity: sha512-7ox1VgCI5AWFrIUQVLEYGdqCSGNBJYRC0Yhu5sK0a/sR/OSaZa97MdiKA80LkM6UgK+dDFy49rPre10U/M7yww==}
hasBin: true
- dependencies:
- '@farmfe/utils': 0.1.0
- '@napi-rs/cli': 2.18.4
- cac: 6.7.14
- dev: true
- /@farmfe/runtime-plugin-hmr@3.5.10:
+ '@farmfe/runtime-plugin-hmr@3.5.10':
resolution: {integrity: sha512-ZFwAGDJ1sNuwX77ADdPSO+PoMImrGl0k+nvW/TnzOy72k8JxC8OwaeOiuPgNkYxDGldp55l9mPE9NvcoxR8uzQ==}
- dependencies:
- core-js: 3.39.0
- /@farmfe/runtime-plugin-import-meta@0.2.3:
+ '@farmfe/runtime-plugin-import-meta@0.2.3':
resolution: {integrity: sha512-BEHPjfXj/DXpwKxyM4rMqT9NFRfivTGS+b02uchjV9MSTi8mZqm3QhtJ+znlpgHUBABBtZYKdayQEDhyK4izYw==}
- dependencies:
- core-js: 3.39.0
- /@farmfe/runtime@0.12.10:
+ '@farmfe/runtime@0.12.10':
resolution: {integrity: sha512-2/jebNFaVC+yctEeFZrmbfjaKJOg2Ib9iJ8ypjcUnnETfR4zbZnYuErfIO1Af44anvpONwWDhQ8RVcmy+WyY5w==}
- dependencies:
- core-js: 3.39.0
- /@farmfe/utils@0.0.1:
+ '@farmfe/utils@0.0.1':
resolution: {integrity: sha512-QLbgNrojcvxfumXA/H329XAXhoCahmeSH3JmaiwwJEGS2QAmWfgAJMegjwlt6OmArGVO4gSbJ7Xbmm1idZZs+g==}
- /@farmfe/utils@0.1.0:
+ '@farmfe/utils@0.1.0':
resolution: {integrity: sha512-neNJQGqV7XL4XifG1uHOBFSFLy2yx1/DVZNRA7nfeEAXEksVZTwWA+fZrYEaI0w7Sw6K/9NYn9Jgpn+NAT0mcg==}
- /@guolao/vue-monaco-editor@1.5.4(monaco-editor@0.52.2)(vue@3.5.13):
+ '@guolao/vue-monaco-editor@1.5.4':
resolution: {integrity: sha512-eyBAqxJeDpV4mZYZSpNvh3xUgKCld5eEe0dBtjJhsy2+L0MB6PYFZ/FbPHNwskgp2RoIpfn1DLrIhXXE3lVbwQ==}
peerDependencies:
'@vue/composition-api': ^1.7.1
@@ -1067,686 +742,489 @@ packages:
peerDependenciesMeta:
'@vue/composition-api':
optional: true
- dependencies:
- '@monaco-editor/loader': 1.4.0(monaco-editor@0.52.2)
- monaco-editor: 0.52.2
- vue: 3.5.13(typescript@5.7.2)
- vue-demi: 0.14.10(vue@3.5.13)
- dev: true
- /@jridgewell/gen-mapping@0.3.8:
+ '@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
- dev: false
- /@jridgewell/resolve-uri@3.1.2:
+ '@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- dev: false
- /@jridgewell/set-array@1.2.1:
+ '@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- dev: false
- /@jridgewell/sourcemap-codec@1.5.0:
+ '@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- /@jridgewell/trace-mapping@0.3.25:
+ '@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- dev: false
- /@koa/cors@5.0.0:
+ '@koa/cors@5.0.0':
resolution: {integrity: sha512-x/iUDjcS90W69PryLDIMgFyV21YLTnG9zOpPXS7Bkt2b8AsY3zZsIpOLBkYr9fBcF3HbkKaER5hOBZLfpLgYNw==}
engines: {node: '>= 14.0.0'}
- dependencies:
- vary: 1.1.2
- /@ljharb/through@2.3.13:
+ '@ljharb/through@2.3.13':
resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.8
- /@manypkg/find-root@1.1.0:
+ '@manypkg/find-root@1.1.0':
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
- dependencies:
- '@babel/runtime': 7.26.0
- '@types/node': 12.20.55
- find-up: 4.1.0
- fs-extra: 8.1.0
- /@manypkg/get-packages@1.1.3:
+ '@manypkg/get-packages@1.1.3':
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
- dependencies:
- '@babel/runtime': 7.26.0
- '@changesets/types': 4.1.0
- '@manypkg/find-root': 1.1.0
- fs-extra: 8.1.0
- globby: 11.1.0
- read-yaml-file: 1.1.0
- /@mdn/browser-compat-data@5.6.26:
+ '@mdn/browser-compat-data@5.6.26':
resolution: {integrity: sha512-7NdgdOR7lkzrN70zGSULmrcvKyi/aJjpTJRCbuy8IZuHiLkPTvsr10jW0MJgWzK2l2wTmhdQvegTw6yNU5AVNQ==}
- /@monaco-editor/loader@1.4.0(monaco-editor@0.52.2):
+ '@monaco-editor/loader@1.4.0':
resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==}
peerDependencies:
monaco-editor: '>= 0.21.0 < 1'
- dependencies:
- monaco-editor: 0.52.2
- state-local: 1.0.7
- dev: true
- /@napi-rs/cli@2.18.4:
+ '@napi-rs/cli@2.18.4':
resolution: {integrity: sha512-SgJeA4df9DE2iAEpr3M2H0OKl/yjtg1BnRI5/JyowS71tUWhrfSu2LT0V3vlHET+g1hBVlrO60PmEXwUEKp8Mg==}
engines: {node: '>= 10'}
hasBin: true
- dev: true
- /@nodelib/fs.scandir@2.1.5:
+ '@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
- /@nodelib/fs.stat@2.0.5:
+ '@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk@1.2.8:
+ '@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.18.0
- /@polka/url@1.0.0-next.28:
+ '@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- dev: true
- /@sindresorhus/merge-streams@2.3.0:
+ '@prefresh/babel-plugin@0.5.1':
+ resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==}
+
+ '@prefresh/core@1.5.3':
+ resolution: {integrity: sha512-nDzxj0tA1/M6APNAWqaxkZ+3sTdPHESa+gol4+Bw7rMc2btWdkLoNH7j9rGhUb8SThC0Vz0VoXtq+U+9azGLHg==}
+ peerDependencies:
+ preact: ^10.0.0
+
+ '@prefresh/utils@1.2.0':
+ resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==}
+
+ '@prefresh/vite@2.4.6':
+ resolution: {integrity: sha512-miYbTl2J1YNaQJWyWHJzyIpNh7vKUuXC1qCDRzPeWjhQ+9bxeXkUBGDGd9I1f37R5GQYi1S65AN5oR0BR2WzvQ==}
+ peerDependencies:
+ preact: ^10.4.0
+ vite: '>=2.0.0'
+
+ '@rollup/pluginutils@4.2.1':
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+
+ '@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- dev: false
- /@swc/helpers@0.5.15:
+ '@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
- dependencies:
- tslib: 2.8.1
- /@ts-morph/common@0.24.0:
+ '@ts-morph/common@0.24.0':
resolution: {integrity: sha512-c1xMmNHWpNselmpIqursHeOHHBTIsJLbB+NuovbTTRCNiTLEr/U9dbJ8qy0jd/O2x5pc3seWuOUN5R2IoOTp8A==}
- dependencies:
- fast-glob: 3.3.2
- minimatch: 9.0.5
- mkdirp: 3.0.1
- path-browserify: 1.0.1
- dev: true
- /@types/babel__core@7.20.5:
+ '@types/babel__code-frame@7.0.6':
+ resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
+
+ '@types/babel__core@7.20.5':
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
- dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- '@types/babel__generator': 7.6.8
- '@types/babel__template': 7.4.4
- '@types/babel__traverse': 7.20.6
- dev: true
- /@types/babel__generator@7.6.8:
+ '@types/babel__generator@7.6.8':
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
- dependencies:
- '@babel/types': 7.26.3
- dev: true
- /@types/babel__template@7.4.4:
+ '@types/babel__template@7.4.4':
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
- dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- dev: true
- /@types/babel__traverse@7.20.6:
+ '@types/babel__traverse@7.20.6':
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
- dependencies:
- '@babel/types': 7.26.3
- dev: true
- /@types/conventional-commits-parser@5.0.1:
+ '@types/conventional-commits-parser@5.0.1':
resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==}
- dependencies:
- '@types/node': 22.10.2
- dev: true
- /@types/fs-extra@11.0.4:
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
+ '@types/estree@0.0.50':
+ resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==}
+
+ '@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
- dependencies:
- '@types/jsonfile': 6.1.4
- '@types/node': 22.10.2
- dev: false
- /@types/http-proxy@1.17.15:
+ '@types/http-proxy@1.17.15':
resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
- dependencies:
- '@types/node': 22.10.2
- /@types/jsonfile@6.1.4:
+ '@types/jsonfile@6.1.4':
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
- dependencies:
- '@types/node': 22.10.2
- dev: false
- /@types/node@12.20.55:
+ '@types/ms@2.1.0':
+ resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
+
+ '@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- /@types/node@22.10.2:
+ '@types/node@14.18.63':
+ resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
+
+ '@types/node@22.10.2':
resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
- dependencies:
- undici-types: 6.20.0
- /@types/object-path@0.11.4:
+ '@types/object-path@0.11.4':
resolution: {integrity: sha512-4tgJ1Z3elF/tOMpA8JLVuR9spt9Ynsf7+JjqsQ2IqtiPJtcLoHoXcT6qU4E10cPFqyXX5HDm9QwIzZhBSkLxsw==}
- /@types/prop-types@15.7.14:
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+ '@types/prop-types@15.7.14':
resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
- dev: true
- /@types/react-dom@18.3.5(@types/react@18.3.18):
+ '@types/react-dom@18.3.5':
resolution: {integrity: sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==}
peerDependencies:
'@types/react': ^18.0.0
- dependencies:
- '@types/react': 18.3.18
- dev: true
- /@types/react-dom@19.0.2(@types/react@19.0.1):
+ '@types/react-dom@19.0.2':
resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==}
peerDependencies:
'@types/react': ^19.0.0
- dependencies:
- '@types/react': 19.0.1
- dev: true
- /@types/react@18.3.18:
+ '@types/react@18.3.18':
resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==}
- dependencies:
- '@types/prop-types': 15.7.14
- csstype: 3.1.3
- dev: true
- /@types/react@19.0.1:
+ '@types/react@19.0.1':
resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
- dependencies:
- csstype: 3.1.3
- dev: true
- /@types/semver@7.5.8:
+ '@types/semver@7.5.8':
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
- /@types/ua-parser-js@0.7.39:
+ '@types/stack-trace@0.0.33':
+ resolution: {integrity: sha512-O7in6531Bbvlb2KEsJ0dq0CHZvc3iWSR5ZYMtvGgnHA56VgriAN/AU2LorfmcvAl2xc9N5fbCTRyMRRl8nd74g==}
+
+ '@types/ua-parser-js@0.7.39':
resolution: {integrity: sha512-P/oDfpofrdtF5xw433SPALpdSchtJmY7nsJItf8h3KXqOslkbySh8zq4dSWXH2oTjRvJ5PczVEoCZPow6GicLg==}
- /@types/ws@8.5.13:
+ '@types/ws@8.5.13':
resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
- dependencies:
- '@types/node': 22.10.2
- dev: true
- /@vue/compiler-core@3.5.13:
+ '@vue/compiler-core@3.5.13':
resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
- dependencies:
- '@babel/parser': 7.26.3
- '@vue/shared': 3.5.13
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.1
- dev: true
- /@vue/compiler-dom@3.5.13:
+ '@vue/compiler-dom@3.5.13':
resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
- dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
- dev: true
- /@vue/compiler-sfc@3.5.13:
+ '@vue/compiler-sfc@3.5.13':
resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
- dependencies:
- '@babel/parser': 7.26.3
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- estree-walker: 2.0.2
- magic-string: 0.30.17
- postcss: 8.4.49
- source-map-js: 1.2.1
- dev: true
- /@vue/compiler-ssr@3.5.13:
+ '@vue/compiler-ssr@3.5.13':
resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
- dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
- dev: true
- /@vue/reactivity@3.5.13:
+ '@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
- dependencies:
- '@vue/shared': 3.5.13
- dev: true
- /@vue/runtime-core@3.5.13:
+ '@vue/runtime-core@3.5.13':
resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/shared': 3.5.13
- dev: true
- /@vue/runtime-dom@3.5.13:
+ '@vue/runtime-dom@3.5.13':
resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
- dependencies:
- '@vue/reactivity': 3.5.13
- '@vue/runtime-core': 3.5.13
- '@vue/shared': 3.5.13
- csstype: 3.1.3
- dev: true
- /@vue/server-renderer@3.5.13(vue@3.5.13):
+ '@vue/server-renderer@3.5.13':
resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
vue: 3.5.13
- dependencies:
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.7.2)
- dev: true
- /@vue/shared@3.5.13:
+ '@vue/shared@3.5.13':
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
- dev: true
- /JSONStream@1.3.5:
+ JSONStream@1.3.5:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
- dependencies:
- jsonparse: 1.3.1
- through: 2.3.8
- dev: true
- /accepts@1.3.8:
+ accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-types: 2.1.35
- negotiator: 0.6.3
- /ajv@8.17.1:
+ aggregate-error@3.1.0:
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
+
+ ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- dependencies:
- fast-deep-equal: 3.1.3
- fast-uri: 3.0.3
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
- dev: true
- /ansi-colors@4.1.3:
+ ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- /ansi-escapes@4.3.2:
+ ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- dependencies:
- type-fest: 0.21.3
- /ansi-regex@5.0.1:
+ ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-styles@4.3.0:
+ ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- dependencies:
- color-convert: 2.0.1
- /anymatch@3.1.3:
+ anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
- /argparse@1.0.10:
+ arg@4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+
+ argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
- dependencies:
- sprintf-js: 1.0.3
- /argparse@2.0.1:
+ argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
- /array-ify@1.0.0:
+ array-ify@1.0.0:
resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
- dev: true
- /array-union@2.1.0:
+ array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- /asynckit@0.4.0:
+ astral-regex@2.0.0:
+ resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
+ engines: {node: '>=8'}
+
+ asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- dev: true
- /axios@1.7.9:
+ axios@1.7.9:
resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==}
- dependencies:
- follow-redirects: 1.15.9(debug@4.4.0)
- form-data: 4.0.1
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: true
- /babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206:
+ babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206:
resolution: {integrity: sha512-nnkrHpeDKM8A5laq9tmFvvGbbDQ7laGfQLp50cvCkCXmWrPcZdCtaQpNh8UJS/yLREJnv2R4JDL5ADfxyAn+yQ==}
- dependencies:
- '@babel/types': 7.26.3
- dev: false
- /balanced-match@1.0.2:
+ babel-plugin-transform-hook-names@1.0.2:
+ resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==}
+ peerDependencies:
+ '@babel/core': ^7.12.10
+
+ balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- dev: true
- /base64-js@1.5.1:
+ base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- /better-path-resolve@1.0.0:
+ better-path-resolve@1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
- dependencies:
- is-windows: 1.0.2
- /big-integer@1.6.52:
+ big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
- /binary-extensions@2.3.0:
+ binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- /bl@4.1.0:
+ bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
- /bplist-parser@0.2.0:
+ boolbase@1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+
+ bplist-parser@0.2.0:
resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
engines: {node: '>= 5.10.0'}
- dependencies:
- big-integer: 1.6.52
- /brace-expansion@2.0.1:
+ brace-expansion@1.1.11:
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+
+ brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- dependencies:
- balanced-match: 1.0.2
- dev: true
- /braces@3.0.3:
+ braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- dependencies:
- fill-range: 7.1.1
- /browserslist@4.24.3:
+ browserslist@4.24.3:
resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001690
- electron-to-chromium: 1.5.76
- node-releases: 2.0.19
- update-browserslist-db: 1.1.1(browserslist@4.24.3)
- /buffer@5.7.1:
+ buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+ buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
- /bufferutil@4.0.8:
+ bufferutil@4.0.8:
resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==}
engines: {node: '>=6.14.2'}
- requiresBuild: true
- dependencies:
- node-gyp-build: 4.8.4
- /bundle-name@3.0.0:
+ bundle-name@3.0.0:
resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==}
engines: {node: '>=12'}
- dependencies:
- run-applescript: 5.0.0
- /bytes@3.1.2:
+ bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- /cac@6.7.14:
+ cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- /cache-content-type@1.0.1:
+ cache-content-type@1.0.1:
resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
engines: {node: '>= 6.0.0'}
- dependencies:
- mime-types: 2.1.35
- ylru: 1.4.0
- /call-bind-apply-helpers@1.0.1:
+ call-bind-apply-helpers@1.0.1:
resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- /call-bind@1.0.8:
+ call-bind@1.0.8:
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
- get-intrinsic: 1.2.6
- set-function-length: 1.2.2
- /callsites@3.1.0:
+ callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /caniuse-lite@1.0.30001690:
+ caniuse-lite@1.0.30001690:
resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
- /chalk@4.1.2:
+ chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
- /chalk@5.4.1:
+ chalk@5.4.1:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- /chardet@0.7.0:
+ chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- /chokidar@3.6.0:
+ chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
- /ci-info@3.9.0:
+ ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- /cli-cursor@3.1.0:
+ clean-stack@2.2.0:
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
+
+ cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
- dependencies:
- restore-cursor: 3.1.0
- /cli-spinners@2.9.2:
+ cli-spinners@2.9.2:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- /cli-width@4.1.0:
+ cli-truncate@2.1.0:
+ resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
+ engines: {node: '>=8'}
+
+ cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
- /cliui@8.0.1:
+ cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- dev: true
- /clone@1.0.4:
+ clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- /co@4.6.0:
+ co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- /code-block-writer@13.0.3:
+ code-block-writer@13.0.3:
resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
- dev: true
- /color-convert@2.0.1:
+ color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- dependencies:
- color-name: 1.1.4
- /color-name@1.1.4:
+ color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /colorette@2.0.20:
+ colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- dev: false
- /combined-stream@1.0.8:
+ combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
- dependencies:
- delayed-stream: 1.0.0
- dev: true
- /commitlint@19.6.1(@types/node@22.10.2)(typescript@5.7.2):
+ commander@6.2.1:
+ resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
+ engines: {node: '>= 6'}
+
+ commitlint@19.6.1:
resolution: {integrity: sha512-tU4or+Y2fDXepCZ44o8guEB9uwrRp4if4VupGH1CR+bsVS2zX6Gia4dndA7UPx8cWWw1tvRRJu5keA7RqfXf3w==}
engines: {node: '>=v18'}
hasBin: true
- dependencies:
- '@commitlint/cli': 19.6.1(@types/node@22.10.2)(typescript@5.7.2)
- '@commitlint/types': 19.5.0
- transitivePeerDependencies:
- - '@types/node'
- - typescript
- dev: true
- /compare-func@2.0.0:
+ compare-func@2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
- dependencies:
- array-ify: 1.0.0
- dot-prop: 5.3.0
- dev: true
- /compressible@2.0.18:
+ compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.53.0
- /content-disposition@0.5.4:
+ concat-map@0.0.1:
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+
+ content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
- dependencies:
- safe-buffer: 5.2.1
- /content-type@1.0.5:
+ content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
- /conventional-changelog-angular@7.0.0:
+ conventional-changelog-angular@7.0.0:
resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
engines: {node: '>=16'}
- dependencies:
- compare-func: 2.0.0
- dev: true
- /conventional-commits-parser@5.0.0:
+ conventional-commits-parser@5.0.0:
resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==}
engines: {node: '>=16'}
hasBin: true
- dependencies:
- JSONStream: 1.3.5
- is-text-path: 2.0.0
- meow: 12.1.1
- split2: 4.2.0
- dev: true
- /convert-source-map@2.0.0:
+ convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- dev: false
- /cookies@0.9.1:
+ cookies@0.9.1:
resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
engines: {node: '>= 0.8'}
- dependencies:
- depd: 2.0.0
- keygrip: 1.1.0
- /core-js@3.39.0:
+ core-js@3.39.0:
resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
- requiresBuild: true
- /cosmiconfig-typescript-loader@6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0)(typescript@5.7.2):
+ cosmiconfig-typescript-loader@6.1.0:
resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==}
engines: {node: '>=v18'}
peerDependencies:
'@types/node': '*'
cosmiconfig: '>=9'
typescript: '>=5'
- dependencies:
- '@types/node': 22.10.2
- cosmiconfig: 9.0.0(typescript@5.7.2)
- jiti: 2.4.2
- typescript: 5.7.2
- dev: true
- /cosmiconfig@9.0.0(typescript@5.7.2):
+ cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
+
+ cosmiconfig@9.0.0:
resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
peerDependencies:
@@ -1754,50 +1232,42 @@ packages:
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- env-paths: 2.2.1
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- typescript: 5.7.2
- dev: true
- /cross-env@7.0.3:
+ create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+
+ cross-env@7.0.3:
resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==}
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
hasBin: true
- dependencies:
- cross-spawn: 7.0.6
- dev: true
- /cross-spawn@7.0.6:
+ cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
- /csstype@3.1.3:
+ css-select@5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+
+ css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+
+ csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- dev: true
- /dargs@8.1.0:
+ dargs@8.1.0:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
- dev: true
- /debug@3.2.7:
+ debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- /debug@4.4.0:
+ debug@4.4.0:
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -1805,382 +1275,404 @@ packages:
peerDependenciesMeta:
supports-color:
optional: true
- dependencies:
- ms: 2.1.3
- /deep-equal@1.0.1:
+ dedent@0.7.0:
+ resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
+
+ deep-equal@1.0.1:
resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==}
- /deepmerge@4.3.1:
+ deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- /default-browser-id@3.0.0:
+ default-browser-id@3.0.0:
resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
engines: {node: '>=12'}
- dependencies:
- bplist-parser: 0.2.0
- untildify: 4.0.0
- /default-browser@4.0.0:
+ default-browser@4.0.0:
resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
engines: {node: '>=14.16'}
- dependencies:
- bundle-name: 3.0.0
- default-browser-id: 3.0.0
- execa: 7.2.0
- titleize: 3.0.0
- /defaults@1.0.4:
+ defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- dependencies:
- clone: 1.0.4
- /define-data-property@1.1.4:
+ define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
- dependencies:
- es-define-property: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
- /define-lazy-prop@3.0.0:
+ define-lazy-prop@3.0.0:
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
engines: {node: '>=12'}
- /delayed-stream@1.0.0:
+ delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- dev: true
- /delegates@1.0.0:
+ delegates@1.0.0:
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
- /depd@1.1.2:
+ depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
- /depd@2.0.0:
+ depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /destroy@1.2.0:
+ destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- /detect-indent@6.1.0:
+ detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
- /dir-glob@3.0.1:
+ diff@4.0.2:
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
+
+ dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
- dependencies:
- path-type: 4.0.0
- /dot-prop@5.3.0:
+ dom-serializer@2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+
+ domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+
+ domhandler@5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+
+ domutils@3.2.2:
+ resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
+
+ dot-prop@5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
- dependencies:
- is-obj: 2.0.0
- dev: true
- /dotenv-expand@11.0.7:
+ dotenv-expand@11.0.7:
resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==}
engines: {node: '>=12'}
- dependencies:
- dotenv: 16.4.7
- /dotenv@16.4.7:
+ dotenv@16.4.7:
resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==}
engines: {node: '>=12'}
- /dunder-proto@1.0.1:
+ dunder-proto@1.0.1:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
- /ee-first@1.1.1:
+ ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- /electron-to-chromium@1.5.76:
+ electron-to-chromium@1.5.76:
resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==}
- /emoji-regex@8.0.0:
+ emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /encodeurl@1.0.2:
+ encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- /enquirer@2.4.1:
+ end-of-stream@1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+
+ enquirer@2.4.1:
resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
engines: {node: '>=8.6'}
- dependencies:
- ansi-colors: 4.1.3
- strip-ansi: 6.0.1
- /entities@4.5.0:
+ entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- dev: true
- /env-paths@2.2.1:
+ env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
- dev: true
- /envinfo@7.14.0:
+ envinfo@7.14.0:
resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==}
engines: {node: '>=4'}
hasBin: true
- dev: true
- /error-ex@1.3.2:
+ error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- dependencies:
- is-arrayish: 0.2.1
- dev: true
- /es-define-property@1.0.1:
+ es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
- /es-errors@1.3.0:
+ es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- /es-object-atoms@1.0.0:
+ es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
-
- /escalade@3.2.0:
- resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
- engines: {node: '>=6'}
- /escape-html@1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+ esbuild-android-64@0.14.54:
+ resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
- /escape-string-regexp@5.0.0:
- resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
+ esbuild-android-arm64@0.14.54:
+ resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
- /esprima@4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
+ esbuild-darwin-64@0.14.54:
+ resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
- /estree-walker@2.0.2:
- resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
- dev: true
+ esbuild-darwin-arm64@0.14.54:
+ resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
- /eventemitter3@4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ esbuild-freebsd-64@0.14.54:
+ resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
- /execa@5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
+ esbuild-freebsd-arm64@0.14.54:
+ resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
- /execa@7.2.0:
- resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
- engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 3.0.7
- strip-final-newline: 3.0.0
+ esbuild-linux-32@0.14.54:
+ resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
- /extendable-error@0.1.7:
- resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
+ esbuild-linux-64@0.14.54:
+ resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
- /external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ esbuild-linux-arm64@0.14.54:
+ resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ esbuild-linux-arm@0.14.54:
+ resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ esbuild-linux-mips64le@0.14.54:
+ resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
+ esbuild-linux-ppc64le@0.14.54:
+ resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ esbuild-linux-riscv64@0.14.54:
+ resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ esbuild-linux-s390x@0.14.54:
+ resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ esbuild-netbsd-64@0.14.54:
+ resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ esbuild-openbsd-64@0.14.54:
+ resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ esbuild-sunos-64@0.14.54:
+ resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ esbuild-windows-32@0.14.54:
+ resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ esbuild-windows-64@0.14.54:
+ resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ esbuild-windows-arm64@0.14.54:
+ resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ esbuild@0.14.54:
+ resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
+ escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
+ escape-string-regexp@5.0.0:
+ resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
+ engines: {node: '>=12'}
+
+ esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
+ eventemitter3@4.0.7:
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+
+ execa@4.1.0:
+ resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
+ engines: {node: '>=10'}
+
+ execa@5.1.1:
+ resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+ engines: {node: '>=10'}
+
+ execa@7.2.0:
+ resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
+ engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
+
+ extendable-error@0.1.7:
+ resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
+
+ external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
- /farm-browserslist-generator@1.0.5:
+ farm-browserslist-generator@1.0.5:
resolution: {integrity: sha512-igffWSQATGV2ZJEvDBIB9Q2QfVOr+vv/JTZaaNoYfW/nrCGZ58zyJ0kSkFQEvptGUWf6idECqj82ykli4Ueplw==}
engines: {node: '>=16.15.1', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'}
- dependencies:
- '@mdn/browser-compat-data': 5.6.26
- '@types/object-path': 0.11.4
- '@types/semver': 7.5.8
- '@types/ua-parser-js': 0.7.39
- browserslist: 4.24.3
- caniuse-lite: 1.0.30001690
- isbot: 3.8.0
- object-path: 0.11.8
- semver: 7.6.3
- ua-parser-js: 1.0.40
- /farm-plugin-replace-dirname-darwin-arm64@0.2.1:
+ farm-plugin-replace-dirname-darwin-arm64@0.2.1:
resolution: {integrity: sha512-9FThv/qoFuj3cJjv9P6YnXbBwPQ5TwGjnr50ejXdZn13Ehz0+7w7EscbRsZHNvT7p24p6i0Y9NUSallcWc2syw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-darwin-x64@0.2.1:
+ farm-plugin-replace-dirname-darwin-x64@0.2.1:
resolution: {integrity: sha512-Msqrh8mAPBbEpANpa0z9uQBr1/MO+PaHgBxym/aNs1vpxB4KAs6JQWYKtO+Ob7JzFyV6d9lIRhpnpxzxTqSIfA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-linux-arm64-gnu@0.2.1:
+ farm-plugin-replace-dirname-linux-arm64-gnu@0.2.1:
resolution: {integrity: sha512-ZKuxGu9G01CW521uTQHh+IP8pcT/NolGQfcQuEmBpD8epJ8per8Ps52fS05u5TGniaOg+ySZpt7HxbX+++k1YQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-linux-arm64-musl@0.2.1:
+ farm-plugin-replace-dirname-linux-arm64-musl@0.2.1:
resolution: {integrity: sha512-m3gH8ggczbRYTHZSNp3LjIQIcqhvDO4O78bxXc8O1ozKD8M47/YfQLyQV06M7H4rZ8s6XV3Bb1kAcRAASp3M5A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-linux-x64-gnu@0.2.1:
+ farm-plugin-replace-dirname-linux-x64-gnu@0.2.1:
resolution: {integrity: sha512-MehKkoM2RFw3sCnEu9nCbXKjxtC3hfTad0h/dC+Z8iEBcLEReVLoNzHWWUa6BxkxqDtB82/BWO/ObSUj/VUnwQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-linux-x64-musl@0.2.1:
+ farm-plugin-replace-dirname-linux-x64-musl@0.2.1:
resolution: {integrity: sha512-o1qPZi16N/sHOteZYJVv6UmZFK3QKpVQrywk/4spJI0mPH9A9Y+G6iBE2Tqjb3d+1Hb6phr++EBJHZ2x1ajtGQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-win32-arm64-msvc@0.2.1:
+ farm-plugin-replace-dirname-win32-arm64-msvc@0.2.1:
resolution: {integrity: sha512-Xn/wYFkgb7SsTlSaefFtvxNbXEVdvZB854b/rBZu47+MRQpSnBIPwnTGcqo8eNTMjtnY4beGGtcd78iqMVAHFQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-win32-ia32-msvc@0.2.1:
+ farm-plugin-replace-dirname-win32-ia32-msvc@0.2.1:
resolution: {integrity: sha512-YtIu5CS/BSgbQZb1qjaBg0cEKvB4vCIbBxNn64H468zwliPbE93SAIyiwu6cL3la59cjBP4sEbz4ZAWyY9GoMQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname-win32-x64-msvc@0.2.1:
+ farm-plugin-replace-dirname-win32-x64-msvc@0.2.1:
resolution: {integrity: sha512-KUAf4rcv3Nz+CpGs4zr+ZRu4hWRp7SHQBgpX+mb0hhMjRvn+LoWm2qCL2q9Gp3jsTDVmzjPbyZxp/9UJKx13lQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- requiresBuild: true
- optional: true
- /farm-plugin-replace-dirname@0.2.1:
+ farm-plugin-replace-dirname@0.2.1:
resolution: {integrity: sha512-aJ4euQzxoq0sVu4AwXrNQflHJrSZdrdApGEyVRtN6KiCop3CHXnTg9ydlyCNXN2unQB283aNjojvCd5E/32KgA==}
- dependencies:
- '@changesets/cli': 2.27.11
- '@farmfe/utils': 0.0.1
- cac: 6.7.14
- optionalDependencies:
- farm-plugin-replace-dirname-darwin-arm64: 0.2.1
- farm-plugin-replace-dirname-darwin-x64: 0.2.1
- farm-plugin-replace-dirname-linux-arm64-gnu: 0.2.1
- farm-plugin-replace-dirname-linux-arm64-musl: 0.2.1
- farm-plugin-replace-dirname-linux-x64-gnu: 0.2.1
- farm-plugin-replace-dirname-linux-x64-musl: 0.2.1
- farm-plugin-replace-dirname-win32-arm64-msvc: 0.2.1
- farm-plugin-replace-dirname-win32-ia32-msvc: 0.2.1
- farm-plugin-replace-dirname-win32-x64-msvc: 0.2.1
- /fast-deep-equal@3.1.3:
+ fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: true
- /fast-glob@3.3.2:
+ fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
- /fast-uri@3.0.3:
+ fast-uri@3.0.3:
resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
- dev: true
- /fastq@1.18.0:
+ fastq@1.18.0:
resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
- dependencies:
- reusify: 1.0.4
- /figures@5.0.0:
+ figures@5.0.0:
resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==}
engines: {node: '>=14'}
- dependencies:
- escape-string-regexp: 5.0.0
- is-unicode-supported: 1.3.0
- /fill-range@7.1.1:
+ fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- dependencies:
- to-regex-range: 5.0.1
- /find-up@4.1.0:
+ find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
- /find-up@7.0.0:
+ find-up@7.0.0:
resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
engines: {node: '>=18'}
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
- unicorn-magic: 0.1.0
- dev: true
- /follow-redirects@1.15.9(debug@4.4.0):
+ follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -2188,1385 +1680,1165 @@ packages:
peerDependenciesMeta:
debug:
optional: true
- dependencies:
- debug: 4.4.0
- /form-data@4.0.1:
+ form-data@4.0.1:
resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
- dev: true
- /fresh@0.5.2:
+ fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /fs-extra@11.2.0:
+ fs-extra@11.2.0:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
- /fs-extra@7.0.1:
+ fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
- /fs-extra@8.1.0:
+ fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
- /fsevents@2.3.3:
+ fs.realpath@1.0.0:
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+
+ fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- requiresBuild: true
- optional: true
- /function-bind@1.1.2:
+ function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- /gensync@1.0.0-beta.2:
+ gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- dev: false
- /get-caller-file@2.0.5:
+ get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- dev: true
- /get-intrinsic@1.2.6:
+ get-intrinsic@1.2.6:
resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
engines: {node: '>= 0.4'}
- dependencies:
- call-bind-apply-helpers: 1.0.1
- dunder-proto: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- function-bind: 1.1.2
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- math-intrinsics: 1.1.0
- /get-stream@6.0.1:
+ get-own-enumerable-property-symbols@3.0.2:
+ resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
+
+ get-stream@5.2.0:
+ resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
+ engines: {node: '>=8'}
+
+ get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /git-cz@4.9.0:
+ git-cz@4.9.0:
resolution: {integrity: sha512-cSRL8IIOXU7UFLdbziCYqg8f8InwLwqHezkiRHNSph7oZqGv0togId1kMTfKil6gzK0VaSXeVBb4oDl0fQCHiw==}
hasBin: true
- dev: true
- /git-raw-commits@4.0.0:
+ git-raw-commits@4.0.0:
resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==}
engines: {node: '>=16'}
hasBin: true
- dependencies:
- dargs: 8.1.0
- meow: 12.1.1
- split2: 4.2.0
- dev: true
- /glob-parent@5.1.2:
+ glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
- dependencies:
- is-glob: 4.0.3
- /global-directory@4.0.1:
+ glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
+
+ global-directory@4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
- dependencies:
- ini: 4.1.1
- dev: true
- /globals@11.12.0:
+ globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- dev: false
- /globby@11.1.0:
+ globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
- /globby@14.0.2:
+ globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.2
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
- dev: false
- /gopd@1.2.0:
+ gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
- /graceful-fs@4.2.11:
+ graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /has-flag@4.0.0:
+ has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors@1.0.2:
+ has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- dependencies:
- es-define-property: 1.0.1
- /has-symbols@1.1.0:
+ has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
- /has-tostringtag@1.0.2:
+ has-tostringtag@1.0.2:
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.1.0
- /hasown@2.0.2:
+ hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- dependencies:
- function-bind: 1.1.2
- /http-assert@1.5.0:
+ he@1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+
+ http-assert@1.5.0:
resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
engines: {node: '>= 0.8'}
- dependencies:
- deep-equal: 1.0.1
- http-errors: 1.8.1
- /http-errors@1.6.3:
+ http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
- /http-errors@1.8.1:
+ http-errors@1.8.1:
resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
engines: {node: '>= 0.6'}
- dependencies:
- depd: 1.1.2
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 1.5.0
- toidentifier: 1.0.1
- /http-proxy-middleware@3.0.3:
+ http-proxy-middleware@3.0.3:
resolution: {integrity: sha512-usY0HG5nyDUwtqpiZdETNbmKtw3QQ1jwYFZ9wi5iHzX2BcILwQKtYDJPo7XHTsu5Z0B2Hj3W9NNnbd+AjFWjqg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@types/http-proxy': 1.17.15
- debug: 4.4.0
- http-proxy: 1.18.1(debug@4.4.0)
- is-glob: 4.0.3
- is-plain-object: 5.0.0
- micromatch: 4.0.8
- transitivePeerDependencies:
- - supports-color
- /http-proxy@1.18.1(debug@4.4.0):
+ http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.9(debug@4.4.0)
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
- /human-id@1.0.2:
+ human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
- /human-signals@2.1.0:
+ human-signals@1.1.1:
+ resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
+ engines: {node: '>=8.12.0'}
+
+ human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /human-signals@4.3.1:
+ human-signals@4.3.1:
resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==}
engines: {node: '>=14.18.0'}
- /husky@9.1.7:
+ husky@9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
engines: {node: '>=18'}
hasBin: true
- dev: true
- /iconv-lite@0.4.24:
+ iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
- dependencies:
- safer-buffer: 2.1.2
- /ieee754@1.2.1:
+ ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- /ignore@5.3.2:
+ ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- /import-fresh@3.3.0:
+ import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- dependencies:
- parent-module: 1.0.1
- resolve-from: 4.0.0
- dev: true
- /import-meta-resolve@4.1.0:
+ import-meta-resolve@4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
- dev: true
- /inherits@2.0.3:
+ indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ inflight@1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+
+ inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- /inherits@2.0.4:
+ inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini@4.1.1:
+ ini@4.1.1:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- dev: true
- /inquirer@9.2.12:
+ inquirer@9.2.12:
resolution: {integrity: sha512-mg3Fh9g2zfuVWJn6lhST0O7x4n03k7G8Tx5nvikJkbq8/CK47WDVm+UznF0G6s5Zi0KcyUisr6DU8T67N5U+1Q==}
engines: {node: '>=14.18.0'}
- dependencies:
- '@ljharb/through': 2.3.13
- ansi-escapes: 4.3.2
- chalk: 5.4.1
- cli-cursor: 3.1.0
- cli-width: 4.1.0
- external-editor: 3.1.0
- figures: 5.0.0
- lodash: 4.17.21
- mute-stream: 1.0.0
- ora: 5.4.1
- run-async: 3.0.0
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
- /is-arrayish@0.2.1:
+ is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- dev: true
- /is-binary-path@2.1.0:
+ is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- dependencies:
- binary-extensions: 2.3.0
- /is-docker@2.2.1:
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
+
+ is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- /is-docker@3.0.0:
+ is-docker@3.0.0:
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
- /is-extglob@2.1.1:
+ is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point@3.0.0:
+ is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-generator-function@1.0.10:
+ is-generator-function@1.0.10:
resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.2
- /is-glob@4.0.3:
+ is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 2.1.1
- /is-inside-container@1.0.0:
+ is-inside-container@1.0.0:
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
engines: {node: '>=14.16'}
hasBin: true
- dependencies:
- is-docker: 3.0.0
- /is-interactive@1.0.0:
+ is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- /is-number@7.0.0:
+ is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj@2.0.0:
+ is-obj@1.0.1:
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ engines: {node: '>=0.10.0'}
+
+ is-obj@2.0.0:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- dev: true
- /is-plain-object@5.0.0:
+ is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
- /is-stream@2.0.1:
+ is-regexp@1.0.0:
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
+ engines: {node: '>=0.10.0'}
+
+ is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-stream@3.0.0:
+ is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- /is-subdir@1.2.0:
+ is-subdir@1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
- dependencies:
- better-path-resolve: 1.0.0
- /is-text-path@2.0.0:
+ is-text-path@2.0.0:
resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==}
engines: {node: '>=8'}
- dependencies:
- text-extensions: 2.4.0
- dev: true
- /is-unicode-supported@0.1.0:
+ is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- /is-unicode-supported@1.3.0:
+ is-unicode-supported@1.3.0:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
- /is-windows@1.0.2:
+ is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- /is-wsl@2.2.0:
+ is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- dependencies:
- is-docker: 2.2.1
- /isbot@3.8.0:
+ isbot@3.8.0:
resolution: {integrity: sha512-vne1mzQUTR+qsMLeCBL9+/tgnDXRyc2pygLGl/WsgA+EZKIiB5Ehu0CiVTHIIk30zhJ24uGz4M5Ppse37aR0Hg==}
engines: {node: '>=12'}
- /isexe@2.0.0:
+ isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /jiti@2.4.2:
+ jiti@2.4.2:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
- dev: true
- /js-tokens@4.0.0:
+ js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml@3.14.1:
+ js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
- dependencies:
- argparse: 1.0.10
- esprima: 4.0.1
- /js-yaml@4.1.0:
+ js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- dependencies:
- argparse: 2.0.1
- dev: true
- /jsesc@3.1.0:
+ jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
hasBin: true
- dev: false
- /json-parse-even-better-errors@2.3.1:
+ json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- dev: true
- /json-schema-traverse@1.0.0:
+ json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- dev: true
- /json5@2.2.3:
+ json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
hasBin: true
- dev: false
- /jsonfile@4.0.0:
+ jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
- optionalDependencies:
- graceful-fs: 4.2.11
- /jsonfile@6.1.0:
+ jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
- /jsonparse@1.3.1:
+ jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
- dev: true
- /keygrip@1.1.0:
+ keygrip@1.1.0:
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
engines: {node: '>= 0.6'}
- dependencies:
- tsscmp: 1.0.6
- /koa-compose@4.1.0:
+ koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
- /koa-compress@5.1.1:
+ koa-compress@5.1.1:
resolution: {integrity: sha512-UgMIN7ZoEP2DuoSQmD6CYvFSLt0NReGlc2qSY4bO4Oq0L56OiD9pDG41Kj/zFmVY/A3Wvmn4BqKcfq5H30LGIg==}
engines: {node: '>= 12'}
- dependencies:
- bytes: 3.1.2
- compressible: 2.0.18
- http-errors: 1.8.1
- koa-is-json: 1.0.0
- /koa-connect@2.1.0:
+ koa-connect@2.1.0:
resolution: {integrity: sha512-O9pcFafHk0oQsBevlbTBlB9co+2RUQJ4zCzu3qJPmGlGoeEZkne+7gWDkecqDPSbCtED6LmhlQladxs6NjOnMQ==}
- /koa-convert@2.0.0:
+ koa-convert@2.0.0:
resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==}
engines: {node: '>= 10'}
- dependencies:
- co: 4.6.0
- koa-compose: 4.1.0
- /koa-is-json@1.0.0:
+ koa-is-json@1.0.0:
resolution: {integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==}
- /koa-send@5.0.1:
+ koa-send@5.0.1:
resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==}
engines: {node: '>= 8'}
- dependencies:
- debug: 4.4.0
- http-errors: 1.8.1
- resolve-path: 1.4.0
- transitivePeerDependencies:
- - supports-color
- /koa-static@5.0.0:
+ koa-static@5.0.0:
resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==}
engines: {node: '>= 7.6.0'}
- dependencies:
- debug: 3.2.7
- koa-send: 5.0.1
- transitivePeerDependencies:
- - supports-color
- /koa@2.15.3:
+ koa@2.15.3:
resolution: {integrity: sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==}
engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
- dependencies:
- accepts: 1.3.8
- cache-content-type: 1.0.1
- content-disposition: 0.5.4
- content-type: 1.0.5
- cookies: 0.9.1
- debug: 4.4.0
- delegates: 1.0.0
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- fresh: 0.5.2
- http-assert: 1.5.0
- http-errors: 1.8.1
- is-generator-function: 1.0.10
- koa-compose: 4.1.0
- koa-convert: 2.0.0
- on-finished: 2.4.1
- only: 0.0.2
- parseurl: 1.3.3
- statuses: 1.5.0
- type-is: 1.6.18
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
- /lines-and-columns@1.2.4:
+ kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+
+ lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
- /locate-path@5.0.0:
+ lint-staged@10.5.4:
+ resolution: {integrity: sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==}
+ hasBin: true
+
+ listr2@3.14.0:
+ resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+
+ locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
- dependencies:
- p-locate: 4.1.0
- /locate-path@7.2.0:
+ locate-path@7.2.0:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-locate: 6.0.0
- dev: true
- /lodash.camelcase@4.3.0:
+ lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
- dev: true
- /lodash.debounce@4.0.8:
+ lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.isplainobject@4.0.6:
+ lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
- dev: true
- /lodash.kebabcase@4.1.1:
+ lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
- dev: true
- /lodash.merge@4.6.2:
+ lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
- /lodash.mergewith@4.6.2:
+ lodash.mergewith@4.6.2:
resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
- dev: true
- /lodash.snakecase@4.1.1:
+ lodash.snakecase@4.1.1:
resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
- dev: true
- /lodash.startcase@4.4.0:
+ lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
- /lodash.uniq@4.5.0:
+ lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- dev: true
- /lodash.upperfirst@4.3.1:
+ lodash.upperfirst@4.3.1:
resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==}
- dev: true
- /lodash@4.17.21:
+ lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-symbols@4.1.0:
+ log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
- /loglevel@1.9.2:
+ log-update@4.0.0:
+ resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
+ engines: {node: '>=10'}
+
+ loglevel@1.9.2:
resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
engines: {node: '>= 0.6.0'}
- /loose-envify@1.4.0:
+ loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- dependencies:
- js-tokens: 4.0.0
- dev: false
- /lru-cache@5.1.1:
+ lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- dependencies:
- yallist: 3.1.1
- dev: false
- /magic-string@0.30.17:
+ magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- dev: true
- /math-intrinsics@1.1.0:
+ make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+
+ math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
- /media-typer@0.3.0:
+ media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- /meow@12.1.1:
+ meow@12.1.1:
resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
engines: {node: '>=16.10'}
- dev: true
- /merge-stream@2.0.0:
+ merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- /merge2@1.4.1:
+ merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /micromatch@4.0.8:
+ micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
- /mime-db@1.52.0:
+ mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- /mime-db@1.53.0:
+ mime-db@1.53.0:
resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
engines: {node: '>= 0.6'}
- /mime-types@2.1.35:
+ mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- dependencies:
- mime-db: 1.52.0
- /mimic-fn@2.1.0:
+ mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /mimic-fn@4.0.0:
+ mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- /minimatch@9.0.5:
+ minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+
+ minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
- dev: true
- /minimist@1.2.8:
+ minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: true
- /mkdirp@3.0.1:
+ mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
hasBin: true
- dev: true
- /monaco-editor@0.52.2:
+ monaco-editor@0.52.2:
resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==}
- dev: true
- /mri@1.2.0:
+ mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- /mrmime@2.0.0:
+ mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
- dev: true
- /ms@2.1.3:
+ ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /mute-stream@1.0.0:
+ mute-stream@1.0.0:
resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- /nanoid@3.3.8:
+ nanoid@3.3.8:
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- dev: true
- /negotiator@0.6.3:
+ negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- /node-gyp-build@4.8.4:
+ node-gyp-build@4.8.4:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
- /node-releases@2.0.19:
+ node-html-parser@6.1.13:
+ resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==}
+
+ node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- /normalize-path@3.0.0:
+ normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /npm-run-path@4.0.1:
+ npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- dependencies:
- path-key: 3.1.1
- /npm-run-path@5.3.0:
+ npm-run-path@5.3.0:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- path-key: 4.0.0
- /object-path@0.11.8:
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
+ object-path@0.11.8:
resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==}
engines: {node: '>= 10.12.0'}
- /on-finished@2.4.1:
+ on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- dependencies:
- ee-first: 1.1.1
- /onetime@5.1.2:
+ once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+ onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- dependencies:
- mimic-fn: 2.1.0
- /onetime@6.0.0:
+ onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- dependencies:
- mimic-fn: 4.0.0
- /only@0.0.2:
+ only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
- /open@9.1.0:
+ open@9.1.0:
resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
engines: {node: '>=14.16'}
- dependencies:
- default-browser: 4.0.0
- define-lazy-prop: 3.0.0
- is-inside-container: 1.0.0
- is-wsl: 2.2.0
- /ora@5.4.1:
+ ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-spinners: 2.9.2
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
- /os-tmpdir@1.0.2:
+ os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- /outdent@0.5.0:
+ outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
- /p-filter@2.1.0:
+ p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
- dependencies:
- p-map: 2.1.0
- /p-limit@2.3.0:
+ p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
- dependencies:
- p-try: 2.2.0
- /p-limit@4.0.0:
+ p-limit@4.0.0:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- yocto-queue: 1.1.1
- dev: true
- /p-locate@4.1.0:
+ p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
- dependencies:
- p-limit: 2.3.0
- /p-locate@6.0.0:
+ p-locate@6.0.0:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- p-limit: 4.0.0
- dev: true
- /p-map@2.1.0:
+ p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
- /p-try@2.2.0:
+ p-map@4.0.0:
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+
+ p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /package-manager-detector@0.2.8:
+ package-manager-detector@0.2.8:
resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
- /parent-module@1.0.1:
+ parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- dependencies:
- callsites: 3.1.0
- dev: true
- /parse-json@5.2.0:
+ parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- dependencies:
- '@babel/code-frame': 7.26.2
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
- dev: true
- /parseurl@1.3.3:
+ parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- /path-browserify@1.0.1:
+ path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
- dev: true
- /path-exists@4.0.0:
+ path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- /path-exists@5.0.0:
+ path-exists@5.0.0:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
- /path-is-absolute@1.0.1:
+ path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key@3.1.1:
+ path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-key@4.0.0:
+ path-key@4.0.0:
resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
engines: {node: '>=12'}
- /path-type@4.0.0:
+ path-parse@1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+ path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- /path-type@5.0.0:
+ path-type@5.0.0:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
- dev: false
- /picocolors@1.1.1:
+ picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- /picomatch@2.3.1:
+ picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify@4.0.1:
+ pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- /postcss@8.4.49:
+ please-upgrade-node@3.2.0:
+ resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
+
+ postcss@8.4.49:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.8
- picocolors: 1.1.1
- source-map-js: 1.2.1
- dev: true
- /prettier@2.8.8:
+ preact-iso@2.8.1:
+ resolution: {integrity: sha512-RL0yDdJcSiB4Wnk4fBqq0OE9QCfTEW7B2ULf8GHPx72AtFE+j1NvabjBF6y3rBgrNWSuuPuuiN4L4KxYteQD2Q==}
+ peerDependencies:
+ preact: '>=10'
+ preact-render-to-string: '>=6.4.0'
+
+ preact-render-to-string@6.5.13:
+ resolution: {integrity: sha512-iGPd+hKPMFKsfpR2vL4kJ6ZPcFIoWZEcBf0Dpm3zOpdVvj77aY8RlLiQji5OMrngEyaxGogeakTb54uS2FvA6w==}
+ peerDependencies:
+ preact: '>=10'
+
+ preact@10.25.4:
+ resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==}
+
+ prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
- /proxy-from-env@1.1.0:
+ proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- dev: true
- /queue-microtask@1.2.3:
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+
+ queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /react-dom@18.3.1(react@18.3.1):
+ react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
react: ^18.3.1
- dependencies:
- loose-envify: 1.4.0
- react: 18.3.1
- scheduler: 0.23.2
- dev: false
- /react-dom@19.0.0(react@19.0.0):
+ react-dom@19.0.0:
resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
peerDependencies:
react: ^19.0.0
- dependencies:
- react: 19.0.0
- scheduler: 0.25.0
- dev: false
- /react-refresh@0.14.2:
+ react-refresh@0.14.2:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- dev: true
- /react@18.3.1:
+ react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- dependencies:
- loose-envify: 1.4.0
- dev: false
- /react@19.0.0:
+ react@19.0.0:
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
- dev: false
- /read-yaml-file@1.1.0:
+ read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
- dependencies:
- graceful-fs: 4.2.11
- js-yaml: 3.14.1
- pify: 4.0.1
- strip-bom: 3.0.0
- /readable-stream@3.6.2:
+ readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
- /readdirp@3.6.0:
+ readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- dependencies:
- picomatch: 2.3.1
- /regenerator-runtime@0.14.1:
+ regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- /require-directory@2.1.1:
+ require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- dev: true
- /require-from-string@2.0.2:
+ require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- dev: true
- /requires-port@1.0.0:
+ requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- /resolve-from@4.0.0:
+ resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- dev: true
- /resolve-from@5.0.0:
+ resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
- /resolve-path@1.4.0:
+ resolve-path@1.4.0:
resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==}
engines: {node: '>= 0.8'}
- dependencies:
- http-errors: 1.6.3
- path-is-absolute: 1.0.1
- /restore-cursor@3.1.0:
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
+ restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
- /reusify@1.0.4:
+ reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /run-applescript@5.0.0:
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
+ rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
+ rollup@2.77.3:
+ resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+
+ rollup@2.79.2:
+ resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+
+ run-applescript@5.0.0:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
- dependencies:
- execa: 5.1.1
- /run-async@3.0.0:
+ run-async@3.0.0:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
- /run-parallel@1.2.0:
+ run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- dependencies:
- queue-microtask: 1.2.3
- /rxjs@7.8.1:
+ rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- dependencies:
- tslib: 2.8.1
- /safe-buffer@5.2.1:
+ safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safer-buffer@2.1.2:
+ safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /scheduler@0.23.2:
+ scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- dependencies:
- loose-envify: 1.4.0
- dev: false
- /scheduler@0.25.0:
+ scheduler@0.25.0:
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
- dev: false
- /semver@6.3.1:
+ semver-compare@1.0.0:
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
+
+ semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- dev: false
- /semver@7.6.3:
+ semver@7.6.3:
resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- /set-function-length@1.2.2:
+ set-function-length@1.2.2:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
- function-bind: 1.1.2
- get-intrinsic: 1.2.6
- gopd: 1.2.0
- has-property-descriptors: 1.0.2
- /setprototypeof@1.1.0:
+ setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
- /setprototypeof@1.2.0:
+ setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- /shebang-command@2.0.0:
+ shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
- dependencies:
- shebang-regex: 3.0.0
- /shebang-regex@3.0.0:
+ shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /signal-exit@3.0.7:
+ signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /signal-exit@4.1.0:
+ signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /sirv@2.0.4:
+ simple-code-frame@1.3.0:
+ resolution: {integrity: sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==}
+
+ sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
- dependencies:
- '@polka/url': 1.0.0-next.28
- mrmime: 2.0.0
- totalist: 3.0.1
- dev: true
- /slash@3.0.0:
+ slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- /slash@5.1.0:
+ slash@5.1.0:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
- dev: false
- /source-map-js@1.2.1:
+ slice-ansi@3.0.0:
+ resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
+ engines: {node: '>=8'}
+
+ slice-ansi@4.0.0:
+ resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
+ engines: {node: '>=10'}
+
+ source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
- dev: true
- /spawndamnit@3.0.1:
+ source-map-support@0.5.21:
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+
+ source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+
+ source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+
+ spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- dependencies:
- cross-spawn: 7.0.6
- signal-exit: 4.1.0
- /split2@4.2.0:
+ split2@4.2.0:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
- dev: true
- /sprintf-js@1.0.3:
+ sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /state-local@1.0.7:
+ stack-trace@1.0.0-pre2:
+ resolution: {integrity: sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==}
+ engines: {node: '>=16'}
+
+ state-local@1.0.7:
resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==}
- dev: true
- /statuses@1.5.0:
+ statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- /string-width@4.2.3:
+ string-argv@0.3.1:
+ resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
+ engines: {node: '>=0.6.19'}
+
+ string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- dependencies:
- emoji-regex: 8.0.0
- is-fullwidth-code-point: 3.0.0
- strip-ansi: 6.0.1
- /string_decoder@1.3.0:
+ string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- dependencies:
- safe-buffer: 5.2.1
- /strip-ansi@6.0.1:
+ stringify-object@3.3.0:
+ resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
+ engines: {node: '>=4'}
+
+ strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- dependencies:
- ansi-regex: 5.0.1
- /strip-bom@3.0.0:
+ strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- /strip-final-newline@2.0.0:
+ strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- /strip-final-newline@3.0.0:
+ strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
- /supports-color@7.2.0:
+ supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
- dependencies:
- has-flag: 4.0.0
- /term-size@2.2.1:
+ supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
+ term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
- /text-extensions@2.4.0:
+ text-extensions@2.4.0:
resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
engines: {node: '>=8'}
- dev: true
- /through@2.3.8:
+ through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- dev: true
- /tinyexec@0.3.1:
+ tinyexec@0.3.1:
resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- dev: true
- /titleize@3.0.0:
+ titleize@3.0.0:
resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==}
engines: {node: '>=12'}
- /tmp@0.0.33:
+ tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
- dependencies:
- os-tmpdir: 1.0.2
- /to-regex-range@5.0.1:
+ to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
- dependencies:
- is-number: 7.0.0
- /toidentifier@1.0.1:
+ toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- /totalist@3.0.1:
+ totalist@3.0.1:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
- dev: true
- /ts-morph@23.0.0:
+ ts-morph@23.0.0:
resolution: {integrity: sha512-FcvFx7a9E8TUe6T3ShihXJLiJOiqyafzFKUO4aqIHDUCIvADdGNShcbc2W5PMr3LerXRv7mafvFZ9lRENxJmug==}
- dependencies:
- '@ts-morph/common': 0.24.0
- code-block-writer: 13.0.3
- dev: true
- /tslib@2.8.1:
+ ts-node@9.1.1:
+ resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=2.7'
+
+ tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- /tsscmp@1.0.6:
+ tsscmp@1.0.6:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
engines: {node: '>=0.6.x'}
- /type-fest@0.21.3:
+ type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- /type-is@1.6.18:
+ type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
- /typescript@5.7.2:
+ typescript@4.9.5:
+ resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+
+ typescript@5.7.2:
resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
hasBin: true
- dev: true
- /ua-parser-js@1.0.40:
+ ua-parser-js@1.0.40:
resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==}
hasBin: true
- /undici-types@6.20.0:
+ undici-types@6.20.0:
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
- /unicorn-magic@0.1.0:
+ unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- /universalify@0.1.2:
+ universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- /universalify@2.0.1:
+ universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- /untildify@4.0.0:
+ untildify@4.0.0:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- /update-browserslist-db@1.1.1(browserslist@4.24.3):
+ update-browserslist-db@1.1.1:
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.24.3
- escalade: 3.2.0
- picocolors: 1.1.1
- /utf-8-validate@6.0.5:
+ utf-8-validate@6.0.5:
resolution: {integrity: sha512-EYZR+OpIXp9Y1eG1iueg8KRsY8TuT8VNgnanZ0uA3STqhHQTLwbl+WX76/9X5OY12yQubymBpaBSmMPkSTQcKA==}
engines: {node: '>=6.14.2'}
- requiresBuild: true
- dependencies:
- node-gyp-build: 4.8.4
- /util-deprecate@1.0.2:
+ util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /vary@1.1.2:
+ vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- /vue-demi@0.14.10(vue@3.5.13):
+ vite-prerender-plugin@0.5.5:
+ resolution: {integrity: sha512-WUXn08rPL8CkbEeLYQI/O/IAD2ggsy5Fp5tA5QMDOpiGi7J4vNBZW/gqYRmCd1ap3XdeobFCFBYEA5mqv39lAQ==}
+
+ vite@2.9.18:
+ resolution: {integrity: sha512-sAOqI5wNM9QvSEE70W3UGMdT8cyEn0+PmJMTFvTB8wB0YbYUWw3gUbY62AOyrXosGieF2htmeLATvNxpv/zNyQ==}
+ engines: {node: '>=12.2.0'}
+ hasBin: true
+ peerDependencies:
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ peerDependenciesMeta:
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+
+ vue-demi@0.14.10:
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
engines: {node: '>=12'}
hasBin: true
- requiresBuild: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
vue: ^3.0.0-0 || ^2.6.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
- dependencies:
- vue: 3.5.13(typescript@5.7.2)
- dev: true
- /vue@3.5.13(typescript@5.7.2):
+ vue@3.5.13:
resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-sfc': 3.5.13
- '@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13)
- '@vue/shared': 3.5.13
- typescript: 5.7.2
- dev: true
- /walkdir@0.4.1:
+ walkdir@0.4.1:
resolution: {integrity: sha512-3eBwRyEln6E1MSzcxcVpQIhRG8Q1jLvEqRmCZqS3dsfXEDR/AhOF4d+jHg1qvDCpYaVRZjENPQyrVxAkQqxPgQ==}
engines: {node: '>=6.0.0'}
- /wcwidth@1.0.1:
+ wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- dependencies:
- defaults: 1.0.4
- /which@2.0.2:
+ which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
- dependencies:
- isexe: 2.0.0
- /wrap-ansi@6.2.0:
+ wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- /wrap-ansi@7.0.0:
+ wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- dev: true
- /ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5):
+ wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+ ws@8.18.0:
resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -3577,53 +2849,2623 @@ packages:
optional: true
utf-8-validate:
optional: true
- dependencies:
- bufferutil: 4.0.8
- utf-8-validate: 6.0.5
- /y18n@5.0.8:
+ y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- dev: true
- /yallist@3.1.1:
+ yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- dev: false
- /yargs-parser@21.1.1:
+ yaml@1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
+
+ yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- dev: true
- /yargs@17.7.2:
+ yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
- dependencies:
- cliui: 8.0.1
- escalade: 3.2.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 21.1.1
- dev: true
- /ylru@1.4.0:
+ ylru@1.4.0:
resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
engines: {node: '>= 4.0.0'}
- /yocto-queue@1.1.1:
+ yn@3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+
+ yocto-queue@1.1.1:
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
- dev: true
- /zod-validation-error@1.5.0(zod@3.24.1):
+ zod-validation-error@1.5.0:
resolution: {integrity: sha512-/7eFkAI4qV0tcxMBB/3+d2c1P6jzzZYdYSlBuAklzMuCrJu5bzJfHS0yVAS87dRHVlhftd6RFJDIvv03JgkSbw==}
engines: {node: '>=16.0.0'}
peerDependencies:
zod: ^3.18.0
- dependencies:
- zod: 3.24.1
- /zod@3.24.1:
+ zod@3.24.1:
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
+
+snapshots:
+
+ '@ampproject/remapping@2.3.0':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@ant-design/colors@6.0.0':
+ dependencies:
+ '@ctrl/tinycolor': 3.6.1
+
+ '@ant-design/icons-svg@4.4.2': {}
+
+ '@ant-design/icons-vue@7.0.1(vue@3.5.13(typescript@5.7.2))':
+ dependencies:
+ '@ant-design/colors': 6.0.0
+ '@ant-design/icons-svg': 4.4.2
+ vue: 3.5.13(typescript@5.7.2)
+
+ '@babel/code-frame@7.26.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/compat-data@7.26.3': {}
+
+ '@babel/core@7.26.0':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ convert-source-map: 2.0.0
+ debug: 4.4.0
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.26.3':
+ dependencies:
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.1.0
+
+ '@babel/helper-annotate-as-pure@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.3
+
+ '@babel/helper-compilation-targets@7.25.9':
+ dependencies:
+ '@babel/compat-data': 7.26.3
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.3
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-module-imports@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-plugin-utils@7.25.9': {}
+
+ '@babel/helper-string-parser@7.25.9': {}
+
+ '@babel/helper-validator-identifier@7.25.9': {}
+
+ '@babel/helper-validator-option@7.25.9': {}
+
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
+
+ '@babel/parser@7.26.3':
+ dependencies:
+ '@babel/types': 7.26.3
+
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/runtime@7.26.0':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+
+ '@babel/traverse@7.26.4':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
+ debug: 4.4.0
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.26.3':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
+ '@changesets/apply-release-plan@7.0.7':
+ dependencies:
+ '@changesets/config': 3.0.5
+ '@changesets/get-version-range-type': 0.4.0
+ '@changesets/git': 3.0.2
+ '@changesets/should-skip-package': 0.1.1
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ detect-indent: 6.1.0
+ fs-extra: 7.0.1
+ lodash.startcase: 4.4.0
+ outdent: 0.5.0
+ prettier: 2.8.8
+ resolve-from: 5.0.0
+ semver: 7.6.3
+
+ '@changesets/assemble-release-plan@6.0.5':
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/should-skip-package': 0.1.1
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ semver: 7.6.3
+
+ '@changesets/changelog-git@0.2.0':
+ dependencies:
+ '@changesets/types': 6.0.0
+
+ '@changesets/cli@2.27.11':
+ dependencies:
+ '@changesets/apply-release-plan': 7.0.7
+ '@changesets/assemble-release-plan': 6.0.5
+ '@changesets/changelog-git': 0.2.0
+ '@changesets/config': 3.0.5
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/get-release-plan': 4.0.6
+ '@changesets/git': 3.0.2
+ '@changesets/logger': 0.1.1
+ '@changesets/pre': 2.0.1
+ '@changesets/read': 0.6.2
+ '@changesets/should-skip-package': 0.1.1
+ '@changesets/types': 6.0.0
+ '@changesets/write': 0.3.2
+ '@manypkg/get-packages': 1.1.3
+ ansi-colors: 4.1.3
+ ci-info: 3.9.0
+ enquirer: 2.4.1
+ external-editor: 3.1.0
+ fs-extra: 7.0.1
+ mri: 1.2.0
+ p-limit: 2.3.0
+ package-manager-detector: 0.2.8
+ picocolors: 1.1.1
+ resolve-from: 5.0.0
+ semver: 7.6.3
+ spawndamnit: 3.0.1
+ term-size: 2.2.1
+
+ '@changesets/config@3.0.5':
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/logger': 0.1.1
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+ micromatch: 4.0.8
+
+ '@changesets/errors@0.2.0':
+ dependencies:
+ extendable-error: 0.1.7
+
+ '@changesets/get-dependents-graph@2.1.2':
+ dependencies:
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ picocolors: 1.1.1
+ semver: 7.6.3
+
+ '@changesets/get-release-plan@4.0.6':
+ dependencies:
+ '@changesets/assemble-release-plan': 6.0.5
+ '@changesets/config': 3.0.5
+ '@changesets/pre': 2.0.1
+ '@changesets/read': 0.6.2
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+
+ '@changesets/get-version-range-type@0.4.0': {}
+
+ '@changesets/git@3.0.2':
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@manypkg/get-packages': 1.1.3
+ is-subdir: 1.2.0
+ micromatch: 4.0.8
+ spawndamnit: 3.0.1
+
+ '@changesets/logger@0.1.1':
+ dependencies:
+ picocolors: 1.1.1
+
+ '@changesets/parse@0.4.0':
+ dependencies:
+ '@changesets/types': 6.0.0
+ js-yaml: 3.14.1
+
+ '@changesets/pre@2.0.1':
+ dependencies:
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+ fs-extra: 7.0.1
+
+ '@changesets/read@0.6.2':
+ dependencies:
+ '@changesets/git': 3.0.2
+ '@changesets/logger': 0.1.1
+ '@changesets/parse': 0.4.0
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ p-filter: 2.1.0
+ picocolors: 1.1.1
+
+ '@changesets/should-skip-package@0.1.1':
+ dependencies:
+ '@changesets/types': 6.0.0
+ '@manypkg/get-packages': 1.1.3
+
+ '@changesets/types@4.1.0': {}
+
+ '@changesets/types@6.0.0': {}
+
+ '@changesets/write@0.3.2':
+ dependencies:
+ '@changesets/types': 6.0.0
+ fs-extra: 7.0.1
+ human-id: 1.0.2
+ prettier: 2.8.8
+
+ '@commitlint/cli@19.6.1(@types/node@22.10.2)(typescript@5.7.2)':
+ dependencies:
+ '@commitlint/format': 19.5.0
+ '@commitlint/lint': 19.6.0
+ '@commitlint/load': 19.6.1(@types/node@22.10.2)(typescript@5.7.2)
+ '@commitlint/read': 19.5.0
+ '@commitlint/types': 19.5.0
+ tinyexec: 0.3.1
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - typescript
+
+ '@commitlint/config-validator@19.5.0':
+ dependencies:
+ '@commitlint/types': 19.5.0
+ ajv: 8.17.1
+
+ '@commitlint/ensure@19.5.0':
+ dependencies:
+ '@commitlint/types': 19.5.0
+ lodash.camelcase: 4.3.0
+ lodash.kebabcase: 4.1.1
+ lodash.snakecase: 4.1.1
+ lodash.startcase: 4.4.0
+ lodash.upperfirst: 4.3.1
+
+ '@commitlint/execute-rule@19.5.0': {}
+
+ '@commitlint/format@19.5.0':
+ dependencies:
+ '@commitlint/types': 19.5.0
+ chalk: 5.4.1
+
+ '@commitlint/is-ignored@19.6.0':
+ dependencies:
+ '@commitlint/types': 19.5.0
+ semver: 7.6.3
+
+ '@commitlint/lint@19.6.0':
+ dependencies:
+ '@commitlint/is-ignored': 19.6.0
+ '@commitlint/parse': 19.5.0
+ '@commitlint/rules': 19.6.0
+ '@commitlint/types': 19.5.0
+
+ '@commitlint/load@19.6.1(@types/node@22.10.2)(typescript@5.7.2)':
+ dependencies:
+ '@commitlint/config-validator': 19.5.0
+ '@commitlint/execute-rule': 19.5.0
+ '@commitlint/resolve-extends': 19.5.0
+ '@commitlint/types': 19.5.0
+ chalk: 5.4.1
+ cosmiconfig: 9.0.0(typescript@5.7.2)
+ cosmiconfig-typescript-loader: 6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
+ lodash.isplainobject: 4.0.6
+ lodash.merge: 4.6.2
+ lodash.uniq: 4.5.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - typescript
+
+ '@commitlint/message@19.5.0': {}
+
+ '@commitlint/parse@19.5.0':
+ dependencies:
+ '@commitlint/types': 19.5.0
+ conventional-changelog-angular: 7.0.0
+ conventional-commits-parser: 5.0.0
+
+ '@commitlint/read@19.5.0':
+ dependencies:
+ '@commitlint/top-level': 19.5.0
+ '@commitlint/types': 19.5.0
+ git-raw-commits: 4.0.0
+ minimist: 1.2.8
+ tinyexec: 0.3.1
+
+ '@commitlint/resolve-extends@19.5.0':
+ dependencies:
+ '@commitlint/config-validator': 19.5.0
+ '@commitlint/types': 19.5.0
+ global-directory: 4.0.1
+ import-meta-resolve: 4.1.0
+ lodash.mergewith: 4.6.2
+ resolve-from: 5.0.0
+
+ '@commitlint/rules@19.6.0':
+ dependencies:
+ '@commitlint/ensure': 19.5.0
+ '@commitlint/message': 19.5.0
+ '@commitlint/to-lines': 19.5.0
+ '@commitlint/types': 19.5.0
+
+ '@commitlint/to-lines@19.5.0': {}
+
+ '@commitlint/top-level@19.5.0':
+ dependencies:
+ find-up: 7.0.0
+
+ '@commitlint/types@19.5.0':
+ dependencies:
+ '@types/conventional-commits-parser': 5.0.1
+ chalk: 5.4.1
+
+ '@ctrl/tinycolor@3.6.1': {}
+
+ '@esbuild/linux-loong64@0.14.54':
+ optional: true
+
+ '@farmfe/cli@1.0.4':
+ dependencies:
+ cac: 6.7.14
+ cross-spawn: 7.0.6
+ inquirer: 9.2.12
+ walkdir: 0.4.1
+
+ '@farmfe/core-darwin-arm64@1.6.1':
+ optional: true
+
+ '@farmfe/core-darwin-x64@1.6.1':
+ optional: true
+
+ '@farmfe/core-linux-arm64-gnu@1.6.1':
+ optional: true
+
+ '@farmfe/core-linux-arm64-musl@1.6.1':
+ optional: true
+
+ '@farmfe/core-linux-x64-gnu@1.6.1':
+ optional: true
+
+ '@farmfe/core-linux-x64-musl@1.6.1':
+ optional: true
+
+ '@farmfe/core-win32-arm64-msvc@1.6.1':
+ optional: true
+
+ '@farmfe/core-win32-ia32-msvc@1.6.1':
+ optional: true
+
+ '@farmfe/core-win32-x64-msvc@1.6.1':
+ optional: true
+
+ '@farmfe/core@1.6.1(bufferutil@4.0.8)(utf-8-validate@6.0.5)':
+ dependencies:
+ '@farmfe/runtime': 0.12.10
+ '@farmfe/runtime-plugin-hmr': 3.5.10
+ '@farmfe/runtime-plugin-import-meta': 0.2.3
+ '@farmfe/utils': 0.1.0
+ '@koa/cors': 5.0.0
+ '@swc/helpers': 0.5.15
+ chokidar: 3.6.0
+ deepmerge: 4.3.1
+ dotenv: 16.4.7
+ dotenv-expand: 11.0.7
+ execa: 7.2.0
+ farm-browserslist-generator: 1.0.5
+ farm-plugin-replace-dirname: 0.2.1
+ fast-glob: 3.3.2
+ fs-extra: 11.2.0
+ http-proxy-middleware: 3.0.3
+ is-plain-object: 5.0.0
+ koa: 2.15.3
+ koa-compress: 5.1.1
+ koa-connect: 2.1.0
+ koa-static: 5.0.0
+ lodash.debounce: 4.0.8
+ loglevel: 1.9.2
+ open: 9.1.0
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)
+ zod: 3.24.1
+ zod-validation-error: 1.5.0(zod@3.24.1)
+ optionalDependencies:
+ '@farmfe/core-darwin-arm64': 1.6.1
+ '@farmfe/core-darwin-x64': 1.6.1
+ '@farmfe/core-linux-arm64-gnu': 1.6.1
+ '@farmfe/core-linux-arm64-musl': 1.6.1
+ '@farmfe/core-linux-x64-gnu': 1.6.1
+ '@farmfe/core-linux-x64-musl': 1.6.1
+ '@farmfe/core-win32-arm64-msvc': 1.6.1
+ '@farmfe/core-win32-ia32-msvc': 1.6.1
+ '@farmfe/core-win32-x64-msvc': 1.6.1
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ '@farmfe/js-plugin-dts@0.6.4':
+ dependencies:
+ chalk: 5.4.1
+ fast-glob: 3.3.2
+ fs-extra: 11.2.0
+ ts-morph: 23.0.0
+ typescript: 5.7.2
+
+ '@farmfe/js-plugin-visualizer@1.1.4(monaco-editor@0.52.2)(vue@3.5.13(typescript@5.7.2))':
+ dependencies:
+ '@ant-design/icons-vue': 7.0.1(vue@3.5.13(typescript@5.7.2))
+ '@guolao/vue-monaco-editor': 1.5.4(monaco-editor@0.52.2)(vue@3.5.13(typescript@5.7.2))
+ '@types/ws': 8.5.13
+ axios: 1.7.9
+ bufferutil: 4.0.8
+ core-js: 3.39.0
+ envinfo: 7.14.0
+ sirv: 2.0.4
+ utf-8-validate: 6.0.5
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5)
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - debug
+ - monaco-editor
+ - vue
+
+ '@farmfe/plugin-react-darwin-arm64@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-darwin-x64@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-linux-arm64-gnu@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-linux-arm64-musl@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-linux-x64-gnu@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-linux-x64-musl@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-win32-arm64-msvc@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-win32-ia32-msvc@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react-win32-x64-msvc@1.2.6':
+ optional: true
+
+ '@farmfe/plugin-react@1.2.6':
+ optionalDependencies:
+ '@farmfe/plugin-react-darwin-arm64': 1.2.6
+ '@farmfe/plugin-react-darwin-x64': 1.2.6
+ '@farmfe/plugin-react-linux-arm64-gnu': 1.2.6
+ '@farmfe/plugin-react-linux-arm64-musl': 1.2.6
+ '@farmfe/plugin-react-linux-x64-gnu': 1.2.6
+ '@farmfe/plugin-react-linux-x64-musl': 1.2.6
+ '@farmfe/plugin-react-win32-arm64-msvc': 1.2.6
+ '@farmfe/plugin-react-win32-ia32-msvc': 1.2.6
+ '@farmfe/plugin-react-win32-x64-msvc': 1.2.6
+
+ '@farmfe/plugin-tools@0.1.1':
+ dependencies:
+ '@farmfe/utils': 0.1.0
+ '@napi-rs/cli': 2.18.4
+ cac: 6.7.14
+
+ '@farmfe/runtime-plugin-hmr@3.5.10':
+ dependencies:
+ core-js: 3.39.0
+
+ '@farmfe/runtime-plugin-import-meta@0.2.3':
+ dependencies:
+ core-js: 3.39.0
+
+ '@farmfe/runtime@0.12.10':
+ dependencies:
+ core-js: 3.39.0
+
+ '@farmfe/utils@0.0.1': {}
+
+ '@farmfe/utils@0.1.0': {}
+
+ '@guolao/vue-monaco-editor@1.5.4(monaco-editor@0.52.2)(vue@3.5.13(typescript@5.7.2))':
+ dependencies:
+ '@monaco-editor/loader': 1.4.0(monaco-editor@0.52.2)
+ monaco-editor: 0.52.2
+ vue: 3.5.13(typescript@5.7.2)
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
+
+ '@jridgewell/gen-mapping@0.3.8':
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@jridgewell/resolve-uri@3.1.2': {}
+
+ '@jridgewell/set-array@1.2.1': {}
+
+ '@jridgewell/sourcemap-codec@1.5.0': {}
+
+ '@jridgewell/trace-mapping@0.3.25':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ '@koa/cors@5.0.0':
+ dependencies:
+ vary: 1.1.2
+
+ '@ljharb/through@2.3.13':
+ dependencies:
+ call-bind: 1.0.8
+
+ '@manypkg/find-root@1.1.0':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@types/node': 12.20.55
+ find-up: 4.1.0
+ fs-extra: 8.1.0
+
+ '@manypkg/get-packages@1.1.3':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@changesets/types': 4.1.0
+ '@manypkg/find-root': 1.1.0
+ fs-extra: 8.1.0
+ globby: 11.1.0
+ read-yaml-file: 1.1.0
+
+ '@mdn/browser-compat-data@5.6.26': {}
+
+ '@monaco-editor/loader@1.4.0(monaco-editor@0.52.2)':
+ dependencies:
+ monaco-editor: 0.52.2
+ state-local: 1.0.7
+
+ '@napi-rs/cli@2.18.4': {}
+
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.18.0
+
+ '@polka/url@1.0.0-next.28': {}
+
+ '@prefresh/babel-plugin@0.5.1': {}
+
+ '@prefresh/core@1.5.3(preact@10.25.4)':
+ dependencies:
+ preact: 10.25.4
+
+ '@prefresh/utils@1.2.0': {}
+
+ '@prefresh/vite@2.4.6(preact@10.25.4)(vite@2.9.18)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@prefresh/babel-plugin': 0.5.1
+ '@prefresh/core': 1.5.3(preact@10.25.4)
+ '@prefresh/utils': 1.2.0
+ '@rollup/pluginutils': 4.2.1
+ preact: 10.25.4
+ vite: 2.9.18
+ transitivePeerDependencies:
+ - supports-color
+
+ '@rollup/pluginutils@4.2.1':
+ dependencies:
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+
+ '@sindresorhus/merge-streams@2.3.0': {}
+
+ '@swc/helpers@0.5.15':
+ dependencies:
+ tslib: 2.8.1
+
+ '@ts-morph/common@0.24.0':
+ dependencies:
+ fast-glob: 3.3.2
+ minimatch: 9.0.5
+ mkdirp: 3.0.1
+ path-browserify: 1.0.1
+
+ '@types/babel__code-frame@7.0.6': {}
+
+ '@types/babel__core@7.20.5':
+ dependencies:
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.6
+
+ '@types/babel__generator@7.6.8':
+ dependencies:
+ '@babel/types': 7.26.3
+
+ '@types/babel__template@7.4.4':
+ dependencies:
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+
+ '@types/babel__traverse@7.20.6':
+ dependencies:
+ '@babel/types': 7.26.3
+
+ '@types/conventional-commits-parser@5.0.1':
+ dependencies:
+ '@types/node': 22.10.2
+
+ '@types/debug@4.1.12':
+ dependencies:
+ '@types/ms': 2.1.0
+
+ '@types/estree@0.0.50': {}
+
+ '@types/fs-extra@11.0.4':
+ dependencies:
+ '@types/jsonfile': 6.1.4
+ '@types/node': 22.10.2
+
+ '@types/http-proxy@1.17.15':
+ dependencies:
+ '@types/node': 22.10.2
+
+ '@types/jsonfile@6.1.4':
+ dependencies:
+ '@types/node': 22.10.2
+
+ '@types/ms@2.1.0': {}
+
+ '@types/node@12.20.55': {}
+
+ '@types/node@14.18.63': {}
+
+ '@types/node@22.10.2':
+ dependencies:
+ undici-types: 6.20.0
+
+ '@types/object-path@0.11.4': {}
+
+ '@types/parse-json@4.0.2': {}
+
+ '@types/prop-types@15.7.14': {}
+
+ '@types/react-dom@18.3.5(@types/react@18.3.18)':
+ dependencies:
+ '@types/react': 18.3.18
+
+ '@types/react-dom@19.0.2(@types/react@19.0.1)':
+ dependencies:
+ '@types/react': 19.0.1
+
+ '@types/react@18.3.18':
+ dependencies:
+ '@types/prop-types': 15.7.14
+ csstype: 3.1.3
+
+ '@types/react@19.0.1':
+ dependencies:
+ csstype: 3.1.3
+
+ '@types/semver@7.5.8': {}
+
+ '@types/stack-trace@0.0.33': {}
+
+ '@types/ua-parser-js@0.7.39': {}
+
+ '@types/ws@8.5.13':
+ dependencies:
+ '@types/node': 22.10.2
+
+ '@vue/compiler-core@3.5.13':
+ dependencies:
+ '@babel/parser': 7.26.3
+ '@vue/shared': 3.5.13
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
+ '@vue/compiler-dom@3.5.13':
+ dependencies:
+ '@vue/compiler-core': 3.5.13
+ '@vue/shared': 3.5.13
+
+ '@vue/compiler-sfc@3.5.13':
+ dependencies:
+ '@babel/parser': 7.26.3
+ '@vue/compiler-core': 3.5.13
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ estree-walker: 2.0.2
+ magic-string: 0.30.17
+ postcss: 8.4.49
+ source-map-js: 1.2.1
+
+ '@vue/compiler-ssr@3.5.13':
+ dependencies:
+ '@vue/compiler-dom': 3.5.13
+ '@vue/shared': 3.5.13
+
+ '@vue/reactivity@3.5.13':
+ dependencies:
+ '@vue/shared': 3.5.13
+
+ '@vue/runtime-core@3.5.13':
+ dependencies:
+ '@vue/reactivity': 3.5.13
+ '@vue/shared': 3.5.13
+
+ '@vue/runtime-dom@3.5.13':
+ dependencies:
+ '@vue/reactivity': 3.5.13
+ '@vue/runtime-core': 3.5.13
+ '@vue/shared': 3.5.13
+ csstype: 3.1.3
+
+ '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.2))':
+ dependencies:
+ '@vue/compiler-ssr': 3.5.13
+ '@vue/shared': 3.5.13
+ vue: 3.5.13(typescript@5.7.2)
+
+ '@vue/shared@3.5.13': {}
+
+ JSONStream@1.3.5:
+ dependencies:
+ jsonparse: 1.3.1
+ through: 2.3.8
+
+ accepts@1.3.8:
+ dependencies:
+ mime-types: 2.1.35
+ negotiator: 0.6.3
+
+ aggregate-error@3.1.0:
+ dependencies:
+ clean-stack: 2.2.0
+ indent-string: 4.0.0
+
+ ajv@8.17.1:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.0.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+
+ ansi-colors@4.1.3: {}
+
+ ansi-escapes@4.3.2:
+ dependencies:
+ type-fest: 0.21.3
+
+ ansi-regex@5.0.1: {}
+
+ ansi-styles@4.3.0:
+ dependencies:
+ color-convert: 2.0.1
+
+ anymatch@3.1.3:
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+
+ arg@4.1.3: {}
+
+ argparse@1.0.10:
+ dependencies:
+ sprintf-js: 1.0.3
+
+ argparse@2.0.1: {}
+
+ array-ify@1.0.0: {}
+
+ array-union@2.1.0: {}
+
+ astral-regex@2.0.0: {}
+
+ asynckit@0.4.0: {}
+
+ axios@1.7.9:
+ dependencies:
+ follow-redirects: 1.15.9(debug@4.4.0)
+ form-data: 4.0.1
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
+ babel-plugin-react-compiler@19.0.0-beta-37ed2a7-20241206:
+ dependencies:
+ '@babel/types': 7.26.3
+
+ babel-plugin-transform-hook-names@1.0.2(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+
+ balanced-match@1.0.2: {}
+
+ base64-js@1.5.1: {}
+
+ better-path-resolve@1.0.0:
+ dependencies:
+ is-windows: 1.0.2
+
+ big-integer@1.6.52: {}
+
+ binary-extensions@2.3.0: {}
+
+ bl@4.1.0:
+ dependencies:
+ buffer: 5.7.1
+ inherits: 2.0.4
+ readable-stream: 3.6.2
+
+ boolbase@1.0.0: {}
+
+ bplist-parser@0.2.0:
+ dependencies:
+ big-integer: 1.6.52
+
+ brace-expansion@1.1.11:
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+
+ brace-expansion@2.0.1:
+ dependencies:
+ balanced-match: 1.0.2
+
+ braces@3.0.3:
+ dependencies:
+ fill-range: 7.1.1
+
+ browserslist@4.24.3:
+ dependencies:
+ caniuse-lite: 1.0.30001690
+ electron-to-chromium: 1.5.76
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.1(browserslist@4.24.3)
+
+ buffer-from@1.1.2: {}
+
+ buffer@5.7.1:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
+ bufferutil@4.0.8:
+ dependencies:
+ node-gyp-build: 4.8.4
+
+ bundle-name@3.0.0:
+ dependencies:
+ run-applescript: 5.0.0
+
+ bytes@3.1.2: {}
+
+ cac@6.7.14: {}
+
+ cache-content-type@1.0.1:
+ dependencies:
+ mime-types: 2.1.35
+ ylru: 1.4.0
+
+ call-bind-apply-helpers@1.0.1:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ get-intrinsic: 1.2.6
+ set-function-length: 1.2.2
+
+ callsites@3.1.0: {}
+
+ caniuse-lite@1.0.30001690: {}
+
+ chalk@4.1.2:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+
+ chalk@5.4.1: {}
+
+ chardet@0.7.0: {}
+
+ chokidar@3.6.0:
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.3
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ ci-info@3.9.0: {}
+
+ clean-stack@2.2.0: {}
+
+ cli-cursor@3.1.0:
+ dependencies:
+ restore-cursor: 3.1.0
+
+ cli-spinners@2.9.2: {}
+
+ cli-truncate@2.1.0:
+ dependencies:
+ slice-ansi: 3.0.0
+ string-width: 4.2.3
+
+ cli-width@4.1.0: {}
+
+ cliui@8.0.1:
+ dependencies:
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 7.0.0
+
+ clone@1.0.4: {}
+
+ co@4.6.0: {}
+
+ code-block-writer@13.0.3: {}
+
+ color-convert@2.0.1:
+ dependencies:
+ color-name: 1.1.4
+
+ color-name@1.1.4: {}
+
+ colorette@2.0.20: {}
+
+ combined-stream@1.0.8:
+ dependencies:
+ delayed-stream: 1.0.0
+
+ commander@6.2.1: {}
+
+ commitlint@19.6.1(@types/node@22.10.2)(typescript@5.7.2):
+ dependencies:
+ '@commitlint/cli': 19.6.1(@types/node@22.10.2)(typescript@5.7.2)
+ '@commitlint/types': 19.5.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - typescript
+
+ compare-func@2.0.0:
+ dependencies:
+ array-ify: 1.0.0
+ dot-prop: 5.3.0
+
+ compressible@2.0.18:
+ dependencies:
+ mime-db: 1.53.0
+
+ concat-map@0.0.1: {}
+
+ content-disposition@0.5.4:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ content-type@1.0.5: {}
+
+ conventional-changelog-angular@7.0.0:
+ dependencies:
+ compare-func: 2.0.0
+
+ conventional-commits-parser@5.0.0:
+ dependencies:
+ JSONStream: 1.3.5
+ is-text-path: 2.0.0
+ meow: 12.1.1
+ split2: 4.2.0
+
+ convert-source-map@2.0.0: {}
+
+ cookies@0.9.1:
+ dependencies:
+ depd: 2.0.0
+ keygrip: 1.1.0
+
+ core-js@3.39.0: {}
+
+ cosmiconfig-typescript-loader@6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
+ dependencies:
+ '@types/node': 22.10.2
+ cosmiconfig: 9.0.0(typescript@5.7.2)
+ jiti: 2.4.2
+ typescript: 5.7.2
+
+ cosmiconfig@7.1.0:
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+
+ cosmiconfig@9.0.0(typescript@5.7.2):
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ optionalDependencies:
+ typescript: 5.7.2
+
+ create-require@1.1.1: {}
+
+ cross-env@7.0.3:
+ dependencies:
+ cross-spawn: 7.0.6
+
+ cross-spawn@7.0.6:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
+ css-select@5.1.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ nth-check: 2.1.1
+
+ css-what@6.1.0: {}
+
+ csstype@3.1.3: {}
+
+ dargs@8.1.0: {}
+
+ debug@3.2.7:
+ dependencies:
+ ms: 2.1.3
+
+ debug@4.4.0:
+ dependencies:
+ ms: 2.1.3
+
+ dedent@0.7.0: {}
+
+ deep-equal@1.0.1: {}
+
+ deepmerge@4.3.1: {}
+
+ default-browser-id@3.0.0:
+ dependencies:
+ bplist-parser: 0.2.0
+ untildify: 4.0.0
+
+ default-browser@4.0.0:
+ dependencies:
+ bundle-name: 3.0.0
+ default-browser-id: 3.0.0
+ execa: 7.2.0
+ titleize: 3.0.0
+
+ defaults@1.0.4:
+ dependencies:
+ clone: 1.0.4
+
+ define-data-property@1.1.4:
+ dependencies:
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
+ define-lazy-prop@3.0.0: {}
+
+ delayed-stream@1.0.0: {}
+
+ delegates@1.0.0: {}
+
+ depd@1.1.2: {}
+
+ depd@2.0.0: {}
+
+ destroy@1.2.0: {}
+
+ detect-indent@6.1.0: {}
+
+ diff@4.0.2: {}
+
+ dir-glob@3.0.1:
+ dependencies:
+ path-type: 4.0.0
+
+ dom-serializer@2.0.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.5.0
+
+ domelementtype@2.3.0: {}
+
+ domhandler@5.0.3:
+ dependencies:
+ domelementtype: 2.3.0
+
+ domutils@3.2.2:
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
+ dot-prop@5.3.0:
+ dependencies:
+ is-obj: 2.0.0
+
+ dotenv-expand@11.0.7:
+ dependencies:
+ dotenv: 16.4.7
+
+ dotenv@16.4.7: {}
+
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
+ ee-first@1.1.1: {}
+
+ electron-to-chromium@1.5.76: {}
+
+ emoji-regex@8.0.0: {}
+
+ encodeurl@1.0.2: {}
+
+ end-of-stream@1.4.4:
+ dependencies:
+ once: 1.4.0
+
+ enquirer@2.4.1:
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+
+ entities@4.5.0: {}
+
+ env-paths@2.2.1: {}
+
+ envinfo@7.14.0: {}
+
+ error-ex@1.3.2:
+ dependencies:
+ is-arrayish: 0.2.1
+
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
+ es-object-atoms@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+
+ esbuild-android-64@0.14.54:
+ optional: true
+
+ esbuild-android-arm64@0.14.54:
+ optional: true
+
+ esbuild-darwin-64@0.14.54:
+ optional: true
+
+ esbuild-darwin-arm64@0.14.54:
+ optional: true
+
+ esbuild-freebsd-64@0.14.54:
+ optional: true
+
+ esbuild-freebsd-arm64@0.14.54:
+ optional: true
+
+ esbuild-linux-32@0.14.54:
+ optional: true
+
+ esbuild-linux-64@0.14.54:
+ optional: true
+
+ esbuild-linux-arm64@0.14.54:
+ optional: true
+
+ esbuild-linux-arm@0.14.54:
+ optional: true
+
+ esbuild-linux-mips64le@0.14.54:
+ optional: true
+
+ esbuild-linux-ppc64le@0.14.54:
+ optional: true
+
+ esbuild-linux-riscv64@0.14.54:
+ optional: true
+
+ esbuild-linux-s390x@0.14.54:
+ optional: true
+
+ esbuild-netbsd-64@0.14.54:
+ optional: true
+
+ esbuild-openbsd-64@0.14.54:
+ optional: true
+
+ esbuild-sunos-64@0.14.54:
+ optional: true
+
+ esbuild-windows-32@0.14.54:
+ optional: true
+
+ esbuild-windows-64@0.14.54:
+ optional: true
+
+ esbuild-windows-arm64@0.14.54:
+ optional: true
+
+ esbuild@0.14.54:
+ optionalDependencies:
+ '@esbuild/linux-loong64': 0.14.54
+ esbuild-android-64: 0.14.54
+ esbuild-android-arm64: 0.14.54
+ esbuild-darwin-64: 0.14.54
+ esbuild-darwin-arm64: 0.14.54
+ esbuild-freebsd-64: 0.14.54
+ esbuild-freebsd-arm64: 0.14.54
+ esbuild-linux-32: 0.14.54
+ esbuild-linux-64: 0.14.54
+ esbuild-linux-arm: 0.14.54
+ esbuild-linux-arm64: 0.14.54
+ esbuild-linux-mips64le: 0.14.54
+ esbuild-linux-ppc64le: 0.14.54
+ esbuild-linux-riscv64: 0.14.54
+ esbuild-linux-s390x: 0.14.54
+ esbuild-netbsd-64: 0.14.54
+ esbuild-openbsd-64: 0.14.54
+ esbuild-sunos-64: 0.14.54
+ esbuild-windows-32: 0.14.54
+ esbuild-windows-64: 0.14.54
+ esbuild-windows-arm64: 0.14.54
+
+ escalade@3.2.0: {}
+
+ escape-html@1.0.3: {}
+
+ escape-string-regexp@5.0.0: {}
+
+ esprima@4.0.1: {}
+
+ estree-walker@2.0.2: {}
+
+ eventemitter3@4.0.7: {}
+
+ execa@4.1.0:
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 5.2.0
+ human-signals: 1.1.1
+ is-stream: 2.0.1
+ merge-stream: 2.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ strip-final-newline: 2.0.0
+
+ execa@5.1.1:
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 6.0.1
+ human-signals: 2.1.0
+ is-stream: 2.0.1
+ merge-stream: 2.0.0
+ npm-run-path: 4.0.1
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+ strip-final-newline: 2.0.0
+
+ execa@7.2.0:
+ dependencies:
+ cross-spawn: 7.0.6
+ get-stream: 6.0.1
+ human-signals: 4.3.1
+ is-stream: 3.0.0
+ merge-stream: 2.0.0
+ npm-run-path: 5.3.0
+ onetime: 6.0.0
+ signal-exit: 3.0.7
+ strip-final-newline: 3.0.0
+
+ extendable-error@0.1.7: {}
+
+ external-editor@3.1.0:
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+
+ farm-browserslist-generator@1.0.5:
+ dependencies:
+ '@mdn/browser-compat-data': 5.6.26
+ '@types/object-path': 0.11.4
+ '@types/semver': 7.5.8
+ '@types/ua-parser-js': 0.7.39
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
+ isbot: 3.8.0
+ object-path: 0.11.8
+ semver: 7.6.3
+ ua-parser-js: 1.0.40
+
+ farm-plugin-replace-dirname-darwin-arm64@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-darwin-x64@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-linux-arm64-gnu@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-linux-arm64-musl@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-linux-x64-gnu@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-linux-x64-musl@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-win32-arm64-msvc@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-win32-ia32-msvc@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname-win32-x64-msvc@0.2.1:
+ optional: true
+
+ farm-plugin-replace-dirname@0.2.1:
+ dependencies:
+ '@changesets/cli': 2.27.11
+ '@farmfe/utils': 0.0.1
+ cac: 6.7.14
+ optionalDependencies:
+ farm-plugin-replace-dirname-darwin-arm64: 0.2.1
+ farm-plugin-replace-dirname-darwin-x64: 0.2.1
+ farm-plugin-replace-dirname-linux-arm64-gnu: 0.2.1
+ farm-plugin-replace-dirname-linux-arm64-musl: 0.2.1
+ farm-plugin-replace-dirname-linux-x64-gnu: 0.2.1
+ farm-plugin-replace-dirname-linux-x64-musl: 0.2.1
+ farm-plugin-replace-dirname-win32-arm64-msvc: 0.2.1
+ farm-plugin-replace-dirname-win32-ia32-msvc: 0.2.1
+ farm-plugin-replace-dirname-win32-x64-msvc: 0.2.1
+
+ fast-deep-equal@3.1.3: {}
+
+ fast-glob@3.3.2:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+
+ fast-uri@3.0.3: {}
+
+ fastq@1.18.0:
+ dependencies:
+ reusify: 1.0.4
+
+ figures@5.0.0:
+ dependencies:
+ escape-string-regexp: 5.0.0
+ is-unicode-supported: 1.3.0
+
+ fill-range@7.1.1:
+ dependencies:
+ to-regex-range: 5.0.1
+
+ find-up@4.1.0:
+ dependencies:
+ locate-path: 5.0.0
+ path-exists: 4.0.0
+
+ find-up@7.0.0:
+ dependencies:
+ locate-path: 7.2.0
+ path-exists: 5.0.0
+ unicorn-magic: 0.1.0
+
+ follow-redirects@1.15.9(debug@4.4.0):
+ optionalDependencies:
+ debug: 4.4.0
+
+ form-data@4.0.1:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ mime-types: 2.1.35
+
+ fresh@0.5.2: {}
+
+ fs-extra@11.2.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
+
+ fs-extra@7.0.1:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+
+ fs-extra@8.1.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+
+ fs.realpath@1.0.0: {}
+
+ fsevents@2.3.3:
+ optional: true
+
+ function-bind@1.1.2: {}
+
+ gensync@1.0.0-beta.2: {}
+
+ get-caller-file@2.0.5: {}
+
+ get-intrinsic@1.2.6:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ dunder-proto: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ function-bind: 1.1.2
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
+
+ get-own-enumerable-property-symbols@3.0.2: {}
+
+ get-stream@5.2.0:
+ dependencies:
+ pump: 3.0.2
+
+ get-stream@6.0.1: {}
+
+ git-cz@4.9.0: {}
+
+ git-raw-commits@4.0.0:
+ dependencies:
+ dargs: 8.1.0
+ meow: 12.1.1
+ split2: 4.2.0
+
+ glob-parent@5.1.2:
+ dependencies:
+ is-glob: 4.0.3
+
+ glob@7.2.3:
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+
+ global-directory@4.0.1:
+ dependencies:
+ ini: 4.1.1
+
+ globals@11.12.0: {}
+
+ globby@11.1.0:
+ dependencies:
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ ignore: 5.3.2
+ merge2: 1.4.1
+ slash: 3.0.0
+
+ globby@14.0.2:
+ dependencies:
+ '@sindresorhus/merge-streams': 2.3.0
+ fast-glob: 3.3.2
+ ignore: 5.3.2
+ path-type: 5.0.0
+ slash: 5.1.0
+ unicorn-magic: 0.1.0
+
+ gopd@1.2.0: {}
+
+ graceful-fs@4.2.11: {}
+
+ has-flag@4.0.0: {}
+
+ has-property-descriptors@1.0.2:
+ dependencies:
+ es-define-property: 1.0.1
+
+ has-symbols@1.1.0: {}
+
+ has-tostringtag@1.0.2:
+ dependencies:
+ has-symbols: 1.1.0
+
+ hasown@2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+
+ he@1.2.0: {}
+
+ http-assert@1.5.0:
+ dependencies:
+ deep-equal: 1.0.1
+ http-errors: 1.8.1
+
+ http-errors@1.6.3:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.3
+ setprototypeof: 1.1.0
+ statuses: 1.5.0
+
+ http-errors@1.8.1:
+ dependencies:
+ depd: 1.1.2
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 1.5.0
+ toidentifier: 1.0.1
+
+ http-proxy-middleware@3.0.3:
+ dependencies:
+ '@types/http-proxy': 1.17.15
+ debug: 4.4.0
+ http-proxy: 1.18.1(debug@4.4.0)
+ is-glob: 4.0.3
+ is-plain-object: 5.0.0
+ micromatch: 4.0.8
+ transitivePeerDependencies:
+ - supports-color
+
+ http-proxy@1.18.1(debug@4.4.0):
+ dependencies:
+ eventemitter3: 4.0.7
+ follow-redirects: 1.15.9(debug@4.4.0)
+ requires-port: 1.0.0
+ transitivePeerDependencies:
+ - debug
+
+ human-id@1.0.2: {}
+
+ human-signals@1.1.1: {}
+
+ human-signals@2.1.0: {}
+
+ human-signals@4.3.1: {}
+
+ husky@9.1.7: {}
+
+ iconv-lite@0.4.24:
+ dependencies:
+ safer-buffer: 2.1.2
+
+ ieee754@1.2.1: {}
+
+ ignore@5.3.2: {}
+
+ import-fresh@3.3.0:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
+ import-meta-resolve@4.1.0: {}
+
+ indent-string@4.0.0: {}
+
+ inflight@1.0.6:
+ dependencies:
+ once: 1.4.0
+ wrappy: 1.0.2
+
+ inherits@2.0.3: {}
+
+ inherits@2.0.4: {}
+
+ ini@4.1.1: {}
+
+ inquirer@9.2.12:
+ dependencies:
+ '@ljharb/through': 2.3.13
+ ansi-escapes: 4.3.2
+ chalk: 5.4.1
+ cli-cursor: 3.1.0
+ cli-width: 4.1.0
+ external-editor: 3.1.0
+ figures: 5.0.0
+ lodash: 4.17.21
+ mute-stream: 1.0.0
+ ora: 5.4.1
+ run-async: 3.0.0
+ rxjs: 7.8.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+
+ is-arrayish@0.2.1: {}
+
+ is-binary-path@2.1.0:
+ dependencies:
+ binary-extensions: 2.3.0
+
+ is-core-module@2.16.1:
+ dependencies:
+ hasown: 2.0.2
+
+ is-docker@2.2.1: {}
+
+ is-docker@3.0.0: {}
+
+ is-extglob@2.1.1: {}
+
+ is-fullwidth-code-point@3.0.0: {}
+
+ is-generator-function@1.0.10:
+ dependencies:
+ has-tostringtag: 1.0.2
+
+ is-glob@4.0.3:
+ dependencies:
+ is-extglob: 2.1.1
+
+ is-inside-container@1.0.0:
+ dependencies:
+ is-docker: 3.0.0
+
+ is-interactive@1.0.0: {}
+
+ is-number@7.0.0: {}
+
+ is-obj@1.0.1: {}
+
+ is-obj@2.0.0: {}
+
+ is-plain-object@5.0.0: {}
+
+ is-regexp@1.0.0: {}
+
+ is-stream@2.0.1: {}
+
+ is-stream@3.0.0: {}
+
+ is-subdir@1.2.0:
+ dependencies:
+ better-path-resolve: 1.0.0
+
+ is-text-path@2.0.0:
+ dependencies:
+ text-extensions: 2.4.0
+
+ is-unicode-supported@0.1.0: {}
+
+ is-unicode-supported@1.3.0: {}
+
+ is-windows@1.0.2: {}
+
+ is-wsl@2.2.0:
+ dependencies:
+ is-docker: 2.2.1
+
+ isbot@3.8.0: {}
+
+ isexe@2.0.0: {}
+
+ jiti@2.4.2: {}
+
+ js-tokens@4.0.0: {}
+
+ js-yaml@3.14.1:
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+
+ js-yaml@4.1.0:
+ dependencies:
+ argparse: 2.0.1
+
+ jsesc@3.1.0: {}
+
+ json-parse-even-better-errors@2.3.1: {}
+
+ json-schema-traverse@1.0.0: {}
+
+ json5@2.2.3: {}
+
+ jsonfile@4.0.0:
+ optionalDependencies:
+ graceful-fs: 4.2.11
+
+ jsonfile@6.1.0:
+ dependencies:
+ universalify: 2.0.1
+ optionalDependencies:
+ graceful-fs: 4.2.11
+
+ jsonparse@1.3.1: {}
+
+ keygrip@1.1.0:
+ dependencies:
+ tsscmp: 1.0.6
+
+ koa-compose@4.1.0: {}
+
+ koa-compress@5.1.1:
+ dependencies:
+ bytes: 3.1.2
+ compressible: 2.0.18
+ http-errors: 1.8.1
+ koa-is-json: 1.0.0
+
+ koa-connect@2.1.0: {}
+
+ koa-convert@2.0.0:
+ dependencies:
+ co: 4.6.0
+ koa-compose: 4.1.0
+
+ koa-is-json@1.0.0: {}
+
+ koa-send@5.0.1:
+ dependencies:
+ debug: 4.4.0
+ http-errors: 1.8.1
+ resolve-path: 1.4.0
+ transitivePeerDependencies:
+ - supports-color
+
+ koa-static@5.0.0:
+ dependencies:
+ debug: 3.2.7
+ koa-send: 5.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ koa@2.15.3:
+ dependencies:
+ accepts: 1.3.8
+ cache-content-type: 1.0.1
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookies: 0.9.1
+ debug: 4.4.0
+ delegates: 1.0.0
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ fresh: 0.5.2
+ http-assert: 1.5.0
+ http-errors: 1.8.1
+ is-generator-function: 1.0.10
+ koa-compose: 4.1.0
+ koa-convert: 2.0.0
+ on-finished: 2.4.1
+ only: 0.0.2
+ parseurl: 1.3.3
+ statuses: 1.5.0
+ type-is: 1.6.18
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ kolorist@1.8.0: {}
+
+ lines-and-columns@1.2.4: {}
+
+ lint-staged@10.5.4:
+ dependencies:
+ chalk: 4.1.2
+ cli-truncate: 2.1.0
+ commander: 6.2.1
+ cosmiconfig: 7.1.0
+ debug: 4.4.0
+ dedent: 0.7.0
+ enquirer: 2.4.1
+ execa: 4.1.0
+ listr2: 3.14.0(enquirer@2.4.1)
+ log-symbols: 4.1.0
+ micromatch: 4.0.8
+ normalize-path: 3.0.0
+ please-upgrade-node: 3.2.0
+ string-argv: 0.3.1
+ stringify-object: 3.3.0
+ transitivePeerDependencies:
+ - supports-color
+
+ listr2@3.14.0(enquirer@2.4.1):
+ dependencies:
+ cli-truncate: 2.1.0
+ colorette: 2.0.20
+ log-update: 4.0.0
+ p-map: 4.0.0
+ rfdc: 1.4.1
+ rxjs: 7.8.1
+ through: 2.3.8
+ wrap-ansi: 7.0.0
+ optionalDependencies:
+ enquirer: 2.4.1
+
+ locate-path@5.0.0:
+ dependencies:
+ p-locate: 4.1.0
+
+ locate-path@7.2.0:
+ dependencies:
+ p-locate: 6.0.0
+
+ lodash.camelcase@4.3.0: {}
+
+ lodash.debounce@4.0.8: {}
+
+ lodash.isplainobject@4.0.6: {}
+
+ lodash.kebabcase@4.1.1: {}
+
+ lodash.merge@4.6.2: {}
+
+ lodash.mergewith@4.6.2: {}
+
+ lodash.snakecase@4.1.1: {}
+
+ lodash.startcase@4.4.0: {}
+
+ lodash.uniq@4.5.0: {}
+
+ lodash.upperfirst@4.3.1: {}
+
+ lodash@4.17.21: {}
+
+ log-symbols@4.1.0:
+ dependencies:
+ chalk: 4.1.2
+ is-unicode-supported: 0.1.0
+
+ log-update@4.0.0:
+ dependencies:
+ ansi-escapes: 4.3.2
+ cli-cursor: 3.1.0
+ slice-ansi: 4.0.0
+ wrap-ansi: 6.2.0
+
+ loglevel@1.9.2: {}
+
+ loose-envify@1.4.0:
+ dependencies:
+ js-tokens: 4.0.0
+
+ lru-cache@5.1.1:
+ dependencies:
+ yallist: 3.1.1
+
+ magic-string@0.30.17:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ make-error@1.3.6: {}
+
+ math-intrinsics@1.1.0: {}
+
+ media-typer@0.3.0: {}
+
+ meow@12.1.1: {}
+
+ merge-stream@2.0.0: {}
+
+ merge2@1.4.1: {}
+
+ micromatch@4.0.8:
+ dependencies:
+ braces: 3.0.3
+ picomatch: 2.3.1
+
+ mime-db@1.52.0: {}
+
+ mime-db@1.53.0: {}
+
+ mime-types@2.1.35:
+ dependencies:
+ mime-db: 1.52.0
+
+ mimic-fn@2.1.0: {}
+
+ mimic-fn@4.0.0: {}
+
+ minimatch@3.1.2:
+ dependencies:
+ brace-expansion: 1.1.11
+
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.1
+
+ minimist@1.2.8: {}
+
+ mkdirp@3.0.1: {}
+
+ monaco-editor@0.52.2: {}
+
+ mri@1.2.0: {}
+
+ mrmime@2.0.0: {}
+
+ ms@2.1.3: {}
+
+ mute-stream@1.0.0: {}
+
+ nanoid@3.3.8: {}
+
+ negotiator@0.6.3: {}
+
+ node-gyp-build@4.8.4: {}
+
+ node-html-parser@6.1.13:
+ dependencies:
+ css-select: 5.1.0
+ he: 1.2.0
+
+ node-releases@2.0.19: {}
+
+ normalize-path@3.0.0: {}
+
+ npm-run-path@4.0.1:
+ dependencies:
+ path-key: 3.1.1
+
+ npm-run-path@5.3.0:
+ dependencies:
+ path-key: 4.0.0
+
+ nth-check@2.1.1:
+ dependencies:
+ boolbase: 1.0.0
+
+ object-path@0.11.8: {}
+
+ on-finished@2.4.1:
+ dependencies:
+ ee-first: 1.1.1
+
+ once@1.4.0:
+ dependencies:
+ wrappy: 1.0.2
+
+ onetime@5.1.2:
+ dependencies:
+ mimic-fn: 2.1.0
+
+ onetime@6.0.0:
+ dependencies:
+ mimic-fn: 4.0.0
+
+ only@0.0.2: {}
+
+ open@9.1.0:
+ dependencies:
+ default-browser: 4.0.0
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 2.2.0
+
+ ora@5.4.1:
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.2
+ is-interactive: 1.0.0
+ is-unicode-supported: 0.1.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+
+ os-tmpdir@1.0.2: {}
+
+ outdent@0.5.0: {}
+
+ p-filter@2.1.0:
+ dependencies:
+ p-map: 2.1.0
+
+ p-limit@2.3.0:
+ dependencies:
+ p-try: 2.2.0
+
+ p-limit@4.0.0:
+ dependencies:
+ yocto-queue: 1.1.1
+
+ p-locate@4.1.0:
+ dependencies:
+ p-limit: 2.3.0
+
+ p-locate@6.0.0:
+ dependencies:
+ p-limit: 4.0.0
+
+ p-map@2.1.0: {}
+
+ p-map@4.0.0:
+ dependencies:
+ aggregate-error: 3.1.0
+
+ p-try@2.2.0: {}
+
+ package-manager-detector@0.2.8: {}
+
+ parent-module@1.0.1:
+ dependencies:
+ callsites: 3.1.0
+
+ parse-json@5.2.0:
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ error-ex: 1.3.2
+ json-parse-even-better-errors: 2.3.1
+ lines-and-columns: 1.2.4
+
+ parseurl@1.3.3: {}
+
+ path-browserify@1.0.1: {}
+
+ path-exists@4.0.0: {}
+
+ path-exists@5.0.0: {}
+
+ path-is-absolute@1.0.1: {}
+
+ path-key@3.1.1: {}
+
+ path-key@4.0.0: {}
+
+ path-parse@1.0.7: {}
+
+ path-type@4.0.0: {}
+
+ path-type@5.0.0: {}
+
+ picocolors@1.1.1: {}
+
+ picomatch@2.3.1: {}
+
+ pify@4.0.1: {}
+
+ please-upgrade-node@3.2.0:
+ dependencies:
+ semver-compare: 1.0.0
+
+ postcss@8.4.49:
+ dependencies:
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ preact-iso@2.8.1(preact-render-to-string@6.5.13(preact@10.25.4))(preact@10.25.4):
+ dependencies:
+ preact: 10.25.4
+ preact-render-to-string: 6.5.13(preact@10.25.4)
+
+ preact-render-to-string@6.5.13(preact@10.25.4):
+ dependencies:
+ preact: 10.25.4
+
+ preact@10.25.4: {}
+
+ prettier@2.8.8: {}
+
+ proxy-from-env@1.1.0: {}
+
+ pump@3.0.2:
+ dependencies:
+ end-of-stream: 1.4.4
+ once: 1.4.0
+
+ queue-microtask@1.2.3: {}
+
+ react-dom@18.3.1(react@18.3.1):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.3.1
+ scheduler: 0.23.2
+
+ react-dom@19.0.0(react@19.0.0):
+ dependencies:
+ react: 19.0.0
+ scheduler: 0.25.0
+
+ react-refresh@0.14.2: {}
+
+ react@18.3.1:
+ dependencies:
+ loose-envify: 1.4.0
+
+ react@19.0.0: {}
+
+ read-yaml-file@1.1.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ js-yaml: 3.14.1
+ pify: 4.0.1
+ strip-bom: 3.0.0
+
+ readable-stream@3.6.2:
+ dependencies:
+ inherits: 2.0.4
+ string_decoder: 1.3.0
+ util-deprecate: 1.0.2
+
+ readdirp@3.6.0:
+ dependencies:
+ picomatch: 2.3.1
+
+ regenerator-runtime@0.14.1: {}
+
+ require-directory@2.1.1: {}
+
+ require-from-string@2.0.2: {}
+
+ requires-port@1.0.0: {}
+
+ resolve-from@4.0.0: {}
+
+ resolve-from@5.0.0: {}
+
+ resolve-path@1.4.0:
+ dependencies:
+ http-errors: 1.6.3
+ path-is-absolute: 1.0.1
+
+ resolve@1.22.10:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
+ restore-cursor@3.1.0:
+ dependencies:
+ onetime: 5.1.2
+ signal-exit: 3.0.7
+
+ reusify@1.0.4: {}
+
+ rfdc@1.4.1: {}
+
+ rimraf@3.0.2:
+ dependencies:
+ glob: 7.2.3
+
+ rollup@2.77.3:
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ rollup@2.79.2:
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ run-applescript@5.0.0:
+ dependencies:
+ execa: 5.1.1
+
+ run-async@3.0.0: {}
+
+ run-parallel@1.2.0:
+ dependencies:
+ queue-microtask: 1.2.3
+
+ rxjs@7.8.1:
+ dependencies:
+ tslib: 2.8.1
+
+ safe-buffer@5.2.1: {}
+
+ safer-buffer@2.1.2: {}
+
+ scheduler@0.23.2:
+ dependencies:
+ loose-envify: 1.4.0
+
+ scheduler@0.25.0: {}
+
+ semver-compare@1.0.0: {}
+
+ semver@6.3.1: {}
+
+ semver@7.6.3: {}
+
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.6
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+
+ setprototypeof@1.1.0: {}
+
+ setprototypeof@1.2.0: {}
+
+ shebang-command@2.0.0:
+ dependencies:
+ shebang-regex: 3.0.0
+
+ shebang-regex@3.0.0: {}
+
+ signal-exit@3.0.7: {}
+
+ signal-exit@4.1.0: {}
+
+ simple-code-frame@1.3.0:
+ dependencies:
+ kolorist: 1.8.0
+
+ sirv@2.0.4:
+ dependencies:
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
+ slash@3.0.0: {}
+
+ slash@5.1.0: {}
+
+ slice-ansi@3.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ astral-regex: 2.0.0
+ is-fullwidth-code-point: 3.0.0
+
+ slice-ansi@4.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ astral-regex: 2.0.0
+ is-fullwidth-code-point: 3.0.0
+
+ source-map-js@1.2.1: {}
+
+ source-map-support@0.5.21:
+ dependencies:
+ buffer-from: 1.1.2
+ source-map: 0.6.1
+
+ source-map@0.6.1: {}
+
+ source-map@0.7.4: {}
+
+ spawndamnit@3.0.1:
+ dependencies:
+ cross-spawn: 7.0.6
+ signal-exit: 4.1.0
+
+ split2@4.2.0: {}
+
+ sprintf-js@1.0.3: {}
+
+ stack-trace@1.0.0-pre2: {}
+
+ state-local@1.0.7: {}
+
+ statuses@1.5.0: {}
+
+ string-argv@0.3.1: {}
+
+ string-width@4.2.3:
+ dependencies:
+ emoji-regex: 8.0.0
+ is-fullwidth-code-point: 3.0.0
+ strip-ansi: 6.0.1
+
+ string_decoder@1.3.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ stringify-object@3.3.0:
+ dependencies:
+ get-own-enumerable-property-symbols: 3.0.2
+ is-obj: 1.0.1
+ is-regexp: 1.0.0
+
+ strip-ansi@6.0.1:
+ dependencies:
+ ansi-regex: 5.0.1
+
+ strip-bom@3.0.0: {}
+
+ strip-final-newline@2.0.0: {}
+
+ strip-final-newline@3.0.0: {}
+
+ supports-color@7.2.0:
+ dependencies:
+ has-flag: 4.0.0
+
+ supports-preserve-symlinks-flag@1.0.0: {}
+
+ term-size@2.2.1: {}
+
+ text-extensions@2.4.0: {}
+
+ through@2.3.8: {}
+
+ tinyexec@0.3.1: {}
+
+ titleize@3.0.0: {}
+
+ tmp@0.0.33:
+ dependencies:
+ os-tmpdir: 1.0.2
+
+ to-regex-range@5.0.1:
+ dependencies:
+ is-number: 7.0.0
+
+ toidentifier@1.0.1: {}
+
+ totalist@3.0.1: {}
+
+ ts-morph@23.0.0:
+ dependencies:
+ '@ts-morph/common': 0.24.0
+ code-block-writer: 13.0.3
+
+ ts-node@9.1.1(typescript@4.9.5):
+ dependencies:
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ source-map-support: 0.5.21
+ typescript: 4.9.5
+ yn: 3.1.1
+
+ tslib@2.8.1: {}
+
+ tsscmp@1.0.6: {}
+
+ type-fest@0.21.3: {}
+
+ type-is@1.6.18:
+ dependencies:
+ media-typer: 0.3.0
+ mime-types: 2.1.35
+
+ typescript@4.9.5: {}
+
+ typescript@5.7.2: {}
+
+ ua-parser-js@1.0.40: {}
+
+ undici-types@6.20.0: {}
+
+ unicorn-magic@0.1.0: {}
+
+ universalify@0.1.2: {}
+
+ universalify@2.0.1: {}
+
+ untildify@4.0.0: {}
+
+ update-browserslist-db@1.1.1(browserslist@4.24.3):
+ dependencies:
+ browserslist: 4.24.3
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
+ utf-8-validate@6.0.5:
+ dependencies:
+ node-gyp-build: 4.8.4
+
+ util-deprecate@1.0.2: {}
+
+ vary@1.1.2: {}
+
+ vite-prerender-plugin@0.5.5:
+ dependencies:
+ magic-string: 0.30.17
+ node-html-parser: 6.1.13
+ simple-code-frame: 1.3.0
+ source-map: 0.7.4
+ stack-trace: 1.0.0-pre2
+
+ vite@2.9.18:
+ dependencies:
+ esbuild: 0.14.54
+ postcss: 8.4.49
+ resolve: 1.22.10
+ rollup: 2.77.3
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ vue-demi@0.14.10(vue@3.5.13(typescript@5.7.2)):
+ dependencies:
+ vue: 3.5.13(typescript@5.7.2)
+
+ vue@3.5.13(typescript@5.7.2):
+ dependencies:
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-sfc': 3.5.13
+ '@vue/runtime-dom': 3.5.13
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.2))
+ '@vue/shared': 3.5.13
+ optionalDependencies:
+ typescript: 5.7.2
+
+ walkdir@0.4.1: {}
+
+ wcwidth@1.0.1:
+ dependencies:
+ defaults: 1.0.4
+
+ which@2.0.2:
+ dependencies:
+ isexe: 2.0.0
+
+ wrap-ansi@6.2.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+
+ wrap-ansi@7.0.0:
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+
+ wrappy@1.0.2: {}
+
+ ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5):
+ optionalDependencies:
+ bufferutil: 4.0.8
+ utf-8-validate: 6.0.5
+
+ y18n@5.0.8: {}
+
+ yallist@3.1.1: {}
+
+ yaml@1.10.2: {}
+
+ yargs-parser@21.1.1: {}
+
+ yargs@17.7.2:
+ dependencies:
+ cliui: 8.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ string-width: 4.2.3
+ y18n: 5.0.8
+ yargs-parser: 21.1.1
+
+ ylru@1.4.0: {}
+
+ yn@3.1.1: {}
+
+ yocto-queue@1.1.1: {}
+
+ zod-validation-error@1.5.0(zod@3.24.1):
+ dependencies:
+ zod: 3.24.1
+
+ zod@3.24.1: {}
From dddd8a69fabfd0f8f1181c50d20e12f36b478245 Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Tue, 28 Jan 2025 17:11:03 +0800
Subject: [PATCH 5/6] chore(js-plugins): remove unless code
---
js-plugins/preact/.github/workflows/main.yml | 22 ------
js-plugins/preact/demo/index.html | 14 ----
js-plugins/preact/demo/package.json | 3 -
.../preact/demo/public/local-fetch-test.txt | 1 -
js-plugins/preact/demo/public/vite.svg | 1 -
js-plugins/preact/demo/src/assets/preact.svg | 1 -
.../preact/demo/src/components/Compat.tsx | 21 ------
.../preact/demo/src/components/Header.tsx | 18 -----
.../preact/demo/src/components/LocalFetch.tsx | 33 ---------
js-plugins/preact/demo/src/index.tsx | 52 --------------
.../preact/demo/src/pages/Home/index.tsx | 44 ------------
.../preact/demo/src/pages/Home/style.css | 47 -------------
js-plugins/preact/demo/src/pages/_404.tsx | 8 ---
js-plugins/preact/demo/src/style.css | 70 -------------------
js-plugins/preact/demo/tsconfig.json | 15 ----
js-plugins/preact/demo/vite.config.ts | 17 -----
16 files changed, 367 deletions(-)
delete mode 100644 js-plugins/preact/.github/workflows/main.yml
delete mode 100644 js-plugins/preact/demo/index.html
delete mode 100644 js-plugins/preact/demo/package.json
delete mode 100644 js-plugins/preact/demo/public/local-fetch-test.txt
delete mode 100644 js-plugins/preact/demo/public/vite.svg
delete mode 100644 js-plugins/preact/demo/src/assets/preact.svg
delete mode 100644 js-plugins/preact/demo/src/components/Compat.tsx
delete mode 100644 js-plugins/preact/demo/src/components/Header.tsx
delete mode 100644 js-plugins/preact/demo/src/components/LocalFetch.tsx
delete mode 100644 js-plugins/preact/demo/src/index.tsx
delete mode 100644 js-plugins/preact/demo/src/pages/Home/index.tsx
delete mode 100644 js-plugins/preact/demo/src/pages/Home/style.css
delete mode 100644 js-plugins/preact/demo/src/pages/_404.tsx
delete mode 100644 js-plugins/preact/demo/src/style.css
delete mode 100644 js-plugins/preact/demo/tsconfig.json
delete mode 100644 js-plugins/preact/demo/vite.config.ts
diff --git a/js-plugins/preact/.github/workflows/main.yml b/js-plugins/preact/.github/workflows/main.yml
deleted file mode 100644
index caca573..0000000
--- a/js-plugins/preact/.github/workflows/main.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: Main
-on:
- push:
- branches:
- - master
- pull_request:
-
-jobs:
- test:
- name: Test
- runs-on: ubuntu-latest
- timeout-minutes: 5
- steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-node@v3
- with:
- node-version-file: "package.json"
- cache: "npm"
- cache-dependency-path: "**/package-lock.json"
- - run: npm ci
- - run: npm run build
- - run: npm test
diff --git a/js-plugins/preact/demo/index.html b/js-plugins/preact/demo/index.html
deleted file mode 100644
index 3ddb76f..0000000
--- a/js-plugins/preact/demo/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
- Vite + Preact
-
-
-
-
-
-
diff --git a/js-plugins/preact/demo/package.json b/js-plugins/preact/demo/package.json
deleted file mode 100644
index bedb411..0000000
--- a/js-plugins/preact/demo/package.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "type": "module"
-}
diff --git a/js-plugins/preact/demo/public/local-fetch-test.txt b/js-plugins/preact/demo/public/local-fetch-test.txt
deleted file mode 100644
index b2c3cd2..0000000
--- a/js-plugins/preact/demo/public/local-fetch-test.txt
+++ /dev/null
@@ -1 +0,0 @@
-Local fetch works
diff --git a/js-plugins/preact/demo/public/vite.svg b/js-plugins/preact/demo/public/vite.svg
deleted file mode 100644
index e7b8dfb..0000000
--- a/js-plugins/preact/demo/public/vite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/js-plugins/preact/demo/src/assets/preact.svg b/js-plugins/preact/demo/src/assets/preact.svg
deleted file mode 100644
index 908f17d..0000000
--- a/js-plugins/preact/demo/src/assets/preact.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/js-plugins/preact/demo/src/components/Compat.tsx b/js-plugins/preact/demo/src/components/Compat.tsx
deleted file mode 100644
index 1524f42..0000000
--- a/js-plugins/preact/demo/src/components/Compat.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-// @ts-ignore
-import React, { useMemo, useState } from "react";
-
-export function ReactComponent() {
- const [v, set] = useState(0);
-
- // NOTE: To check in devtools that babel-plugin-transform-hook-names can
- // extract the variable names from typed expressions.
- const _unusedState = useState(0 as any);
- const _unusedMemo: number = useMemo(
- () => _unusedState[0],
- [_unusedState[0]],
- );
-
- return (
-
-
Counter: {v}
-
-
- );
-}
diff --git a/js-plugins/preact/demo/src/components/Header.tsx b/js-plugins/preact/demo/src/components/Header.tsx
deleted file mode 100644
index ac2dba4..0000000
--- a/js-plugins/preact/demo/src/components/Header.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { useLocation } from "preact-iso";
-
-export function Header() {
- const { url } = useLocation();
-
- return (
-
- );
-}
diff --git a/js-plugins/preact/demo/src/components/LocalFetch.tsx b/js-plugins/preact/demo/src/components/LocalFetch.tsx
deleted file mode 100644
index 6e636bc..0000000
--- a/js-plugins/preact/demo/src/components/LocalFetch.tsx
+++ /dev/null
@@ -1,33 +0,0 @@
-import { useState } from "preact/hooks";
-
-const cache = new Map();
-
-async function load(url: string) {
- const res = await fetch(url);
- if (res.ok) return await res.text();
- throw new Error(`Failed to fetch ${url}!`);
-}
-
-function useFetch(url: string) {
- const [_, update] = useState({});
-
- let data = cache.get(url);
- if (!data) {
- data = load(url);
- cache.set(url, data);
- data.then(
- (res: string) => update((data.res = res)),
- (err: Error) => update((data.err = err)),
- );
- }
-
- if (data.res) return data.res;
- if (data.err) throw data.err;
- throw data;
-}
-
-export function LocalFetch() {
- const data = useFetch("/local-fetch-test.txt");
-
- return {data.trimEnd()}
;
-}
diff --git a/js-plugins/preact/demo/src/index.tsx b/js-plugins/preact/demo/src/index.tsx
deleted file mode 100644
index 5fe93dc..0000000
--- a/js-plugins/preact/demo/src/index.tsx
+++ /dev/null
@@ -1,52 +0,0 @@
-import {
- LocationProvider,
- Router,
- Route,
- hydrate,
- prerender as ssr,
-} from "preact-iso";
-
-import { Header } from "./components/Header.js";
-import { Home } from "./pages/Home/index.js";
-import { NotFound } from "./pages/_404.js";
-import "./style.css";
-
-export function App() {
- return (
-
-
-
-
-
-
-
-
-
- );
-}
-
-if (typeof window !== "undefined") {
- hydrate(, document.getElementById("app"));
-}
-
-export async function prerender(data) {
- const { html, links } = await ssr();
- return {
- html,
- links,
- data: { url: data.url },
- head: {
- lang: "en",
- title: "Prerendered Preact App",
- elements: new Set([
- {
- type: "meta",
- props: {
- name: "description",
- content: "This is a prerendered Preact app",
- },
- },
- ]),
- },
- };
-}
diff --git a/js-plugins/preact/demo/src/pages/Home/index.tsx b/js-plugins/preact/demo/src/pages/Home/index.tsx
deleted file mode 100644
index d3de026..0000000
--- a/js-plugins/preact/demo/src/pages/Home/index.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import { ReactComponent } from "../../components/Compat";
-import { LocalFetch } from "../../components/LocalFetch";
-
-import preactLogo from "../../assets/preact.svg";
-import "./style.css";
-
-export function Home() {
- return (
-
-
-
-
-
Get Started building Vite-powered Preact Apps
-
-
-
-
- );
-}
-
-function Resource(props) {
- return (
-
- {props.title}
- {props.description}
-
- );
-}
diff --git a/js-plugins/preact/demo/src/pages/Home/style.css b/js-plugins/preact/demo/src/pages/Home/style.css
deleted file mode 100644
index f51cfc1..0000000
--- a/js-plugins/preact/demo/src/pages/Home/style.css
+++ /dev/null
@@ -1,47 +0,0 @@
-img {
- margin-bottom: 1.5rem;
-}
-
-img:hover {
- filter: drop-shadow(0 0 2em #673ab8aa);
-}
-
-.home section {
- margin-top: 5rem;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- column-gap: 1.5rem;
-}
-
-.resource {
- padding: 0.75rem 1.5rem;
- border-radius: 0.5rem;
- text-align: left;
- text-decoration: none;
- color: #222;
- background-color: #f1f1f1;
- border: 1px solid transparent;
-}
-
-.resource:hover {
- border: 1px solid #000;
- box-shadow: 0 25px 50px -12px #673ab888;
-}
-
-@media (max-width: 639px) {
- .home section {
- margin-top: 5rem;
- grid-template-columns: 1fr;
- row-gap: 1rem;
- }
-}
-
-@media (prefers-color-scheme: dark) {
- .resource {
- color: #ccc;
- background-color: #161616;
- }
- .resource:hover {
- border: 1px solid #bbb;
- }
-}
diff --git a/js-plugins/preact/demo/src/pages/_404.tsx b/js-plugins/preact/demo/src/pages/_404.tsx
deleted file mode 100644
index 36182c8..0000000
--- a/js-plugins/preact/demo/src/pages/_404.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-export function NotFound() {
- return (
-
- 404: Not Found
- It's gone :(
-
- );
-}
diff --git a/js-plugins/preact/demo/src/style.css b/js-plugins/preact/demo/src/style.css
deleted file mode 100644
index 13fd296..0000000
--- a/js-plugins/preact/demo/src/style.css
+++ /dev/null
@@ -1,70 +0,0 @@
-:root {
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
- line-height: 1.5;
- font-weight: 400;
-
- color: #222;
- background-color: #ffffff;
-
- font-synthesis: none;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- -webkit-text-size-adjust: 100%;
-}
-
-body {
- margin: 0;
-}
-
-#app {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
-}
-
-header {
- display: flex;
- justify-content: flex-end;
- background-color: #673ab8;
-}
-
-header nav {
- display: flex;
-}
-
-header a {
- color: #fff;
- padding: 0.75rem;
- text-decoration: none;
-}
-
-header a.active {
- background-color: #0005;
-}
-
-header a:hover {
- background-color: #0008;
-}
-
-main {
- flex: auto;
- display: flex;
- align-items: center;
- max-width: 1280px;
- margin: 0 auto;
- text-align: center;
-}
-
-@media (max-width: 639px) {
- main {
- margin: 2rem;
- }
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- color: #ccc;
- background-color: #1a1a1a;
- }
-}
diff --git a/js-plugins/preact/demo/tsconfig.json b/js-plugins/preact/demo/tsconfig.json
deleted file mode 100644
index a0146af..0000000
--- a/js-plugins/preact/demo/tsconfig.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "compilerOptions": {
- "target": "ES2020",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "noEmit": true,
- "allowJs": true,
- "checkJs": true,
-
- /* Preact Config */
- "jsx": "react-jsx",
- "jsxImportSource": "preact"
- },
- "include": ["node_modules/vite/client.d.ts", "**/*"]
-}
diff --git a/js-plugins/preact/demo/vite.config.ts b/js-plugins/preact/demo/vite.config.ts
deleted file mode 100644
index 0743f42..0000000
--- a/js-plugins/preact/demo/vite.config.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { defineConfig } from "vite";
-import preact from "../src/index";
-
-// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [
- preact({
- prerender: {
- enabled: true,
- renderTarget: "#app",
- additionalPrerenderRoutes: ["/404"],
- previewMiddlewareEnabled: true,
- previewMiddlewareFallback: "/404",
- },
- }),
- ],
-});
From f45cd5f64c7b36a0391ea10ddcf1a2c045754abb Mon Sep 17 00:00:00 2001
From: erkelost <1256029807@qq.com>
Date: Wed, 29 Jan 2025 20:06:10 +0800
Subject: [PATCH 6/6] chore(js-plugins): update example build preact scripts
---
.../playground => examples/preact}/.gitignore | 0
.../preact}/farm.config.ts | 0
.../playground => examples/preact}/index.html | 0
examples/preact/package.json | 21 +
.../preact}/public/vite.svg | 0
.../preact}/src/app.css | 0
.../preact}/src/app.tsx | 0
.../preact}/src/assets/preact.svg | 0
.../preact}/src/index.css | 0
.../preact}/src/main.tsx | 0
.../preact}/src/vite-env.d.ts | 0
.../preact}/tsconfig.app.json | 0
.../preact}/tsconfig.json | 0
.../preact}/tsconfig.node.json | 0
.../preact}/vite.config.ts | 2 +-
js-plugins/preact/farm.config.ts | 36 ++
js-plugins/preact/package.json | 16 +-
js-plugins/preact/playground/package.json | 21 -
js-plugins/preact/src/index.ts | 30 +-
js-plugins/preact/tools/postbuild.mjs | 24 -
pnpm-lock.yaml | 572 +++++++++++++++++-
21 files changed, 641 insertions(+), 81 deletions(-)
rename {js-plugins/preact/playground => examples/preact}/.gitignore (100%)
rename {js-plugins/preact/playground => examples/preact}/farm.config.ts (100%)
rename {js-plugins/preact/playground => examples/preact}/index.html (100%)
create mode 100644 examples/preact/package.json
rename {js-plugins/preact/playground => examples/preact}/public/vite.svg (100%)
rename {js-plugins/preact/playground => examples/preact}/src/app.css (100%)
rename {js-plugins/preact/playground => examples/preact}/src/app.tsx (100%)
rename {js-plugins/preact/playground => examples/preact}/src/assets/preact.svg (100%)
rename {js-plugins/preact/playground => examples/preact}/src/index.css (100%)
rename {js-plugins/preact/playground => examples/preact}/src/main.tsx (100%)
rename {js-plugins/preact/playground => examples/preact}/src/vite-env.d.ts (100%)
rename {js-plugins/preact/playground => examples/preact}/tsconfig.app.json (100%)
rename {js-plugins/preact/playground => examples/preact}/tsconfig.json (100%)
rename {js-plugins/preact/playground => examples/preact}/tsconfig.node.json (100%)
rename {js-plugins/preact/playground => examples/preact}/vite.config.ts (72%)
create mode 100644 js-plugins/preact/farm.config.ts
delete mode 100644 js-plugins/preact/playground/package.json
delete mode 100644 js-plugins/preact/tools/postbuild.mjs
diff --git a/js-plugins/preact/playground/.gitignore b/examples/preact/.gitignore
similarity index 100%
rename from js-plugins/preact/playground/.gitignore
rename to examples/preact/.gitignore
diff --git a/js-plugins/preact/playground/farm.config.ts b/examples/preact/farm.config.ts
similarity index 100%
rename from js-plugins/preact/playground/farm.config.ts
rename to examples/preact/farm.config.ts
diff --git a/js-plugins/preact/playground/index.html b/examples/preact/index.html
similarity index 100%
rename from js-plugins/preact/playground/index.html
rename to examples/preact/index.html
diff --git a/examples/preact/package.json b/examples/preact/package.json
new file mode 100644
index 0000000..2743b36
--- /dev/null
+++ b/examples/preact/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "preact-playground",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite dev",
+ "build": "tsc -b && vite build",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "preact": "^10.25.3"
+ },
+ "devDependencies": {
+ "@farmfe/js-plugin-preact": "workspace:*",
+ "typescript": "~5.6.2",
+ "vite": "^6.0.5",
+ "@farmfe/core": "/Users/adny/rust/farm/packages/core",
+ "@farmfe/cli": "/Users/adny/rust/farm/packages/cli"
+ }
+}
diff --git a/js-plugins/preact/playground/public/vite.svg b/examples/preact/public/vite.svg
similarity index 100%
rename from js-plugins/preact/playground/public/vite.svg
rename to examples/preact/public/vite.svg
diff --git a/js-plugins/preact/playground/src/app.css b/examples/preact/src/app.css
similarity index 100%
rename from js-plugins/preact/playground/src/app.css
rename to examples/preact/src/app.css
diff --git a/js-plugins/preact/playground/src/app.tsx b/examples/preact/src/app.tsx
similarity index 100%
rename from js-plugins/preact/playground/src/app.tsx
rename to examples/preact/src/app.tsx
diff --git a/js-plugins/preact/playground/src/assets/preact.svg b/examples/preact/src/assets/preact.svg
similarity index 100%
rename from js-plugins/preact/playground/src/assets/preact.svg
rename to examples/preact/src/assets/preact.svg
diff --git a/js-plugins/preact/playground/src/index.css b/examples/preact/src/index.css
similarity index 100%
rename from js-plugins/preact/playground/src/index.css
rename to examples/preact/src/index.css
diff --git a/js-plugins/preact/playground/src/main.tsx b/examples/preact/src/main.tsx
similarity index 100%
rename from js-plugins/preact/playground/src/main.tsx
rename to examples/preact/src/main.tsx
diff --git a/js-plugins/preact/playground/src/vite-env.d.ts b/examples/preact/src/vite-env.d.ts
similarity index 100%
rename from js-plugins/preact/playground/src/vite-env.d.ts
rename to examples/preact/src/vite-env.d.ts
diff --git a/js-plugins/preact/playground/tsconfig.app.json b/examples/preact/tsconfig.app.json
similarity index 100%
rename from js-plugins/preact/playground/tsconfig.app.json
rename to examples/preact/tsconfig.app.json
diff --git a/js-plugins/preact/playground/tsconfig.json b/examples/preact/tsconfig.json
similarity index 100%
rename from js-plugins/preact/playground/tsconfig.json
rename to examples/preact/tsconfig.json
diff --git a/js-plugins/preact/playground/tsconfig.node.json b/examples/preact/tsconfig.node.json
similarity index 100%
rename from js-plugins/preact/playground/tsconfig.node.json
rename to examples/preact/tsconfig.node.json
diff --git a/js-plugins/preact/playground/vite.config.ts b/examples/preact/vite.config.ts
similarity index 72%
rename from js-plugins/preact/playground/vite.config.ts
rename to examples/preact/vite.config.ts
index b995c32..f756f8c 100644
--- a/js-plugins/preact/playground/vite.config.ts
+++ b/examples/preact/vite.config.ts
@@ -1,5 +1,5 @@
import { defineConfig } from 'vite'
-import preact from '@preact/preset-vite'
+import preact from '@farmfe/js-plugin-preact'
// https://vite.dev/config/
export default defineConfig({
diff --git a/js-plugins/preact/farm.config.ts b/js-plugins/preact/farm.config.ts
new file mode 100644
index 0000000..bf29798
--- /dev/null
+++ b/js-plugins/preact/farm.config.ts
@@ -0,0 +1,36 @@
+import { defineConfig } from '@farmfe/core';
+
+const format = (process.env.FARM_FORMAT as 'esm' | 'cjs') || 'esm';
+const ext = format === 'esm' ? 'mjs' : 'cjs';
+
+export default defineConfig({
+ watch: true,
+ compilation: {
+ external: ["@farmfe/core", "@babel/core", "vite"],
+ input: {
+ index: './src/index.ts'
+ },
+ output: {
+ path: `dist/${format}`,
+ entryFilename: `[entryName].${ext}`,
+ targetEnv: 'node',
+ format
+ },
+ partialBundling: {
+ enforceResources: [
+ {
+ name: 'index',
+ test: ['.+']
+ }
+ ]
+ },
+ minify: false,
+ sourcemap: false,
+ presetEnv: false,
+ persistentCache: {
+ envs: {
+ FARM_FORMAT: format
+ }
+ }
+ },
+});
diff --git a/js-plugins/preact/package.json b/js-plugins/preact/package.json
index e8172bc..10a41e3 100644
--- a/js-plugins/preact/package.json
+++ b/js-plugins/preact/package.json
@@ -1,5 +1,5 @@
{
- "name": "@farmfe/js-plugins-preact",
+ "name": "@farmfe/js-plugin-preact",
"version": "0.0.1",
"description": "Preact preset for the farm bundler",
"main": "./dist/cjs/index.js",
@@ -13,11 +13,10 @@
},
"types": "dist/cjs/index.d.ts",
"scripts": {
- "dev": "farm dev",
- "dev:build": "farm build demo",
- "dev:preview": "farm preview demo",
- "build": "rimraf dist && tsc && tsc -p tsconfig.cjs.json && node tools/postbuild.mjs",
- "test": "rimraf demo/node_modules && node --test test",
+ "build:cjs": "cross-env FARM_FORMAT=cjs farm build",
+ "build": "farm build && npm run build:cjs",
+ "start": "farm watch",
+ "dev": "farm build",
"prepublishOnly": "npm run build"
},
"keywords": [
@@ -48,9 +47,10 @@
"@babel/core": "7.x"
},
"devDependencies": {
- "@farmfe/core": "/Users/adny/rust/farm/packages/core",
- "@farmfe/cli": "/Users/adny/rust/farm/packages/cli",
"@babel/core": "^7.15.8",
+ "@babel/parser": "^7.26.7",
+ "@farmfe/cli": "/Users/adny/rust/farm/packages/cli",
+ "@farmfe/core": "/Users/adny/rust/farm/packages/core",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__core": "^7.1.14",
"@types/debug": "^4.1.5",
diff --git a/js-plugins/preact/playground/package.json b/js-plugins/preact/playground/package.json
deleted file mode 100644
index 89457f2..0000000
--- a/js-plugins/preact/playground/package.json
+++ /dev/null
@@ -1,21 +0,0 @@
-{
- "name": "preact",
- "private": true,
- "version": "0.0.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "tsc -b && vite build",
- "preview": "vite preview"
- },
- "dependencies": {
- "preact": "^10.25.3"
- },
- "devDependencies": {
- "@preact/preset-vite": "^2.9.3",
- "typescript": "~5.6.2",
- "vite": "^6.0.5",
- "@farmfe/core": "/Users/adny/rust/farm/packages/core",
- "@farmfe/cli": "/Users/adny/rust/farm/packages/cli"
- }
-}
diff --git a/js-plugins/preact/src/index.ts b/js-plugins/preact/src/index.ts
index 2f3cea1..912970f 100644
--- a/js-plugins/preact/src/index.ts
+++ b/js-plugins/preact/src/index.ts
@@ -128,12 +128,14 @@ function preactPlugin({
];
let config: ResolvedConfig;
- let babelOptions = {
+ const babelOptions = {
babelrc: false,
configFile: false,
...babel,
} as PreactBabelOptions;
+ console.log(babelOptions);
+
babelOptions.plugins ||= [];
babelOptions.presets ||= [];
babelOptions.overrides ||= [];
@@ -264,21 +266,21 @@ function preactPlugin({
return [
...(reactAliasesEnabled
? [
- {
- name: "preact:config",
- config() {
- return {
- resolve: {
- alias: {
- "react-dom/test-utils": "preact/test-utils",
- "react-dom": "preact/compat",
- react: "preact/compat",
- },
+ {
+ name: "preact:config",
+ config() {
+ return {
+ resolve: {
+ alias: {
+ "react-dom/test-utils": "preact/test-utils",
+ "react-dom": "preact/compat",
+ react: "preact/compat",
},
- };
- },
+ },
+ };
},
- ]
+ },
+ ]
: []),
jsxPlugin,
preactDevtoolsPlugin({
diff --git a/js-plugins/preact/tools/postbuild.mjs b/js-plugins/preact/tools/postbuild.mjs
deleted file mode 100644
index ca5120c..0000000
--- a/js-plugins/preact/tools/postbuild.mjs
+++ /dev/null
@@ -1,24 +0,0 @@
-import fs from "fs";
-import path from "path";
-import { fileURLToPath } from "url";
-
-// Note: Once TypeScript 4.5 is out of beta we can drop the whole script.
-const __dirname = path.dirname(fileURLToPath(import.meta.url));
-
-const dir = path.join(__dirname, "..", "dist", "esm");
-
-for (const file of fs.readdirSync(dir)) {
- const ext = file.endsWith(".d.ts") ? ".mts" : ".mjs";
- const target = path.join(dir, path.basename(file, path.extname(file)) + ext);
-
- fs.renameSync(path.join(dir, file), target);
-
- const source = fs.readFileSync(target, "utf-8");
- const code = source.replace(
- /(\w+)\.js(["'])/g,
- (_, spec, quot) => `${spec}.mjs${quot}`,
- );
- if (code !== source) {
- fs.writeFileSync(target, code);
- }
-}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3a396e5..90c9cb5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -101,6 +101,28 @@ importers:
specifier: ^0.14.0
version: 0.14.2
+ examples/preact:
+ dependencies:
+ preact:
+ specifier: ^10.25.3
+ version: 10.25.4
+ devDependencies:
+ '@farmfe/cli':
+ specifier: /Users/adny/rust/farm/packages/cli
+ version: link:../../../farm/packages/cli
+ '@farmfe/core':
+ specifier: /Users/adny/rust/farm/packages/core
+ version: link:../../../farm/packages/core
+ '@farmfe/js-plugin-preact':
+ specifier: workspace:*
+ version: link:../../js-plugins/preact
+ typescript:
+ specifier: ~5.6.2
+ version: 5.6.3
+ vite:
+ specifier: ^6.0.5
+ version: 6.0.11(@types/node@22.10.2)(jiti@2.4.2)
+
js-plugins/babel:
dependencies:
'@babel/core':
@@ -187,6 +209,9 @@ importers:
'@babel/core':
specifier: ^7.15.8
version: 7.26.0
+ '@babel/parser':
+ specifier: ^7.26.7
+ version: 7.26.7
'@farmfe/cli':
specifier: /Users/adny/rust/farm/packages/cli
version: link:../../../farm/packages/cli
@@ -414,8 +439,8 @@ packages:
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.3':
- resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
+ '@babel/parser@7.26.7':
+ resolution: {integrity: sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -453,6 +478,10 @@ packages:
resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.26.7':
+ resolution: {integrity: sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==}
+ engines: {node: '>=6.9.0'}
+
'@changesets/apply-release-plan@7.0.7':
resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
@@ -577,12 +606,162 @@ packages:
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
+ '@esbuild/aix-ppc64@0.24.2':
+ resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/android-arm64@0.24.2':
+ resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm@0.24.2':
+ resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-x64@0.24.2':
+ resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/darwin-arm64@0.24.2':
+ resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.24.2':
+ resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/freebsd-arm64@0.24.2':
+ resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.24.2':
+ resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/linux-arm64@0.24.2':
+ resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.24.2':
+ resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.24.2':
+ resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.14.54':
resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.24.2':
+ resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.24.2':
+ resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.24.2':
+ resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.24.2':
+ resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.24.2':
+ resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.24.2':
+ resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.24.2':
+ resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.24.2':
+ resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/sunos-x64@0.24.2':
+ resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/win32-arm64@0.24.2':
+ resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.24.2':
+ resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.24.2':
+ resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@farmfe/cli@1.0.4':
resolution: {integrity: sha512-bau/2P7DylHUDksUvbvJod/Ew4dl5ZICYVgTNn0EfrJM/ZuwLaV8LjmPo0pM4y1QOZmg/N3B9DwkXO89DrutYQ==}
engines: {node: '>= 16'}
@@ -824,6 +1003,111 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
+ '@rollup/rollup-android-arm-eabi@4.32.1':
+ resolution: {integrity: sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.32.1':
+ resolution: {integrity: sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.32.1':
+ resolution: {integrity: sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.32.1':
+ resolution: {integrity: sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.32.1':
+ resolution: {integrity: sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.32.1':
+ resolution: {integrity: sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
+ resolution: {integrity: sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.32.1':
+ resolution: {integrity: sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==}
+ cpu: [arm]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-arm64-gnu@4.32.1':
+ resolution: {integrity: sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-arm64-musl@4.32.1':
+ resolution: {integrity: sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
+ resolution: {integrity: sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==}
+ cpu: [loong64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
+ resolution: {integrity: sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.32.1':
+ resolution: {integrity: sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-s390x-gnu@4.32.1':
+ resolution: {integrity: sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-x64-gnu@4.32.1':
+ resolution: {integrity: sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@rollup/rollup-linux-x64-musl@4.32.1':
+ resolution: {integrity: sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@rollup/rollup-win32-arm64-msvc@4.32.1':
+ resolution: {integrity: sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.32.1':
+ resolution: {integrity: sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.32.1':
+ resolution: {integrity: sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==}
+ cpu: [x64]
+ os: [win32]
+
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -858,6 +1142,9 @@ packages:
'@types/estree@0.0.50':
resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
'@types/fs-extra@11.0.4':
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
@@ -1538,6 +1825,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.24.2:
+ resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -2507,6 +2799,11 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
+ rollup@4.32.1:
+ resolution: {integrity: sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
run-applescript@5.0.0:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
@@ -2732,6 +3029,11 @@ packages:
engines: {node: '>=4.2.0'}
hasBin: true
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
typescript@5.7.2:
resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
@@ -2796,6 +3098,46 @@ packages:
stylus:
optional: true
+ vite@6.0.11:
+ resolution: {integrity: sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vue-demi@0.14.10:
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
engines: {node: '>=12'}
@@ -2925,7 +3267,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/template': 7.25.9
'@babel/traverse': 7.26.4
'@babel/types': 7.26.3
@@ -2939,7 +3281,7 @@ snapshots:
'@babel/generator@7.26.3':
dependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/types': 7.26.3
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
@@ -2986,9 +3328,9 @@ snapshots:
'@babel/template': 7.25.9
'@babel/types': 7.26.3
- '@babel/parser@7.26.3':
+ '@babel/parser@7.26.7':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.7
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -3020,14 +3362,14 @@ snapshots:
'@babel/template@7.25.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/types': 7.26.3
'@babel/traverse@7.26.4':
dependencies:
'@babel/code-frame': 7.26.2
'@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/template': 7.25.9
'@babel/types': 7.26.3
debug: 4.4.0
@@ -3040,6 +3382,11 @@ snapshots:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
+ '@babel/types@7.26.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
'@changesets/apply-release-plan@7.0.7':
dependencies:
'@changesets/config': 3.0.5
@@ -3289,9 +3636,84 @@ snapshots:
'@ctrl/tinycolor@3.6.1': {}
+ '@esbuild/aix-ppc64@0.24.2':
+ optional: true
+
+ '@esbuild/android-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/android-arm@0.24.2':
+ optional: true
+
+ '@esbuild/android-x64@0.24.2':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/darwin-x64@0.24.2':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.24.2':
+ optional: true
+
+ '@esbuild/linux-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/linux-arm@0.24.2':
+ optional: true
+
+ '@esbuild/linux-ia32@0.24.2':
+ optional: true
+
'@esbuild/linux-loong64@0.14.54':
optional: true
+ '@esbuild/linux-loong64@0.24.2':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.24.2':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.24.2':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.24.2':
+ optional: true
+
+ '@esbuild/linux-s390x@0.24.2':
+ optional: true
+
+ '@esbuild/linux-x64@0.24.2':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.24.2':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.24.2':
+ optional: true
+
+ '@esbuild/sunos-x64@0.24.2':
+ optional: true
+
+ '@esbuild/win32-arm64@0.24.2':
+ optional: true
+
+ '@esbuild/win32-ia32@0.24.2':
+ optional: true
+
+ '@esbuild/win32-x64@0.24.2':
+ optional: true
+
'@farmfe/cli@1.0.4':
dependencies:
cac: 6.7.14
@@ -3376,7 +3798,7 @@ snapshots:
fast-glob: 3.3.2
fs-extra: 11.2.0
ts-morph: 23.0.0
- typescript: 5.7.2
+ typescript: 5.6.3
'@farmfe/js-plugin-visualizer@1.1.4(monaco-editor@0.52.2)(vue@3.5.13(typescript@5.7.2))':
dependencies:
@@ -3553,6 +3975,63 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
+ '@rollup/rollup-android-arm-eabi@4.32.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.32.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.32.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.32.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.32.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.32.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.32.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.32.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.32.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.32.1':
+ optional: true
+
'@sindresorhus/merge-streams@2.3.0': {}
'@swc/helpers@0.5.15':
@@ -3570,7 +4049,7 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/types': 7.26.3
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
@@ -3582,7 +4061,7 @@ snapshots:
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@babel/types': 7.26.3
'@types/babel__traverse@7.20.6':
@@ -3599,6 +4078,8 @@ snapshots:
'@types/estree@0.0.50': {}
+ '@types/estree@1.0.6': {}
+
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
@@ -3657,7 +4138,7 @@ snapshots:
'@vue/compiler-core@3.5.13':
dependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
@@ -3670,7 +4151,7 @@ snapshots:
'@vue/compiler-sfc@3.5.13':
dependencies:
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.7
'@vue/compiler-core': 3.5.13
'@vue/compiler-dom': 3.5.13
'@vue/compiler-ssr': 3.5.13
@@ -4232,6 +4713,34 @@ snapshots:
esbuild-windows-64: 0.14.54
esbuild-windows-arm64: 0.14.54
+ esbuild@0.24.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.2
+ '@esbuild/android-arm': 0.24.2
+ '@esbuild/android-arm64': 0.24.2
+ '@esbuild/android-x64': 0.24.2
+ '@esbuild/darwin-arm64': 0.24.2
+ '@esbuild/darwin-x64': 0.24.2
+ '@esbuild/freebsd-arm64': 0.24.2
+ '@esbuild/freebsd-x64': 0.24.2
+ '@esbuild/linux-arm': 0.24.2
+ '@esbuild/linux-arm64': 0.24.2
+ '@esbuild/linux-ia32': 0.24.2
+ '@esbuild/linux-loong64': 0.24.2
+ '@esbuild/linux-mips64el': 0.24.2
+ '@esbuild/linux-ppc64': 0.24.2
+ '@esbuild/linux-riscv64': 0.24.2
+ '@esbuild/linux-s390x': 0.24.2
+ '@esbuild/linux-x64': 0.24.2
+ '@esbuild/netbsd-arm64': 0.24.2
+ '@esbuild/netbsd-x64': 0.24.2
+ '@esbuild/openbsd-arm64': 0.24.2
+ '@esbuild/openbsd-x64': 0.24.2
+ '@esbuild/sunos-x64': 0.24.2
+ '@esbuild/win32-arm64': 0.24.2
+ '@esbuild/win32-ia32': 0.24.2
+ '@esbuild/win32-x64': 0.24.2
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -5163,6 +5672,31 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ rollup@4.32.1:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.32.1
+ '@rollup/rollup-android-arm64': 4.32.1
+ '@rollup/rollup-darwin-arm64': 4.32.1
+ '@rollup/rollup-darwin-x64': 4.32.1
+ '@rollup/rollup-freebsd-arm64': 4.32.1
+ '@rollup/rollup-freebsd-x64': 4.32.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.32.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.32.1
+ '@rollup/rollup-linux-arm64-gnu': 4.32.1
+ '@rollup/rollup-linux-arm64-musl': 4.32.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.32.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.32.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.32.1
+ '@rollup/rollup-linux-s390x-gnu': 4.32.1
+ '@rollup/rollup-linux-x64-gnu': 4.32.1
+ '@rollup/rollup-linux-x64-musl': 4.32.1
+ '@rollup/rollup-win32-arm64-msvc': 4.32.1
+ '@rollup/rollup-win32-ia32-msvc': 4.32.1
+ '@rollup/rollup-win32-x64-msvc': 4.32.1
+ fsevents: 2.3.3
+
run-applescript@5.0.0:
dependencies:
execa: 5.1.1
@@ -5352,6 +5886,8 @@ snapshots:
typescript@4.9.5: {}
+ typescript@5.6.3: {}
+
typescript@5.7.2: {}
ua-parser-js@1.0.40: {}
@@ -5397,6 +5933,16 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ vite@6.0.11(@types/node@22.10.2)(jiti@2.4.2):
+ dependencies:
+ esbuild: 0.24.2
+ postcss: 8.4.49
+ rollup: 4.32.1
+ optionalDependencies:
+ '@types/node': 22.10.2
+ fsevents: 2.3.3
+ jiti: 2.4.2
+
vue-demi@0.14.10(vue@3.5.13(typescript@5.7.2)):
dependencies:
vue: 3.5.13(typescript@5.7.2)