From 7d29779a1fd9ad1943d0dff0db43fdacef70e1b4 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Wed, 25 Feb 2026 19:11:30 +0900 Subject: [PATCH] Initial commit after re-install --- .env | 6 + .env.example | 6 + .gitignore | 5 + README.md | 35 + client/.gitignore | 24 + client/README.md | 73 + client/eslint.config.js | 23 + client/index.html | 13 + client/package-lock.json | 3188 +++++++++++++++++++++ client/package.json | 30 + client/public/vite.svg | 1 + client/run.sh | 7 + client/src/App.css | 220 ++ client/src/App.tsx | 331 +++ client/src/assets/react.svg | 1 + client/src/components/AnswerPanel.tsx | 22 + client/src/components/MeetingList.tsx | 60 + client/src/components/TranscriptPanel.tsx | 32 + client/src/index.css | 24 + client/src/lib/api.ts | 100 + client/src/main.tsx | 10 + client/src/types/speech.d.ts | 25 + client/tsconfig.app.json | 28 + client/tsconfig.json | 7 + client/tsconfig.node.json | 26 + client/vite.config.ts | 13 + server/package-lock.json | 1738 +++++++++++ server/package.json | 32 + server/run.sh | 18 + server/src/db.ts | 21 + server/src/index.ts | 51 + server/src/llm.ts | 102 + server/src/migrate.ts | 49 + server/src/routes/answerSuggestions.ts | 23 + server/src/routes/meetings.ts | 146 + server/tsconfig.json | 15 + 기획.pptx | Bin 0 -> 44162 bytes 37 files changed, 6505 insertions(+) create mode 100644 .env create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 README.md create mode 100644 client/.gitignore create mode 100644 client/README.md create mode 100644 client/eslint.config.js create mode 100644 client/index.html create mode 100644 client/package-lock.json create mode 100644 client/package.json create mode 100644 client/public/vite.svg create mode 100755 client/run.sh create mode 100644 client/src/App.css create mode 100644 client/src/App.tsx create mode 100644 client/src/assets/react.svg create mode 100644 client/src/components/AnswerPanel.tsx create mode 100644 client/src/components/MeetingList.tsx create mode 100644 client/src/components/TranscriptPanel.tsx create mode 100644 client/src/index.css create mode 100644 client/src/lib/api.ts create mode 100644 client/src/main.tsx create mode 100644 client/src/types/speech.d.ts create mode 100644 client/tsconfig.app.json create mode 100644 client/tsconfig.json create mode 100644 client/tsconfig.node.json create mode 100644 client/vite.config.ts create mode 100644 server/package-lock.json create mode 100644 server/package.json create mode 100755 server/run.sh create mode 100644 server/src/db.ts create mode 100644 server/src/index.ts create mode 100644 server/src/llm.ts create mode 100644 server/src/migrate.ts create mode 100644 server/src/routes/answerSuggestions.ts create mode 100644 server/src/routes/meetings.ts create mode 100644 server/tsconfig.json create mode 100644 기획.pptx diff --git a/.env b/.env new file mode 100644 index 0000000..cea1e1b --- /dev/null +++ b/.env @@ -0,0 +1,6 @@ +DB_HOST=ncue.net +DB_PORT=5432 +DB_NAME=meeting_ai +DB_USER=ncue +DB_PASSWORD=ncue5004! +OPENAI_API_KEY="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" \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..52cae83 --- /dev/null +++ b/.env.example @@ -0,0 +1,6 @@ +DB_HOST=ncue.net +DB_PORT=5432 +DB_NAME=meeting_ai +DB_USER= +DB_PASSWORD= +OPENAI_API_KEY= \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39bae81 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.DS_Store +node_modules/ +dist/ +coverage/ +*.log diff --git a/README.md b/README.md new file mode 100644 index 0000000..cf970e3 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# meeting-ai MVP + +## 실행 방법 + +### 1) 환경 변수 설정 +`.env.example`을 복사해 `.env`로 만들고 값을 채워주세요. + +``` +DB_HOST=ncue.net +DB_PORT=5432 +DB_NAME=meeting_ai +DB_USER=... +DB_PASSWORD=... +OPENAI_API_KEY= (optional) +``` + +### 2) 서버 실행 +``` +cd server +npm install +npm run dev +``` + +### 3) 클라이언트 실행 +``` +cd client +npm install +npm run dev +``` + +브라우저에서 `http://localhost:5170` 접속. + +## 참고 +- Web Speech API는 Chrome에서 가장 안정적으로 동작합니다. +- `OPENAI_API_KEY`가 없으면 서버는 룰 기반으로 답변 후보 5개를 생성합니다. diff --git a/client/.gitignore b/client/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/client/.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/client/README.md b/client/README.md new file mode 100644 index 0000000..d2e7761 --- /dev/null +++ b/client/README.md @@ -0,0 +1,73 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## React Compiler + +The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: + +```js +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + + // Remove tseslint.configs.recommended and replace with this + tseslint.configs.recommendedTypeChecked, + // Alternatively, use this for stricter rules + tseslint.configs.strictTypeChecked, + // Optionally, add this for stylistic rules + tseslint.configs.stylisticTypeChecked, + + // Other configs... + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` + +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: + +```js +// eslint.config.js +import reactX from 'eslint-plugin-react-x' +import reactDom from 'eslint-plugin-react-dom' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + // Other configs... + // Enable lint rules for React + reactX.configs['recommended-typescript'], + // Enable lint rules for React DOM + reactDom.configs.recommended, + ], + languageOptions: { + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + // other options... + }, + }, +]) +``` diff --git a/client/eslint.config.js b/client/eslint.config.js new file mode 100644 index 0000000..5e6b472 --- /dev/null +++ b/client/eslint.config.js @@ -0,0 +1,23 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs.flat.recommended, + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..a16cb6b --- /dev/null +++ b/client/index.html @@ -0,0 +1,13 @@ + + + + + + + client + + +
+ + + diff --git a/client/package-lock.json b/client/package-lock.json new file mode 100644 index 0000000..1f7c378 --- /dev/null +++ b/client/package-lock.json @@ -0,0 +1,3188 @@ +{ + "name": "client", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "client", + "version": "0.0.0", + "dependencies": { + "react": "^19.2.0", + "react-dom": "^19.2.0" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@types/node": "^24.10.1", + "@types/react": "^19.2.5", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^4.3.2", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.4", + "vite": "^5.4.10" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz", + "integrity": "sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.6.tgz", + "integrity": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.6.tgz", + "integrity": "sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/generator": "^7.28.6", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helpers": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.6.tgz", + "integrity": "sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz", + "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.6.tgz", + "integrity": "sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.6" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", + "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.6.tgz", + "integrity": "sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/generator": "^7.28.6", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.6", + "@babel/template": "^7.28.6", + "@babel/types": "^7.28.6", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.6.tgz", + "integrity": "sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.2.tgz", + "integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.56.0.tgz", + "integrity": "sha512-LNKIPA5k8PF1+jAFomGe3qN3bbIgJe/IlpDBwuVjrDKrJhVWywgnJvflMt/zkbVNLFtF1+94SljYQS6e99klnw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.56.0.tgz", + "integrity": "sha512-lfbVUbelYqXlYiU/HApNMJzT1E87UPGvzveGg2h0ktUNlOCxKlWuJ9jtfvs1sKHdwU4fzY7Pl8sAl49/XaEk6Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.56.0.tgz", + "integrity": "sha512-EgxD1ocWfhoD6xSOeEEwyE7tDvwTgZc8Bss7wCWe+uc7wO8G34HHCUH+Q6cHqJubxIAnQzAsyUsClt0yFLu06w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.56.0.tgz", + "integrity": "sha512-1vXe1vcMOssb/hOF8iv52A7feWW2xnu+c8BV4t1F//m9QVLTfNVpEdja5ia762j/UEJe2Z1jAmEqZAK42tVW3g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.56.0.tgz", + "integrity": "sha512-bof7fbIlvqsyv/DtaXSck4VYQ9lPtoWNFCB/JY4snlFuJREXfZnm+Ej6yaCHfQvofJDXLDMTVxWscVSuQvVWUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.56.0.tgz", + "integrity": "sha512-KNa6lYHloW+7lTEkYGa37fpvPq+NKG/EHKM8+G/g9WDU7ls4sMqbVRV78J6LdNuVaeeK5WB9/9VAFbKxcbXKYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.56.0.tgz", + "integrity": "sha512-E8jKK87uOvLrrLN28jnAAAChNq5LeCd2mGgZF+fGF5D507WlG/Noct3lP/QzQ6MrqJ5BCKNwI9ipADB6jyiq2A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.56.0.tgz", + "integrity": "sha512-jQosa5FMYF5Z6prEpTCCmzCXz6eKr/tCBssSmQGEeozA9tkRUty/5Vx06ibaOP9RCrW1Pvb8yp3gvZhHwTDsJw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.56.0.tgz", + "integrity": "sha512-uQVoKkrC1KGEV6udrdVahASIsaF8h7iLG0U0W+Xn14ucFwi6uS539PsAr24IEF9/FoDtzMeeJXJIBo5RkbNWvQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.56.0.tgz", + "integrity": "sha512-vLZ1yJKLxhQLFKTs42RwTwa6zkGln+bnXc8ueFGMYmBTLfNu58sl5/eXyxRa2RarTkJbXl8TKPgfS6V5ijNqEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.56.0.tgz", + "integrity": "sha512-FWfHOCub564kSE3xJQLLIC/hbKqHSVxy8vY75/YHHzWvbJL7aYJkdgwD/xGfUlL5UV2SB7otapLrcCj2xnF1dg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.56.0.tgz", + "integrity": "sha512-z1EkujxIh7nbrKL1lmIpqFTc/sr0u8Uk0zK/qIEFldbt6EDKWFk/pxFq3gYj4Bjn3aa9eEhYRlL3H8ZbPT1xvA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.56.0.tgz", + "integrity": "sha512-iNFTluqgdoQC7AIE8Q34R3AuPrJGJirj5wMUErxj22deOcY7XwZRaqYmB6ZKFHoVGqRcRd0mqO+845jAibKCkw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.56.0.tgz", + "integrity": "sha512-MtMeFVlD2LIKjp2sE2xM2slq3Zxf9zwVuw0jemsxvh1QOpHSsSzfNOTH9uYW9i1MXFxUSMmLpeVeUzoNOKBaWg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.56.0.tgz", + "integrity": "sha512-in+v6wiHdzzVhYKXIk5U74dEZHdKN9KH0Q4ANHOTvyXPG41bajYRsy7a8TPKbYPl34hU7PP7hMVHRvv/5aCSew==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.56.0.tgz", + "integrity": "sha512-yni2raKHB8m9NQpI9fPVwN754mn6dHQSbDTwxdr9SE0ks38DTjLMMBjrwvB5+mXrX+C0npX0CVeCUcvvvD8CNQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.56.0.tgz", + "integrity": "sha512-zhLLJx9nQPu7wezbxt2ut+CI4YlXi68ndEve16tPc/iwoylWS9B3FxpLS2PkmfYgDQtosah07Mj9E0khc3Y+vQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.56.0.tgz", + "integrity": "sha512-MVC6UDp16ZSH7x4rtuJPAEoE1RwS8N4oK9DLHy3FTEdFoUTCFVzMfJl/BVJ330C+hx8FfprA5Wqx4FhZXkj2Kw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.56.0.tgz", + "integrity": "sha512-ZhGH1eA4Qv0lxaV00azCIS1ChedK0V32952Md3FtnxSqZTBTd6tgil4nZT5cU8B+SIw3PFYkvyR4FKo2oyZIHA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.56.0.tgz", + "integrity": "sha512-O16XcmyDeFI9879pEcmtWvD/2nyxR9mF7Gs44lf1vGGx8Vg2DRNx11aVXBEqOQhWb92WN4z7fW/q4+2NYzCbBA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.56.0.tgz", + "integrity": "sha512-LhN/Reh+7F3RCgQIRbgw8ZMwUwyqJM+8pXNT6IIJAqm2IdKkzpCh/V9EdgOMBKuebIrzswqy4ATlrDgiOwbRcQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.56.0.tgz", + "integrity": "sha512-kbFsOObXp3LBULg1d3JIUQMa9Kv4UitDmpS+k0tinPBz3watcUiV2/LUDMMucA6pZO3WGE27P7DsfaN54l9ing==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.56.0.tgz", + "integrity": "sha512-vSSgny54D6P4vf2izbtFm/TcWYedw7f8eBrOiGGecyHyQB9q4Kqentjaj8hToe+995nob/Wv48pDqL5a62EWtg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.56.0.tgz", + "integrity": "sha512-FeCnkPCTHQJFbiGG49KjV5YGW/8b9rrXAM2Mz2kiIoktq2qsJxRD5giEMEOD2lPdgs72upzefaUvS+nc8E3UzQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.56.0.tgz", + "integrity": "sha512-H8AE9Ur/t0+1VXujj90w0HrSOuv0Nq9r1vSZF2t5km20NTfosQsGGUXDaKdQZzwuLts7IyL1fYT4hM95TI9c4g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.10.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.9.tgz", + "integrity": "sha512-ne4A0IpG3+2ETuREInjPNhUGis1SFjv1d5asp8MzEAGtOZeTeHVDOYqOgqfhvseqg/iXty2hjBf1zAOb7RNiNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/react": { + "version": "19.2.9", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.9.tgz", + "integrity": "sha512-Lpo8kgb/igvMIPeNV2rsYKTgaORYdO1XGVZ4Qz3akwOj0ySGYMPlQWa8BaLn0G63D1aSaAQ5ldR06wCpChQCjA==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.54.0.tgz", + "integrity": "sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/type-utils": "8.54.0", + "@typescript-eslint/utils": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.54.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.54.0.tgz", + "integrity": "sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.54.0.tgz", + "integrity": "sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.54.0", + "@typescript-eslint/types": "^8.54.0", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.54.0.tgz", + "integrity": "sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.54.0.tgz", + "integrity": "sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.54.0.tgz", + "integrity": "sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/utils": "8.54.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.54.0.tgz", + "integrity": "sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.54.0.tgz", + "integrity": "sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.54.0", + "@typescript-eslint/tsconfig-utils": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/visitor-keys": "8.54.0", + "debug": "^4.4.3", + "minimatch": "^9.0.5", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.4.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.54.0.tgz", + "integrity": "sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.54.0", + "@typescript-eslint/types": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.54.0.tgz", + "integrity": "sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.54.0", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.18", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.18.tgz", + "integrity": "sha512-e23vBV1ZLfjb9apvfPk4rHVu2ry6RIr2Wfs+O324okSidrX7pTAnEJPCh/O5BtRlr7QtZI7ktOP3vsqr7Z5XoA==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001766", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001766.tgz", + "integrity": "sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.279", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.279.tgz", + "integrity": "sha512-0bblUU5UNdOt5G7XqGiJtpZMONma6WAfq9vsFmtn9x1+joAObr6x1chfqyxFSDCAFwFhCQDrqeAr6MYdpwJ9Hg==", + "dev": true, + "license": "ISC" + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.2", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.2.tgz", + "integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.2", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz", + "integrity": "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.26", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz", + "integrity": "sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", + "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "19.2.4", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz", + "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==", + "license": "MIT", + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.4" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.56.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.56.0.tgz", + "integrity": "sha512-9FwVqlgUHzbXtDg9RCMgodF3Ua4Na6Gau+Sdt9vyCN4RhHfVKX2DCHy3BjMLTDd47ITDhYAnTwGulWTblJSDLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.56.0", + "@rollup/rollup-android-arm64": "4.56.0", + "@rollup/rollup-darwin-arm64": "4.56.0", + "@rollup/rollup-darwin-x64": "4.56.0", + "@rollup/rollup-freebsd-arm64": "4.56.0", + "@rollup/rollup-freebsd-x64": "4.56.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.56.0", + "@rollup/rollup-linux-arm-musleabihf": "4.56.0", + "@rollup/rollup-linux-arm64-gnu": "4.56.0", + "@rollup/rollup-linux-arm64-musl": "4.56.0", + "@rollup/rollup-linux-loong64-gnu": "4.56.0", + "@rollup/rollup-linux-loong64-musl": "4.56.0", + "@rollup/rollup-linux-ppc64-gnu": "4.56.0", + "@rollup/rollup-linux-ppc64-musl": "4.56.0", + "@rollup/rollup-linux-riscv64-gnu": "4.56.0", + "@rollup/rollup-linux-riscv64-musl": "4.56.0", + "@rollup/rollup-linux-s390x-gnu": "4.56.0", + "@rollup/rollup-linux-x64-gnu": "4.56.0", + "@rollup/rollup-linux-x64-musl": "4.56.0", + "@rollup/rollup-openbsd-x64": "4.56.0", + "@rollup/rollup-openharmony-arm64": "4.56.0", + "@rollup/rollup-win32-arm64-msvc": "4.56.0", + "@rollup/rollup-win32-ia32-msvc": "4.56.0", + "@rollup/rollup-win32-x64-gnu": "4.56.0", + "@rollup/rollup-win32-x64-msvc": "4.56.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/ts-api-utils": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.4.0.tgz", + "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.54.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.54.0.tgz", + "integrity": "sha512-CKsJ+g53QpsNPqbzUsfKVgd3Lny4yKZ1pP4qN3jdMOg/sisIDLGyDMezycquXLE5JsEU0wp3dGNdzig0/fmSVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.54.0", + "@typescript-eslint/parser": "8.54.0", + "@typescript-eslint/typescript-estree": "8.54.0", + "@typescript-eslint/utils": "8.54.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz", + "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + } + } + } +} diff --git a/client/package.json b/client/package.json new file mode 100644 index 0000000..0729471 --- /dev/null +++ b/client/package.json @@ -0,0 +1,30 @@ +{ + "name": "client", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "react": "^19.2.0", + "react-dom": "^19.2.0" + }, + "devDependencies": { + "@eslint/js": "^9.39.1", + "@types/node": "^24.10.1", + "@types/react": "^19.2.5", + "@types/react-dom": "^19.2.3", + "@vitejs/plugin-react": "^4.3.2", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-refresh": "^0.4.24", + "globals": "^16.5.0", + "typescript": "~5.9.3", + "typescript-eslint": "^8.46.4", + "vite": "^5.4.10" + } +} diff --git a/client/public/vite.svg b/client/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/client/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/run.sh b/client/run.sh new file mode 100755 index 0000000..fac6526 --- /dev/null +++ b/client/run.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /home/dsyoon/workspace/meeting_ai/client + +npm install +npm run build \ No newline at end of file diff --git a/client/src/App.css b/client/src/App.css new file mode 100644 index 0000000..c2f805b --- /dev/null +++ b/client/src/App.css @@ -0,0 +1,220 @@ +#root { + width: 100%; + height: 100vh; + margin: 0; + padding: 0; +} + +.app { + display: grid; + grid-template-columns: 2fr 1fr; + gap: 16px; + height: 100%; + padding: 16px; + background: #f5f5f5; +} + +.left-panel, +.right-panel { + background: #fff; + border-radius: 12px; + padding: 16px; + display: flex; + flex-direction: column; + gap: 16px; + box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); + min-height: 0; +} + +.panel { + border: 1px solid #e5e7eb; + border-radius: 10px; + padding: 12px; + background: #fafafa; + display: flex; + flex-direction: column; + gap: 12px; + min-height: 0; +} + +.panel-title { + font-weight: 700; + font-size: 16px; +} + +.transcript-panel { + flex: 3 1 0; + min-height: 0; +} + +.answer-panel { + flex: 1 1 0; + min-height: 0; +} + +.transcript-content, +.answer-content { + background: #fff; + border-radius: 8px; + padding: 12px; + border: 1px solid #f0f0f0; + height: 100%; + overflow-y: auto; +} + +.transcript-line { + display: grid; + grid-template-columns: 12px 1fr; + gap: 4px; + padding: 4px 0; + border-bottom: 1px solid #f4f4f4; + font-size: 14px; +} + +.transcript-line:last-child { + border-bottom: none; +} + +.transcript-line.live { + color: #111827; +} + +.transcript-time { + color: #111827; + font-size: 12px; + text-align: left; +} + +.transcript-text { + color: #111827; + font-weight: 600; +} + +.answer-list { + list-style: decimal; + padding-left: 18px; + margin: 0; + display: flex; + flex-direction: column; + gap: 8px; + font-size: 14px; +} + +.controls { + display: flex; + gap: 12px; +} + +button { + border: none; + border-radius: 999px; + padding: 10px 18px; + font-weight: 600; + cursor: pointer; +} + +.record-btn { + background: #e5e7eb; + color: #111827; +} + +.record-btn.recording { + background: #ef4444; + color: #fff; + box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2); +} + +.stop-btn { + background: #111827; + color: #fff; +} + +.save-btn { + background: #2563eb; + color: #fff; +} + +.meeting-list { + flex: 1; + border: 1px solid #f0f0f0; + border-radius: 10px; + padding: 12px; + overflow-y: auto; + background: #fafafa; +} + +.meeting-item { + margin-bottom: 10px; +} + +.meeting-button { + display: flex; + gap: 8px; + align-items: center; + width: 100%; + background: transparent; + color: #111827; + text-align: left; + padding: 6px 8px; + border-radius: 8px; +} + +.meeting-button:hover { + background: #f3f4f6; +} + +.bullet { + font-size: 18px; + color: #111827; +} + +.meeting-checkbox { + display: flex; + gap: 8px; + align-items: center; + font-size: 14px; +} + +.list-controls { + display: flex; + gap: 10px; + justify-content: flex-end; +} + +.edit-btn { + background: #111827; + color: #fff; +} + +.delete-btn { + background: #ef4444; + color: #fff; +} + +.cancel-btn { + background: #e5e7eb; + color: #111827; +} + +.placeholder { + color: #9ca3af; + font-size: 14px; +} + +.error-banner { + background: #fee2e2; + color: #991b1b; + padding: 10px 12px; + border-radius: 8px; + font-size: 14px; +} + +.hint { + font-size: 12px; + color: #6b7280; +} + +button:disabled { + opacity: 0.6; + cursor: not-allowed; +} diff --git a/client/src/App.tsx b/client/src/App.tsx new file mode 100644 index 0000000..2964d82 --- /dev/null +++ b/client/src/App.tsx @@ -0,0 +1,331 @@ +import { useEffect, useMemo, useRef, useState } from 'react' +import './App.css' +import TranscriptPanel from './components/TranscriptPanel' +import MeetingList from './components/MeetingList' +import { + createMeeting, + deleteMeetings, + endMeeting, + fetchMeeting, + fetchMeetings, + saveUtterance, +} from './lib/api' + +function App() { + const [isRecording, setIsRecording] = useState(false) + const [isEditMode, setIsEditMode] = useState(false) + const [currentMeetingId, setCurrentMeetingId] = useState(null) + const [transcriptLines, setTranscriptLines] = useState< + { id: number; ts: string; text: string; isFinal: boolean }[] + >([]) + const [meetingsList, setMeetingsList] = useState< + { id: number; started_at: string; ended_at: string | null; title: string | null }[] + >([]) + const [selectedMeetingIds, setSelectedMeetingIds] = useState>( + new Set() + ) + const [errorMessage, setErrorMessage] = useState(null) + + const recognitionRef = useRef(null) + const liveTextRef = useRef('') + const lineIdRef = useRef(1) + const meetingIdRef = useRef(null) + const pendingUtterancesRef = useRef<{ ts: string; text: string }[]>([]) + const isRecordingRef = useRef(false) + const lastResultAtRef = useRef(Date.now()) + const restartLockRef = useRef(false) + const isStartingRef = useRef(false) + + const hasSpeechRecognition = useMemo(() => { + return 'SpeechRecognition' in window || 'webkitSpeechRecognition' in window + }, []) + + useEffect(() => { + fetchMeetings() + .then(setMeetingsList) + .catch((err) => setErrorMessage(err.message)) + }, []) + + useEffect(() => { + if (!isRecording) return + const intervalId = window.setInterval(() => { + if (!isRecordingRef.current) return + const now = Date.now() + if (now - lastResultAtRef.current > 4000) { + void safeRestartRecognition() + } + }, 2000) + return () => window.clearInterval(intervalId) + }, [isRecording]) + + const persistFinal = async (ts: string, text: string) => { + if (!meetingIdRef.current) { + pendingUtterancesRef.current.push({ ts, text }) + return + } + try { + await saveUtterance(meetingIdRef.current, text, ts) + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + const updateTranscript = (text: string, isFinal: boolean) => { + const trimmed = text.trim() + if (!trimmed) return + const ts = new Date().toISOString() + liveTextRef.current = isFinal ? '' : trimmed + setTranscriptLines((prev) => { + const last = prev[prev.length - 1] + if (last && !last.isFinal) { + return [ + ...prev.slice(0, -1), + { ...last, text: trimmed, ts, isFinal }, + ] + } + if (last && last.isFinal && isFinal && last.text.trim() === trimmed) { + return prev + } + return [...prev, { id: lineIdRef.current++, ts, text: trimmed, isFinal }] + }) + if (isFinal) { + void persistFinal(ts, trimmed) + } + } + + const startRecognition = () => { + const SpeechRecognitionConstructor = + window.SpeechRecognition || window.webkitSpeechRecognition + + if (!SpeechRecognitionConstructor) { + setErrorMessage('이 브라우저에서는 STT를 지원하지 않습니다. Chrome을 사용해 주세요.') + return + } + + const recognition = new SpeechRecognitionConstructor() + recognition.lang = 'ko-KR' + recognition.interimResults = true + recognition.continuous = true + recognition.maxAlternatives = 3 + + recognition.onresult = (event) => { + lastResultAtRef.current = Date.now() + for (let i = event.resultIndex; i < event.results.length; i += 1) { + const result = event.results[i] + const text = result[0].transcript + updateTranscript(text, result.isFinal) + } + } + + recognition.onerror = () => { + setErrorMessage('음성 인식 중 오류가 발생했습니다.') + } + + recognition.onend = () => { + liveTextRef.current = '' + if (isRecordingRef.current) { + window.setTimeout(() => { + void safeRestartRecognition() + }, 200) + } else { + setIsRecording(false) + } + } + + recognitionRef.current = recognition + if (!isStartingRef.current) { + isStartingRef.current = true + try { + recognition.start() + } catch { + // ignore start errors + } finally { + window.setTimeout(() => { + isStartingRef.current = false + }, 200) + } + } + } + + const handleStart = async () => { + setErrorMessage(null) + lineIdRef.current = 1 + pendingUtterancesRef.current = [] + setTranscriptLines([]) + meetingIdRef.current = null + setCurrentMeetingId(null) + setIsRecording(true) + isRecordingRef.current = true + lastResultAtRef.current = Date.now() + startRecognition() + try { + const result = await createMeeting(new Date().toISOString()) + meetingIdRef.current = result.id + setCurrentMeetingId(result.id) + const pending = [...pendingUtterancesRef.current] + pendingUtterancesRef.current = [] + await Promise.all( + pending.map((item) => saveUtterance(result.id, item.text, item.ts)) + ) + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + const handleStop = async () => { + if (!meetingIdRef.current) return + setErrorMessage(null) + recognitionRef.current?.stop() + liveTextRef.current = '' + setIsRecording(false) + isRecordingRef.current = false + try { + await endMeeting(meetingIdRef.current, new Date().toISOString()) + const list = await fetchMeetings() + setMeetingsList(list) + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + const safeRestartRecognition = async () => { + if (!recognitionRef.current || restartLockRef.current) return + restartLockRef.current = true + try { + recognitionRef.current.stop() + recognitionRef.current.start() + lastResultAtRef.current = Date.now() + } catch { + // ignore restart errors + } finally { + window.setTimeout(() => { + restartLockRef.current = false + }, 500) + } + } + + const handleSave = async () => { + if (!meetingIdRef.current) return + setErrorMessage(null) + try { + await endMeeting(meetingIdRef.current, new Date().toISOString()) + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + const handleSelectMeeting = async (id: number) => { + setErrorMessage(null) + try { + const data = await fetchMeeting(id) + meetingIdRef.current = id + setCurrentMeetingId(id) + lineIdRef.current = 1 + setTranscriptLines( + data.utterances.map((utterance) => ({ + id: lineIdRef.current++, + ts: utterance.ts, + text: utterance.text, + isFinal: true, + })) + ) + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + const handleToggleEdit = () => { + setIsEditMode(true) + } + + const handleCancelEdit = () => { + setIsEditMode(false) + setSelectedMeetingIds(new Set()) + } + + const handleToggleSelect = (id: number) => { + const next = new Set(selectedMeetingIds) + if (next.has(id)) { + next.delete(id) + } else { + next.add(id) + } + setSelectedMeetingIds(next) + } + + const handleDelete = async () => { + if (selectedMeetingIds.size === 0) return + setErrorMessage(null) + const ids = Array.from(selectedMeetingIds) + try { + await deleteMeetings(ids) + const updated = meetingsList.filter((meeting) => !selectedMeetingIds.has(meeting.id)) + setMeetingsList(updated) + setSelectedMeetingIds(new Set()) + setIsEditMode(false) + if (currentMeetingId && ids.includes(currentMeetingId)) { + setCurrentMeetingId(null) + meetingIdRef.current = null + setTranscriptLines([]) + } + } catch (err) { + setErrorMessage((err as Error).message) + } + } + + return ( +
+
+ {errorMessage &&
{errorMessage}
} + +
+ + + +
+ {!hasSpeechRecognition && ( +
Chrome에서만 Web Speech API가 안정적으로 동작합니다.
+ )} +
+
+
대화 리스트
+ +
+ {!isEditMode ? ( + + ) : ( + <> + + + + )} +
+
+
+ ) +} + +export default App diff --git a/client/src/assets/react.svg b/client/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/client/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/src/components/AnswerPanel.tsx b/client/src/components/AnswerPanel.tsx new file mode 100644 index 0000000..71d087e --- /dev/null +++ b/client/src/components/AnswerPanel.tsx @@ -0,0 +1,22 @@ +type Props = { + suggestions: string[] +} + +export default function AnswerPanel({ suggestions }: Props) { + return ( +
+
대답
+
+ {suggestions.length === 0 ? ( +
질문이 감지되면 답변 후보가 표시됩니다.
+ ) : ( +
    + {suggestions.map((item, idx) => ( +
  • {item}
  • + ))} +
+ )} +
+
+ ) +} diff --git a/client/src/components/MeetingList.tsx b/client/src/components/MeetingList.tsx new file mode 100644 index 0000000..ab835a7 --- /dev/null +++ b/client/src/components/MeetingList.tsx @@ -0,0 +1,60 @@ +import type { MeetingSummary } from '../lib/api' + +type Props = { + meetings: MeetingSummary[] + isEditMode: boolean + selectedIds: Set + onToggleSelect: (id: number) => void + onSelectMeeting: (id: number) => void +} + +function formatDate(value: string) { + const date = new Date(value) + return date.toLocaleString('ko-KR', { + year: 'numeric', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + second: '2-digit', + }) +} + +export default function MeetingList({ + meetings, + isEditMode, + selectedIds, + onToggleSelect, + onSelectMeeting, +}: Props) { + return ( +
+ {meetings.length === 0 && ( +
저장된 대화가 없습니다.
+ )} + {meetings.map((meeting) => ( +
+ {isEditMode ? ( + + ) : ( + + )} +
+ ))} +
+ ) +} diff --git a/client/src/components/TranscriptPanel.tsx b/client/src/components/TranscriptPanel.tsx new file mode 100644 index 0000000..26e4209 --- /dev/null +++ b/client/src/components/TranscriptPanel.tsx @@ -0,0 +1,32 @@ +type TranscriptLine = { + id: number + ts: string + text: string + isFinal: boolean +} + +type Props = { + transcriptLines: TranscriptLine[] +} + +export default function TranscriptPanel({ transcriptLines }: Props) { + return ( +
+
대화/STT
+
+ {transcriptLines.length === 0 && ( +
대화를 시작하면 STT 로그가 표시됩니다.
+ )} + {transcriptLines.map((line) => ( +
+ - + {line.text} +
+ ))} +
+
+ ) +} diff --git a/client/src/index.css b/client/src/index.css new file mode 100644 index 0000000..4814361 --- /dev/null +++ b/client/src/index.css @@ -0,0 +1,24 @@ +:root { + font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif; + line-height: 1.4; + font-weight: 400; + color: #111827; + background-color: #f5f5f5; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +* { + box-sizing: border-box; +} + +body { + margin: 0; + min-width: 320px; + min-height: 100vh; +} + +button { + font-family: inherit; +} diff --git a/client/src/lib/api.ts b/client/src/lib/api.ts new file mode 100644 index 0000000..a0b53b5 --- /dev/null +++ b/client/src/lib/api.ts @@ -0,0 +1,100 @@ +export type MeetingSummary = { + id: number + started_at: string + ended_at: string | null + title: string | null +} + +export type Utterance = { + id: number + meeting_id: number + speaker: string + text: string + ts: string +} + +export type AnswerRecord = { + id: number + meeting_id: number + question_text: string + suggestions: string[] + created_at: string +} + +async function request(url: string, options?: RequestInit): Promise { + const res = await fetch(url, { + headers: { + 'Content-Type': 'application/json', + }, + credentials: 'include', + ...options, + }) + if (!res.ok) { + const data = await res.json().catch(() => ({})) + const message = data.message || '서버 요청에 실패했습니다.' + throw new Error(message) + } + return (await res.json()) as T +} + +export async function fetchMeetings(): Promise { + return request('/api/meetings') +} + +export async function fetchMeeting(id: number): Promise<{ + meeting: MeetingSummary + utterances: Utterance[] + answers: AnswerRecord[] +}> { + return request(`/api/meetings/${id}`) +} + +export async function createMeeting(started_at: string): Promise<{ id: number }> { + return request('/api/meetings', { + method: 'POST', + body: JSON.stringify({ started_at }), + }) +} + +export async function endMeeting( + id: number, + ended_at: string, + title?: string +): Promise<{ ok: true }> { + return request(`/api/meetings/${id}/end`, { + method: 'POST', + body: JSON.stringify({ ended_at, title }), + }) +} + +export async function saveUtterance(id: number, text: string, ts: string) { + return request(`/api/meetings/${id}/utterances`, { + method: 'POST', + body: JSON.stringify({ text, ts }), + }) +} + +export async function saveAnswers( + id: number, + question_text: string, + suggestions: string[] +) { + return request(`/api/meetings/${id}/answers`, { + method: 'POST', + body: JSON.stringify({ question_text, suggestions }), + }) +} + +export async function deleteMeetings(ids: number[]) { + return request('/api/meetings', { + method: 'DELETE', + body: JSON.stringify({ ids }), + }) +} + +export async function fetchAnswerSuggestions(context: string[], question: string) { + return request<{ suggestions: string[] }>('/api/answer_suggestions', { + method: 'POST', + body: JSON.stringify({ context, question }), + }) +} diff --git a/client/src/main.tsx b/client/src/main.tsx new file mode 100644 index 0000000..bef5202 --- /dev/null +++ b/client/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import App from './App.tsx' + +createRoot(document.getElementById('root')!).render( + + + , +) diff --git a/client/src/types/speech.d.ts b/client/src/types/speech.d.ts new file mode 100644 index 0000000..c7ceda5 --- /dev/null +++ b/client/src/types/speech.d.ts @@ -0,0 +1,25 @@ +interface SpeechRecognitionEvent extends Event { + resultIndex: number + results: SpeechRecognitionResultList +} + +interface SpeechRecognition extends EventTarget { + continuous: boolean + interimResults: boolean + lang: string + maxAlternatives: number + onresult: ((event: SpeechRecognitionEvent) => void) | null + onerror: ((event: Event) => void) | null + onend: (() => void) | null + start: () => void + stop: () => void +} + +interface SpeechRecognitionConstructor { + new (): SpeechRecognition +} + +interface Window { + SpeechRecognition?: SpeechRecognitionConstructor + webkitSpeechRecognition?: SpeechRecognitionConstructor +} diff --git a/client/tsconfig.app.json b/client/tsconfig.app.json new file mode 100644 index 0000000..a9b5a59 --- /dev/null +++ b/client/tsconfig.app.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} diff --git a/client/tsconfig.json b/client/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/client/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/client/tsconfig.node.json b/client/tsconfig.node.json new file mode 100644 index 0000000..8a67f62 --- /dev/null +++ b/client/tsconfig.node.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2023", + "lib": ["ES2023"], + "module": "ESNext", + "types": ["node"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/client/vite.config.ts b/client/vite.config.ts new file mode 100644 index 0000000..c0b672e --- /dev/null +++ b/client/vite.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], + server: { + port: 5170, + proxy: { + '/api': 'http://localhost:4000', + }, + }, +}) diff --git a/server/package-lock.json b/server/package-lock.json new file mode 100644 index 0000000..b068a0b --- /dev/null +++ b/server/package-lock.json @@ -0,0 +1,1738 @@ +{ + "name": "server", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "server", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "cors": "^2.8.6", + "dotenv": "^17.2.3", + "express": "^5.2.1", + "pg": "^8.17.2", + "ws": "^8.19.0" + }, + "devDependencies": { + "@types/cors": "^2.8.19", + "@types/express": "^5.0.6", + "@types/node": "^25.0.10", + "@types/pg": "^8.16.0", + "@types/ws": "^8.18.1", + "tsx": "^4.21.0", + "typescript": "^5.9.3" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", + "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", + "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", + "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", + "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", + "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", + "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", + "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", + "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", + "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", + "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", + "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", + "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", + "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", + "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", + "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", + "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", + "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", + "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", + "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", + "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", + "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", + "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", + "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", + "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", + "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", + "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cors": { + "version": "2.8.19", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz", + "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/express": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.6.tgz", + "integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^5.0.0", + "@types/serve-static": "^2" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz", + "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "25.0.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.10.tgz", + "integrity": "sha512-zWW5KPngR/yvakJgGOmZ5vTBemDoSqF3AcV/LrO5u5wTWyEAVVh+IT39G4gtyAkh3CtTZs8aX/yRM82OfzHJRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/pg": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.16.0.tgz", + "integrity": "sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "pg-protocol": "*", + "pg-types": "^2.2.0" + } + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz", + "integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*" + } + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/accepts": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "license": "MIT", + "dependencies": { + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/body-parser": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", + "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", + "license": "MIT", + "dependencies": { + "bytes": "^3.1.2", + "content-type": "^1.0.5", + "debug": "^4.4.3", + "http-errors": "^2.0.0", + "iconv-lite": "^0.7.0", + "on-finished": "^2.4.1", + "qs": "^6.14.1", + "raw-body": "^3.0.1", + "type-is": "^2.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz", + "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", + "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, + "node_modules/cors": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dotenv": { + "version": "17.2.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz", + "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", + "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.2", + "@esbuild/android-arm": "0.27.2", + "@esbuild/android-arm64": "0.27.2", + "@esbuild/android-x64": "0.27.2", + "@esbuild/darwin-arm64": "0.27.2", + "@esbuild/darwin-x64": "0.27.2", + "@esbuild/freebsd-arm64": "0.27.2", + "@esbuild/freebsd-x64": "0.27.2", + "@esbuild/linux-arm": "0.27.2", + "@esbuild/linux-arm64": "0.27.2", + "@esbuild/linux-ia32": "0.27.2", + "@esbuild/linux-loong64": "0.27.2", + "@esbuild/linux-mips64el": "0.27.2", + "@esbuild/linux-ppc64": "0.27.2", + "@esbuild/linux-riscv64": "0.27.2", + "@esbuild/linux-s390x": "0.27.2", + "@esbuild/linux-x64": "0.27.2", + "@esbuild/netbsd-arm64": "0.27.2", + "@esbuild/netbsd-x64": "0.27.2", + "@esbuild/openbsd-arm64": "0.27.2", + "@esbuild/openbsd-x64": "0.27.2", + "@esbuild/openharmony-arm64": "0.27.2", + "@esbuild/sunos-x64": "0.27.2", + "@esbuild/win32-arm64": "0.27.2", + "@esbuild/win32-ia32": "0.27.2", + "@esbuild/win32-x64": "0.27.2" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", + "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", + "license": "MIT", + "dependencies": { + "accepts": "^2.0.0", + "body-parser": "^2.2.1", + "content-disposition": "^1.0.0", + "content-type": "^1.0.5", + "cookie": "^0.7.1", + "cookie-signature": "^1.2.1", + "debug": "^4.4.0", + "depd": "^2.0.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "finalhandler": "^2.1.0", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "merge-descriptors": "^2.0.0", + "mime-types": "^3.0.0", + "on-finished": "^2.4.1", + "once": "^1.4.0", + "parseurl": "^1.3.3", + "proxy-addr": "^2.0.7", + "qs": "^6.14.0", + "range-parser": "^1.2.1", + "router": "^2.2.0", + "send": "^1.1.0", + "serve-static": "^2.2.0", + "statuses": "^2.0.1", + "type-is": "^2.0.1", + "vary": "^1.1.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/finalhandler": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", + "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "on-finished": "^2.4.1", + "parseurl": "^1.3.3", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-tsconfig": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", + "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/iconv-lite": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", + "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "license": "MIT" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/media-typer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/merge-descriptors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz", + "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/pg": { + "version": "8.17.2", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.17.2.tgz", + "integrity": "sha512-vjbKdiBJRqzcYw1fNU5KuHyYvdJ1qpcQg1CeBrHFqV1pWgHeVR6j/+kX0E1AAXfyuLUGY1ICrN2ELKA/z2HWzw==", + "license": "MIT", + "dependencies": { + "pg-connection-string": "^2.10.1", + "pg-pool": "^3.11.0", + "pg-protocol": "^1.11.0", + "pg-types": "2.2.0", + "pgpass": "1.0.5" + }, + "engines": { + "node": ">= 16.0.0" + }, + "optionalDependencies": { + "pg-cloudflare": "^1.3.0" + }, + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } + } + }, + "node_modules/pg-cloudflare": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.3.0.tgz", + "integrity": "sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==", + "license": "MIT", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.10.1.tgz", + "integrity": "sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==", + "license": "MIT" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "license": "ISC", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-pool": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.11.0.tgz", + "integrity": "sha512-MJYfvHwtGp870aeusDh+hg9apvOe2zmpZJpyt+BMtzUWlVqbhFmMK6bOBXLBUPd7iRtIF9fZplDc7KrPN3PN7w==", + "license": "MIT", + "peerDependencies": { + "pg": ">=8.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.11.0.tgz", + "integrity": "sha512-pfsxk2M9M3BuGgDOfuy37VNRRX3jmKgMjcvAcWqNDpZSf4cUmv8HSOl5ViRQFsfARFn0KuUQTgLxVMbNq5NW3g==", + "license": "MIT" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "license": "MIT", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "license": "MIT", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.1.tgz", + "integrity": "sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "license": "MIT", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", + "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", + "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "depd": "^2.0.0", + "is-promise": "^4.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "^8.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/send": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", + "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.1", + "mime-types": "^3.0.2", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.2" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/serve-static": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", + "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.2.0" + }, + "engines": { + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tsx": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", + "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.27.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/type-is": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", + "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", + "license": "MIT", + "dependencies": { + "content-type": "^1.0.5", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.19.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz", + "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + } + } +} diff --git a/server/package.json b/server/package.json new file mode 100644 index 0000000..8f55b05 --- /dev/null +++ b/server/package.json @@ -0,0 +1,32 @@ +{ + "name": "server", + "version": "1.0.0", + "type": "module", + "main": "dist/index.js", + "scripts": { + "dev": "tsx watch src/index.ts", + "build": "tsc", + "start": "node dist/index.js", + "migrate": "tsx src/migrate.ts" + }, + "keywords": [], + "author": "", + "license": "ISC", + "description": "", + "dependencies": { + "cors": "^2.8.6", + "dotenv": "^17.2.3", + "express": "^5.2.1", + "pg": "^8.17.2", + "ws": "^8.19.0" + }, + "devDependencies": { + "@types/cors": "^2.8.19", + "@types/express": "^5.0.6", + "@types/node": "^25.0.10", + "@types/pg": "^8.16.0", + "@types/ws": "^8.18.1", + "tsx": "^4.21.0", + "typescript": "^5.9.3" + } +} diff --git a/server/run.sh b/server/run.sh new file mode 100755 index 0000000..07c76bb --- /dev/null +++ b/server/run.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +set -euo pipefail + +cd /home/dsyoon/workspace/meeting_ai/server + +PORT="${PORT:-8018}" + +if lsof -ti tcp:"${PORT}" >/dev/null 2>&1; then + echo "Stopping existing server on port ${PORT}..." + lsof -ti tcp:"${PORT}" | xargs -r kill -9 + sleep 1 +fi + +npm install +npm run build + +PORT="${PORT}" nohup npm run start > server.log 2>&1 & +echo "Server started (PID: $!). Logs: server.log" \ No newline at end of file diff --git a/server/src/db.ts b/server/src/db.ts new file mode 100644 index 0000000..df1dd30 --- /dev/null +++ b/server/src/db.ts @@ -0,0 +1,21 @@ +import dotenv from 'dotenv' +import pg from 'pg' +import path from 'path' + +dotenv.config() +dotenv.config({ path: path.resolve(process.cwd(), '../.env') }) + +const { Pool } = pg + +const pool = new Pool({ + host: process.env.DB_HOST || 'ncue.net', + port: Number(process.env.DB_PORT || 5432), + database: process.env.DB_NAME || 'meeting_ai', + user: process.env.DB_USER, + password: process.env.DB_PASSWORD, +}) + +export const db = { + query: (text: string, params?: unknown[]) => pool.query(text, params), + connect: () => pool.connect(), +} diff --git a/server/src/index.ts b/server/src/index.ts new file mode 100644 index 0000000..4b43e7d --- /dev/null +++ b/server/src/index.ts @@ -0,0 +1,51 @@ +import http from 'http' +import express from 'express' +import cors from 'cors' +import { WebSocketServer } from 'ws' +import meetingsRouter from './routes/meetings.js' +import answerSuggestionsRouter from './routes/answerSuggestions.js' +import { runMigrations } from './migrate.js' + +const app = express() +app.use(cors()) +app.use(express.json({ limit: '2mb' })) + +app.get('/api/health', (_req, res) => { + res.json({ ok: true }) +}) + +app.use('/api/meetings', meetingsRouter) +app.use('/api/answer_suggestions', answerSuggestionsRouter) + +const server = http.createServer(app) +const wss = new WebSocketServer({ server }) + +function broadcast(data: unknown) { + const payload = JSON.stringify(data) + for (const client of wss.clients) { + if (client.readyState === client.OPEN) { + client.send(payload) + } + } +} + +app.locals.broadcast = broadcast + +wss.on('connection', (socket) => { + socket.send(JSON.stringify({ type: 'connected' })) +}) + +const port = Number(process.env.PORT || 4000) + +runMigrations() + .then(() => { + server.listen(port, () => { + // eslint-disable-next-line no-console + console.log(`Server listening on ${port}`) + }) + }) + .catch((err) => { + // eslint-disable-next-line no-console + console.error('Migration failed:', err) + process.exit(1) + }) diff --git a/server/src/llm.ts b/server/src/llm.ts new file mode 100644 index 0000000..d735ec5 --- /dev/null +++ b/server/src/llm.ts @@ -0,0 +1,102 @@ +type SuggestionInput = { + context: string[] + question: string +} + +function normalize(text: string) { + return text.replace(/\s+/g, ' ').trim().toLowerCase() +} + +function uniqueSuggestions(items: string[]) { + const seen = new Set() + const result: string[] = [] + for (const item of items) { + const key = normalize(item) + if (!key || seen.has(key)) continue + seen.add(key) + result.push(item.trim()) + } + return result +} + +function truncateQuestion(question: string) { + const trimmed = question.trim() + if (!trimmed) return '질문' + const firstSentence = trimmed.split(/[?!.]/)[0] || trimmed + if (firstSentence.length <= 40) return firstSentence + return `${firstSentence.slice(0, 40)}…` +} + +function buildRuleBasedSuggestions(question: string): string[] { + const base = truncateQuestion(question) + return [ + `${base}에 대해 현재 상황을 먼저 요약드리겠습니다.`, + `${base}의 핵심 포인트는 일정과 비용입니다.`, + `${base}에 대해서는 리스크와 대안을 비교해보겠습니다.`, + `${base} 관련해서 우선순위를 정해 제안드릴게요.`, + `${base}에 대한 다음 액션을 정리해드리겠습니다.`, + ] +} + +async function buildOpenAiSuggestions(input: SuggestionInput): Promise { + const apiKey = process.env.OPENAI_API_KEY + if (!apiKey) { + return buildRuleBasedSuggestions(input.question) + } + + const prompt = [ + '당신은 회의 중 답변 후보를 제안하는 비서입니다.', + '질문에 대해 5개의 간결한 한국어 답변 후보만 리스트로 만들어 주세요.', + '각 답변은 한 문장으로 짧게 작성합니다.', + '', + `질문: ${input.question}`, + '', + '최근 대화 요약:', + ...input.context.map((line) => `- ${line}`), + ].join('\n') + + const response = await fetch('https://api.openai.com/v1/chat/completions', { + method: 'POST', + headers: { + Authorization: `Bearer ${apiKey}`, + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + model: 'gpt-4o-mini', + messages: [ + { + role: 'user', + content: prompt, + }, + ], + temperature: 0.4, + }), + }) + + if (!response.ok) { + return buildRuleBasedSuggestions(input.question) + } + + const data = (await response.json()) as { + choices?: { message?: { content?: string } }[] + } + const content = data.choices?.[0]?.message?.content || '' + const lines = content + .split('\n') + .map((line) => line.replace(/^\s*[\-\d\.\)]\s*/, '').trim()) + .filter(Boolean) + const suggestions = uniqueSuggestions(lines).slice(0, 5) + if (suggestions.length >= 5) { + return suggestions + } + const fallback = buildRuleBasedSuggestions(input.question) + return uniqueSuggestions([...suggestions, ...fallback]).slice(0, 5) +} + +export async function generateSuggestions(input: SuggestionInput): Promise { + if (!input.question.trim()) { + return uniqueSuggestions(buildRuleBasedSuggestions(input.question)).slice(0, 5) + } + const suggestions = await buildOpenAiSuggestions(input) + return uniqueSuggestions(suggestions).slice(0, 5) +} diff --git a/server/src/migrate.ts b/server/src/migrate.ts new file mode 100644 index 0000000..3d3fdac --- /dev/null +++ b/server/src/migrate.ts @@ -0,0 +1,49 @@ +import { db } from './db.js' + +const ddlStatements = [ + `CREATE TABLE IF NOT EXISTS meetings ( + id BIGSERIAL PRIMARY KEY, + started_at TIMESTAMPTZ NOT NULL, + ended_at TIMESTAMPTZ, + title TEXT, + created_at TIMESTAMPTZ NOT NULL DEFAULT now() + );`, + `CREATE TABLE IF NOT EXISTS utterances ( + id BIGSERIAL PRIMARY KEY, + meeting_id BIGINT NOT NULL REFERENCES meetings(id) ON DELETE CASCADE, + speaker TEXT NOT NULL DEFAULT 'unknown', + text TEXT NOT NULL, + ts TIMESTAMPTZ NOT NULL DEFAULT now() + );`, + `CREATE TABLE IF NOT EXISTS answers ( + id BIGSERIAL PRIMARY KEY, + meeting_id BIGINT NOT NULL REFERENCES meetings(id) ON DELETE CASCADE, + question_text TEXT NOT NULL, + suggestions JSONB NOT NULL, + created_at TIMESTAMPTZ NOT NULL DEFAULT now() + );`, + `CREATE INDEX IF NOT EXISTS idx_utterances_meeting_id_ts + ON utterances(meeting_id, ts);`, + `CREATE INDEX IF NOT EXISTS idx_answers_meeting_id_created_at + ON answers(meeting_id, created_at);`, +] + +export async function runMigrations() { + for (const stmt of ddlStatements) { + await db.query(stmt) + } +} + +if (process.argv[1]?.includes('migrate')) { + runMigrations() + .then(() => { + // eslint-disable-next-line no-console + console.log('Migrations complete.') + process.exit(0) + }) + .catch((err) => { + // eslint-disable-next-line no-console + console.error('Migration failed:', err) + process.exit(1) + }) +} diff --git a/server/src/routes/answerSuggestions.ts b/server/src/routes/answerSuggestions.ts new file mode 100644 index 0000000..8ae9df2 --- /dev/null +++ b/server/src/routes/answerSuggestions.ts @@ -0,0 +1,23 @@ +import { Router } from 'express' +import { generateSuggestions } from '../llm.js' + +const router = Router() + +router.post('/', async (req, res) => { + const { context, question } = req.body as { context?: string[]; question?: string } + if (!question) { + return res.status(400).json({ message: 'question이 필요합니다.' }) + } + + try { + const suggestions = await generateSuggestions({ + context: Array.isArray(context) ? context : [], + question, + }) + return res.json({ suggestions }) + } catch (err) { + return res.status(500).json({ message: '답변 후보를 생성하지 못했습니다.' }) + } +}) + +export default router diff --git a/server/src/routes/meetings.ts b/server/src/routes/meetings.ts new file mode 100644 index 0000000..747fabf --- /dev/null +++ b/server/src/routes/meetings.ts @@ -0,0 +1,146 @@ +import { Router } from 'express' +import { db } from '../db.js' + +const router = Router() + +router.get('/', async (_req, res) => { + try { + const result = await db.query( + 'SELECT id, started_at, ended_at, title FROM meetings ORDER BY started_at DESC' + ) + res.json(result.rows) + } catch (err) { + res.status(500).json({ message: '대화 목록을 불러오지 못했습니다.' }) + } +}) + +router.get('/:id', async (req, res) => { + const meetingId = Number(req.params.id) + if (!meetingId) { + return res.status(400).json({ message: '잘못된 meeting id입니다.' }) + } + + try { + const meetingResult = await db.query( + 'SELECT id, started_at, ended_at, title FROM meetings WHERE id = $1', + [meetingId] + ) + if (meetingResult.rowCount === 0) { + return res.status(404).json({ message: '대화를 찾을 수 없습니다.' }) + } + + const utterancesResult = await db.query( + 'SELECT id, meeting_id, speaker, text, ts FROM utterances WHERE meeting_id = $1 ORDER BY ts ASC', + [meetingId] + ) + const answersResult = await db.query( + 'SELECT id, meeting_id, question_text, suggestions, created_at FROM answers WHERE meeting_id = $1 ORDER BY created_at ASC', + [meetingId] + ) + + return res.json({ + meeting: meetingResult.rows[0], + utterances: utterancesResult.rows, + answers: answersResult.rows, + }) + } catch (err) { + return res.status(500).json({ message: '대화 정보를 불러오지 못했습니다.' }) + } +}) + +router.post('/', async (req, res) => { + const { started_at } = req.body as { started_at?: string } + if (!started_at) { + return res.status(400).json({ message: 'started_at이 필요합니다.' }) + } + + try { + const result = await db.query( + 'INSERT INTO meetings (started_at) VALUES ($1) RETURNING id', + [started_at] + ) + return res.json({ id: result.rows[0].id }) + } catch (err) { + return res.status(500).json({ message: '대화를 시작하지 못했습니다.' }) + } +}) + +router.post('/:id/end', async (req, res) => { + const meetingId = Number(req.params.id) + const { ended_at, title } = req.body as { ended_at?: string; title?: string } + if (!meetingId || !ended_at) { + return res.status(400).json({ message: 'meeting id와 ended_at이 필요합니다.' }) + } + + try { + await db.query('UPDATE meetings SET ended_at = $1, title = $2 WHERE id = $3', [ + ended_at, + title || null, + meetingId, + ]) + return res.json({ ok: true }) + } catch (err) { + return res.status(500).json({ message: '대화를 종료하지 못했습니다.' }) + } +}) + +router.post('/:id/utterances', async (req, res) => { + const meetingId = Number(req.params.id) + const { text, ts } = req.body as { text?: string; ts?: string } + if (!meetingId || !text) { + return res.status(400).json({ message: 'meeting id와 text가 필요합니다.' }) + } + + try { + await db.query( + 'INSERT INTO utterances (meeting_id, text, ts) VALUES ($1, $2, $3)', + [meetingId, text, ts || new Date().toISOString()] + ) + return res.json({ ok: true }) + } catch (err) { + return res.status(500).json({ message: '발화를 저장하지 못했습니다.' }) + } +}) + +router.post('/:id/answers', async (req, res) => { + const meetingId = Number(req.params.id) + const { question_text, suggestions } = req.body as { + question_text?: string + suggestions?: string[] + } + if (!meetingId || !question_text || !Array.isArray(suggestions)) { + return res.status(400).json({ message: '질문과 답변 후보가 필요합니다.' }) + } + + try { + await db.query( + 'INSERT INTO answers (meeting_id, question_text, suggestions) VALUES ($1, $2, $3)', + [meetingId, question_text, JSON.stringify(suggestions)] + ) + return res.json({ ok: true }) + } catch (err) { + return res.status(500).json({ message: '답변 후보를 저장하지 못했습니다.' }) + } +}) + +router.delete('/', async (req, res) => { + const { ids } = req.body as { ids?: number[] } + if (!Array.isArray(ids) || ids.length === 0) { + return res.status(400).json({ message: '삭제할 id 목록이 필요합니다.' }) + } + + const client = await db.connect() + try { + await client.query('BEGIN') + await client.query('DELETE FROM meetings WHERE id = ANY($1)', [ids]) + await client.query('COMMIT') + return res.json({ ok: true }) + } catch (err) { + await client.query('ROLLBACK') + return res.status(500).json({ message: '대화를 삭제하지 못했습니다.' }) + } finally { + client.release() + } +}) + +export default router diff --git a/server/tsconfig.json b/server/tsconfig.json new file mode 100644 index 0000000..921cd34 --- /dev/null +++ b/server/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "lib": ["ES2022"], + "outDir": "dist", + "rootDir": "src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + }, + "include": ["src"] +} diff --git a/기획.pptx b/기획.pptx new file mode 100644 index 0000000000000000000000000000000000000000..659d2903a20c4b92ca8404fb78f0d23195f12d8a GIT binary patch literal 44162 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