diff --git a/.claude/rules/code-style.md b/.claude/rules/code-style.md
index 0cb1563..f5f0203 100644
--- a/.claude/rules/code-style.md
+++ b/.claude/rules/code-style.md
@@ -44,7 +44,21 @@
- `@Builder` 허용
- `@Data` 사용 금지 (명시적으로 필요한 어노테이션만)
- `@AllArgsConstructor` 단독 사용 금지 (`@Builder`와 함께 사용)
-- `@Slf4j` 로거 사용
+
+## 로깅
+- `@Slf4j` (Lombok) 로거 사용
+- SLF4J `{}` 플레이스홀더에 printf 포맷 사용 금지 (`{:.1f}`, `{:d}`, `{%s}` 등)
+- 숫자 포맷이 필요하면 `String.format()`으로 변환 후 전달
+ ```java
+ // 잘못됨
+ log.info("처리율: {:.1f}%", rate);
+ // 올바름
+ log.info("처리율: {}%", String.format("%.1f", rate));
+ ```
+- 예외 로깅 시 예외 객체는 마지막 인자로 전달 (플레이스홀더 불필요)
+ ```java
+ log.error("처리 실패: {}", id, exception);
+ ```
## 예외 처리
- 비즈니스 예외는 커스텀 Exception 클래스 정의
diff --git a/.githooks/commit-msg b/.githooks/commit-msg
index 93bb350..67be0a9 100755
--- a/.githooks/commit-msg
+++ b/.githooks/commit-msg
@@ -20,9 +20,10 @@ fi
# Conventional Commits 정규식
# type(scope): subject
# - type: feat|fix|docs|style|refactor|test|chore|ci|perf (필수)
-# - scope: 영문, 숫자, 한글, 점, 밑줄, 하이픈 허용 (선택)
-# - subject: 1~72자, 한/영 혼용 허용 (필수)
-PATTERN='^(feat|fix|docs|style|refactor|test|chore|ci|perf)(\([a-zA-Z0-9가-힣._-]+\))?: .{1,72}$'
+# - scope: 괄호 제외 모든 문자 허용 — 한/영/숫자/특수문자 (선택)
+# - subject: 1자 이상 (길이는 바이트 기반 별도 검증)
+PATTERN='^(feat|fix|docs|style|refactor|test|chore|ci|perf)(\([^)]+\))?: .+$'
+MAX_SUBJECT_BYTES=200 # UTF-8 한글(3byte) 허용: 72문자 ≈ 최대 216byte
FIRST_LINE=$(head -1 "$COMMIT_MSG_FILE")
@@ -58,3 +59,13 @@ if ! echo "$FIRST_LINE" | grep -qE "$PATTERN"; then
echo ""
exit 1
fi
+
+# 길이 검증 (바이트 기반 — UTF-8 한글 허용)
+MSG_LEN=$(echo -n "$FIRST_LINE" | wc -c | tr -d ' ')
+if [ "$MSG_LEN" -gt "$MAX_SUBJECT_BYTES" ]; then
+ echo ""
+ echo " ✗ 커밋 메시지가 너무 깁니다 (${MSG_LEN}바이트, 최대 ${MAX_SUBJECT_BYTES})"
+ echo " 현재 메시지: $FIRST_LINE"
+ echo ""
+ exit 1
+fi
diff --git a/.githooks/pre-commit b/.githooks/pre-commit
index 7a1a3ec..26fded3 100755
--- a/.githooks/pre-commit
+++ b/.githooks/pre-commit
@@ -16,8 +16,8 @@ else
exit 0
fi
-# 컴파일 검증 (테스트 제외, 오프라인 가능)
-$MVN compile -q -DskipTests 2>&1
+# 컴파일 검증 (테스트 제외, 프론트엔드 빌드 제외)
+$MVN compile -q -DskipTests -Dskip.npm -Dskip.installnodenpm 2>&1
RESULT=$?
if [ $RESULT -ne 0 ]; then
diff --git a/.gitignore b/.gitignore
index 83c175b..3b66953 100644
--- a/.gitignore
+++ b/.gitignore
@@ -95,6 +95,13 @@ application-local.yml
logs/
*.log.*
+# Frontend (Vite + React)
+frontend/node_modules/
+frontend/node/
+src/main/resources/static/assets/
+src/main/resources/static/index.html
+src/main/resources/static/vite.svg
+
# Claude Code (개인 파일만 무시, 팀 파일은 추적)
.claude/settings.local.json
.claude/scripts/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5b31905
--- /dev/null
+++ b/README.md
@@ -0,0 +1,105 @@
+# SNP-Batch (snp-batch-validation)
+
+해양 데이터 통합 배치 시스템. Maritime API에서 선박/항만/사건 데이터를 수집하여 PostgreSQL에 저장하고, AIS 실시간 위치정보를 캐시 기반으로 서비스합니다.
+
+## 기술 스택
+
+- Java 17, Spring Boot 3.2.1, Spring Batch 5.1.0
+- PostgreSQL, Quartz Scheduler, Caffeine Cache
+- React 19 + Vite + Tailwind CSS 4 (관리 UI)
+- frontend-maven-plugin (프론트엔드 빌드 통합)
+
+## 사전 요구사항
+
+| 항목 | 버전 | 비고 |
+|------|------|------|
+| JDK | 17 | `.sdkmanrc` 참조 (`sdk env`) |
+| Maven | 3.9+ | |
+| Node.js | 20+ | 프론트엔드 빌드용 |
+| npm | 10+ | Node.js에 포함 |
+
+## 빌드
+
+> **주의**: frontend-maven-plugin의 Node 호환성 문제로, 프론트엔드와 백엔드를 분리하여 빌드합니다.
+
+### 터미널
+
+```bash
+# 1. 프론트엔드 빌드
+cd frontend && npm install && npm run build && cd ..
+
+# 2. Maven 패키징 (프론트엔드 빌드 스킵)
+mvn clean package -DskipTests -Dskip.npm -Dskip.installnodenpm
+```
+
+빌드 결과: `target/snp-batch-validation-1.0.0.jar`
+
+### VSCode
+
+`Cmd+Shift+B` (기본 빌드 태스크) → 프론트엔드 빌드 + Maven 패키징 순차 실행
+
+개별 태스크: `Cmd+Shift+P` → "Tasks: Run Task" → 태스크 선택
+
+> 태스크 설정: [.vscode/tasks.json](.vscode/tasks.json)
+
+### IntelliJ IDEA
+
+1. **프론트엔드 빌드**: Terminal 탭에서 `cd frontend && npm run build`
+2. **Maven 패키징**: Maven 패널 → Lifecycle → `package`
+ - VM Options: `-DskipTests -Dskip.npm -Dskip.installnodenpm`
+ - 또는 Run Configuration → Maven → Command line에 `clean package -DskipTests -Dskip.npm -Dskip.installnodenpm`
+
+## 로컬 실행
+
+### 터미널
+
+```bash
+mvn spring-boot:run -Dspring-boot.run.profiles=local
+```
+
+### VSCode
+
+Run/Debug 패널(F5) → "SNP-Batch (local)" 선택
+
+> 실행 설정: [.vscode/launch.json](.vscode/launch.json)
+
+### IntelliJ IDEA
+
+Run Configuration → Spring Boot:
+- Main class: `com.snp.batch.SnpBatchApplication`
+- Active profiles: `local`
+
+## 서버 배포
+
+```bash
+# 1. 빌드 (위 빌드 절차 수행)
+
+# 2. JAR 전송
+scp target/snp-batch-validation-1.0.0.jar {서버}:{경로}/
+
+# 3. 실행
+java -jar snp-batch-validation-1.0.0.jar --spring.profiles.active=dev
+```
+
+## 접속 정보
+
+| 항목 | URL |
+|------|-----|
+| 관리 UI | `http://localhost:8041/snp-api/` |
+| Swagger | `http://localhost:8041/snp-api/swagger-ui/index.html` |
+
+## 프로파일
+
+| 프로파일 | 용도 | DB |
+|----------|------|----|
+| `local` | 로컬 개발 | 개발 DB |
+| `dev` | 개발 서버 | 개발 DB |
+| `prod` | 운영 서버 | 운영 DB |
+
+## Maven 빌드 플래그 요약
+
+| 플래그 | 용도 |
+|--------|------|
+| `-DskipTests` | 테스트 스킵 |
+| `-Dskip.npm` | npm install/build 스킵 |
+| `-Dskip.installnodenpm` | Node/npm 자동 설치 스킵 |
diff --git a/frontend/.gitignore b/frontend/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/frontend/.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/frontend/README.md b/frontend/README.md
new file mode 100644
index 0000000..d2e7761
--- /dev/null
+++ b/frontend/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/frontend/eslint.config.js b/frontend/eslint.config.js
new file mode 100644
index 0000000..5e6b472
--- /dev/null
+++ b/frontend/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/frontend/index.html b/frontend/index.html
new file mode 100644
index 0000000..072a57e
--- /dev/null
+++ b/frontend/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ frontend
+
+
+
+
+
+
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
new file mode 100644
index 0000000..46883a7
--- /dev/null
+++ b/frontend/package-lock.json
@@ -0,0 +1,3935 @@
+{
+ "name": "frontend",
+ "version": "0.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "frontend",
+ "version": "0.0.0",
+ "dependencies": {
+ "react": "^19.2.0",
+ "react-dom": "^19.2.0",
+ "react-router-dom": "^7.13.0"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.39.1",
+ "@tailwindcss/vite": "^4.1.18",
+ "@types/node": "^24.10.1",
+ "@types/react": "^19.2.7",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^5.1.1",
+ "eslint": "^9.39.1",
+ "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-refresh": "^0.4.24",
+ "globals": "^16.5.0",
+ "tailwindcss": "^4.1.18",
+ "typescript": "~5.9.3",
+ "typescript-eslint": "^8.48.0",
+ "vite": "^7.3.1"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
+ "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
+ "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.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
+ "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.0",
+ "@babel/generator": "^7.29.0",
+ "@babel/helper-compilation-targets": "^7.28.6",
+ "@babel/helper-module-transforms": "^7.28.6",
+ "@babel/helpers": "^7.28.6",
+ "@babel/parser": "^7.29.0",
+ "@babel/template": "^7.28.6",
+ "@babel/traverse": "^7.29.0",
+ "@babel/types": "^7.29.0",
+ "@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.29.1",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
+ "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.29.0",
+ "@babel/types": "^7.29.0",
+ "@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.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
+ "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.29.0"
+ },
+ "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.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
+ "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.0",
+ "@babel/generator": "^7.29.0",
+ "@babel/helper-globals": "^7.28.0",
+ "@babel/parser": "^7.29.0",
+ "@babel/template": "^7.28.6",
+ "@babel/types": "^7.29.0",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
+ "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
+ "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.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz",
+ "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz",
+ "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz",
+ "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz",
+ "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz",
+ "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz",
+ "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz",
+ "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz",
+ "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz",
+ "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz",
+ "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz",
+ "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz",
+ "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz",
+ "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz",
+ "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz",
+ "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz",
+ "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz",
+ "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz",
+ "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz",
+ "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz",
+ "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz",
+ "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz",
+ "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz",
+ "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz",
+ "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz",
+ "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz",
+ "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "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-rc.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
+ "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.1.tgz",
+ "integrity": "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.1.tgz",
+ "integrity": "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.57.1.tgz",
+ "integrity": "sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.1.tgz",
+ "integrity": "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.1.tgz",
+ "integrity": "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.1.tgz",
+ "integrity": "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.1.tgz",
+ "integrity": "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.1.tgz",
+ "integrity": "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.1.tgz",
+ "integrity": "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.1.tgz",
+ "integrity": "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.1.tgz",
+ "integrity": "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.1.tgz",
+ "integrity": "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.1.tgz",
+ "integrity": "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.1.tgz",
+ "integrity": "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.1.tgz",
+ "integrity": "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.1.tgz",
+ "integrity": "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.1.tgz",
+ "integrity": "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.1.tgz",
+ "integrity": "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.1.tgz",
+ "integrity": "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-openbsd-x64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.1.tgz",
+ "integrity": "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-openharmony-arm64": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.1.tgz",
+ "integrity": "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.1.tgz",
+ "integrity": "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.1.tgz",
+ "integrity": "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.1.tgz",
+ "integrity": "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.57.1",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.1.tgz",
+ "integrity": "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@tailwindcss/node": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz",
+ "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/remapping": "^2.3.4",
+ "enhanced-resolve": "^5.18.3",
+ "jiti": "^2.6.1",
+ "lightningcss": "1.30.2",
+ "magic-string": "^0.30.21",
+ "source-map-js": "^1.2.1",
+ "tailwindcss": "4.1.18"
+ }
+ },
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz",
+ "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10"
+ },
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.1.18",
+ "@tailwindcss/oxide-darwin-arm64": "4.1.18",
+ "@tailwindcss/oxide-darwin-x64": "4.1.18",
+ "@tailwindcss/oxide-freebsd-x64": "4.1.18",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.18",
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.18",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.18"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz",
+ "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz",
+ "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz",
+ "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz",
+ "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz",
+ "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz",
+ "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz",
+ "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz",
+ "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz",
+ "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz",
+ "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==",
+ "bundleDependencies": [
+ "@napi-rs/wasm-runtime",
+ "@emnapi/core",
+ "@emnapi/runtime",
+ "@tybys/wasm-util",
+ "@emnapi/wasi-threads",
+ "tslib"
+ ],
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1",
+ "@emnapi/wasi-threads": "^1.1.0",
+ "@napi-rs/wasm-runtime": "^1.1.0",
+ "@tybys/wasm-util": "^0.10.1",
+ "tslib": "^2.4.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz",
+ "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz",
+ "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/vite": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.18.tgz",
+ "integrity": "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@tailwindcss/node": "4.1.18",
+ "@tailwindcss/oxide": "4.1.18",
+ "tailwindcss": "4.1.18"
+ },
+ "peerDependencies": {
+ "vite": "^5.2.0 || ^6 || ^7"
+ }
+ },
+ "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.13",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.13.tgz",
+ "integrity": "sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~7.16.0"
+ }
+ },
+ "node_modules/@types/react": {
+ "version": "19.2.14",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
+ "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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.56.0.tgz",
+ "integrity": "sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.12.2",
+ "@typescript-eslint/scope-manager": "8.56.0",
+ "@typescript-eslint/type-utils": "8.56.0",
+ "@typescript-eslint/utils": "8.56.0",
+ "@typescript-eslint/visitor-keys": "8.56.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.56.0",
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.56.0.tgz",
+ "integrity": "sha512-IgSWvLobTDOjnaxAfDTIHaECbkNlAlKv2j5SjpB2v7QHKv1FIfjwMy8FsDbVfDX/KjmCmYICcw7uGaXLhtsLNg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "8.56.0",
+ "@typescript-eslint/types": "8.56.0",
+ "@typescript-eslint/typescript-estree": "8.56.0",
+ "@typescript-eslint/visitor-keys": "8.56.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 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/project-service": {
+ "version": "8.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.56.0.tgz",
+ "integrity": "sha512-M3rnyL1vIQOMeWxTWIW096/TtVP+8W3p/XnaFflhmcFp+U4zlxUxWj4XwNs6HbDeTtN4yun0GNTTDBw/SvufKg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/tsconfig-utils": "^8.56.0",
+ "@typescript-eslint/types": "^8.56.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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.56.0.tgz",
+ "integrity": "sha512-7UiO/XwMHquH+ZzfVCfUNkIXlp/yQjjnlYUyYz7pfvlK3/EyyN6BK+emDmGNyQLBtLGaYrTAI6KOw8tFucWL2w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.56.0",
+ "@typescript-eslint/visitor-keys": "8.56.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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.56.0.tgz",
+ "integrity": "sha512-bSJoIIt4o3lKXD3xmDh9chZcjCz5Lk8xS7Rxn+6l5/pKrDpkCwtQNQQwZ2qRPk7TkUYhrq3WPIHXOXlbXP0itg==",
+ "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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.56.0.tgz",
+ "integrity": "sha512-qX2L3HWOU2nuDs6GzglBeuFXviDODreS58tLY/BALPC7iu3Fa+J7EOTwnX9PdNBxUI7Uh0ntP0YWGnxCkXzmfA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.56.0",
+ "@typescript-eslint/typescript-estree": "8.56.0",
+ "@typescript-eslint/utils": "8.56.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 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/types": {
+ "version": "8.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.56.0.tgz",
+ "integrity": "sha512-DBsLPs3GsWhX5HylbP9HNG15U0bnwut55Lx12bHB9MpXxQ+R5GC8MwQe+N1UFXxAeQDvEsEDY6ZYwX03K7Z6HQ==",
+ "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.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.56.0.tgz",
+ "integrity": "sha512-ex1nTUMWrseMltXUHmR2GAQ4d+WjkZCT4f+4bVsps8QEdh0vlBsaCokKTPlnqBFqqGaxilDNJG7b8dolW2m43Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/project-service": "8.56.0",
+ "@typescript-eslint/tsconfig-utils": "8.56.0",
+ "@typescript-eslint/types": "8.56.0",
+ "@typescript-eslint/visitor-keys": "8.56.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.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@typescript-eslint/utils": {
+ "version": "8.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.56.0.tgz",
+ "integrity": "sha512-RZ3Qsmi2nFGsS+n+kjLAYDPVlrzf7UhTffrDIKr+h2yzAlYP/y5ZulU0yeDEPItos2Ph46JAL5P/On3pe7kDIQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.9.1",
+ "@typescript-eslint/scope-manager": "8.56.0",
+ "@typescript-eslint/types": "8.56.0",
+ "@typescript-eslint/typescript-estree": "8.56.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 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.0.0"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "8.56.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.56.0.tgz",
+ "integrity": "sha512-q+SL+b+05Ud6LbEE35qe4A99P+htKTKVbyiNEe45eCbJFyh/HVK9QXwlrbz+Q4L8SOW4roxSVwXYj4DMBT7Ieg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.56.0",
+ "eslint-visitor-keys": "^5.0.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/visitor-keys/node_modules/eslint-visitor-keys": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.0.tgz",
+ "integrity": "sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@vitejs/plugin-react": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.1.4.tgz",
+ "integrity": "sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.29.0",
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
+ "@rolldown/pluginutils": "1.0.0-rc.3",
+ "@types/babel__core": "^7.20.5",
+ "react-refresh": "^0.18.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.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.19",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz",
+ "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
+ "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.30001770",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001770.tgz",
+ "integrity": "sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==",
+ "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/cookie": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "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/detect-libc": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.286",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz",
+ "integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.19.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz",
+ "integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.3.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.27.3",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
+ "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.27.3",
+ "@esbuild/android-arm": "0.27.3",
+ "@esbuild/android-arm64": "0.27.3",
+ "@esbuild/android-x64": "0.27.3",
+ "@esbuild/darwin-arm64": "0.27.3",
+ "@esbuild/darwin-x64": "0.27.3",
+ "@esbuild/freebsd-arm64": "0.27.3",
+ "@esbuild/freebsd-x64": "0.27.3",
+ "@esbuild/linux-arm": "0.27.3",
+ "@esbuild/linux-arm64": "0.27.3",
+ "@esbuild/linux-ia32": "0.27.3",
+ "@esbuild/linux-loong64": "0.27.3",
+ "@esbuild/linux-mips64el": "0.27.3",
+ "@esbuild/linux-ppc64": "0.27.3",
+ "@esbuild/linux-riscv64": "0.27.3",
+ "@esbuild/linux-s390x": "0.27.3",
+ "@esbuild/linux-x64": "0.27.3",
+ "@esbuild/netbsd-arm64": "0.27.3",
+ "@esbuild/netbsd-x64": "0.27.3",
+ "@esbuild/openbsd-arm64": "0.27.3",
+ "@esbuild/openbsd-x64": "0.27.3",
+ "@esbuild/openharmony-arm64": "0.27.3",
+ "@esbuild/sunos-x64": "0.27.3",
+ "@esbuild/win32-arm64": "0.27.3",
+ "@esbuild/win32-ia32": "0.27.3",
+ "@esbuild/win32-x64": "0.27.3"
+ }
+ },
+ "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/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "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/jiti": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "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/lightningcss": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz",
+ "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-android-arm64": "1.30.2",
+ "lightningcss-darwin-arm64": "1.30.2",
+ "lightningcss-darwin-x64": "1.30.2",
+ "lightningcss-freebsd-x64": "1.30.2",
+ "lightningcss-linux-arm-gnueabihf": "1.30.2",
+ "lightningcss-linux-arm64-gnu": "1.30.2",
+ "lightningcss-linux-arm64-musl": "1.30.2",
+ "lightningcss-linux-x64-gnu": "1.30.2",
+ "lightningcss-linux-x64-musl": "1.30.2",
+ "lightningcss-win32-arm64-msvc": "1.30.2",
+ "lightningcss-win32-x64-msvc": "1.30.2"
+ }
+ },
+ "node_modules/lightningcss-android-arm64": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz",
+ "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz",
+ "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz",
+ "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz",
+ "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz",
+ "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz",
+ "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz",
+ "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz",
+ "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz",
+ "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz",
+ "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.30.2",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz",
+ "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "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/magic-string": {
+ "version": "0.30.21",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "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.18.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.18.0.tgz",
+ "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-router": {
+ "version": "7.13.0",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.13.0.tgz",
+ "integrity": "sha512-PZgus8ETambRT17BUm/LL8lX3Of+oiLaPuVTRH3l1eLvSPpKO3AvhAEb5N7ihAFZQrYDqkvvWfFh9p0z9VsjLw==",
+ "license": "MIT",
+ "dependencies": {
+ "cookie": "^1.0.1",
+ "set-cookie-parser": "^2.6.0"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-router-dom": {
+ "version": "7.13.0",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.13.0.tgz",
+ "integrity": "sha512-5CO/l5Yahi2SKC6rGZ+HDEjpjkGaG/ncEP7eWFTvFxbHP8yeeI0PxTDjimtpXYlR3b3i9/WIL4VJttPrESIf2g==",
+ "license": "MIT",
+ "dependencies": {
+ "react-router": "7.13.0"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "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.57.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.57.1.tgz",
+ "integrity": "sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==",
+ "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.57.1",
+ "@rollup/rollup-android-arm64": "4.57.1",
+ "@rollup/rollup-darwin-arm64": "4.57.1",
+ "@rollup/rollup-darwin-x64": "4.57.1",
+ "@rollup/rollup-freebsd-arm64": "4.57.1",
+ "@rollup/rollup-freebsd-x64": "4.57.1",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.57.1",
+ "@rollup/rollup-linux-arm-musleabihf": "4.57.1",
+ "@rollup/rollup-linux-arm64-gnu": "4.57.1",
+ "@rollup/rollup-linux-arm64-musl": "4.57.1",
+ "@rollup/rollup-linux-loong64-gnu": "4.57.1",
+ "@rollup/rollup-linux-loong64-musl": "4.57.1",
+ "@rollup/rollup-linux-ppc64-gnu": "4.57.1",
+ "@rollup/rollup-linux-ppc64-musl": "4.57.1",
+ "@rollup/rollup-linux-riscv64-gnu": "4.57.1",
+ "@rollup/rollup-linux-riscv64-musl": "4.57.1",
+ "@rollup/rollup-linux-s390x-gnu": "4.57.1",
+ "@rollup/rollup-linux-x64-gnu": "4.57.1",
+ "@rollup/rollup-linux-x64-musl": "4.57.1",
+ "@rollup/rollup-openbsd-x64": "4.57.1",
+ "@rollup/rollup-openharmony-arm64": "4.57.1",
+ "@rollup/rollup-win32-arm64-msvc": "4.57.1",
+ "@rollup/rollup-win32-ia32-msvc": "4.57.1",
+ "@rollup/rollup-win32-x64-gnu": "4.57.1",
+ "@rollup/rollup-win32-x64-msvc": "4.57.1",
+ "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/set-cookie-parser": {
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
+ "license": "MIT"
+ },
+ "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/tailwindcss": {
+ "version": "4.1.18",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
+ "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/tapable": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "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.56.0",
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.56.0.tgz",
+ "integrity": "sha512-c7toRLrotJ9oixgdW7liukZpsnq5CZ7PuKztubGYlNppuTqhIoWfhgHo/7EU0v06gS2l/x0i2NEFK1qMIf0rIg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/eslint-plugin": "8.56.0",
+ "@typescript-eslint/parser": "8.56.0",
+ "@typescript-eslint/typescript-estree": "8.56.0",
+ "@typescript-eslint/utils": "8.56.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 || ^10.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": "7.3.1",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
+ "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.27.0",
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.3",
+ "postcss": "^8.5.6",
+ "rollup": "^4.43.0",
+ "tinyglobby": "^0.2.15"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^20.19.0 || >=22.12.0",
+ "jiti": ">=1.21.0",
+ "less": "^4.0.0",
+ "lightningcss": "^1.21.0",
+ "sass": "^1.70.0",
+ "sass-embedded": "^1.70.0",
+ "stylus": ">=0.54.8",
+ "sugarss": "^5.0.0",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "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/frontend/package.json b/frontend/package.json
new file mode 100644
index 0000000..7204e4d
--- /dev/null
+++ b/frontend/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "frontend",
+ "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",
+ "react-router-dom": "^7.13.0"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.39.1",
+ "@tailwindcss/vite": "^4.1.18",
+ "@types/node": "^24.10.1",
+ "@types/react": "^19.2.7",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^5.1.1",
+ "eslint": "^9.39.1",
+ "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-refresh": "^0.4.24",
+ "globals": "^16.5.0",
+ "tailwindcss": "^4.1.18",
+ "typescript": "~5.9.3",
+ "typescript-eslint": "^8.48.0",
+ "vite": "^7.3.1"
+ }
+}
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
new file mode 100644
index 0000000..7ea26ac
--- /dev/null
+++ b/frontend/src/App.tsx
@@ -0,0 +1,49 @@
+import { lazy, Suspense } from 'react';
+import { BrowserRouter, Routes, Route } from 'react-router-dom';
+import { ToastProvider, useToastContext } from './contexts/ToastContext';
+import { ThemeProvider } from './contexts/ThemeContext';
+import Navbar from './components/Navbar';
+import ToastContainer from './components/Toast';
+import LoadingSpinner from './components/LoadingSpinner';
+
+const Dashboard = lazy(() => import('./pages/Dashboard'));
+const Jobs = lazy(() => import('./pages/Jobs'));
+const Executions = lazy(() => import('./pages/Executions'));
+const ExecutionDetail = lazy(() => import('./pages/ExecutionDetail'));
+const Schedules = lazy(() => import('./pages/Schedules'));
+const Timeline = lazy(() => import('./pages/Timeline'));
+
+function AppLayout() {
+ const { toasts, removeToast } = useToastContext();
+
+ return (
+
+
+
+ }>
+
+ } />
+ } />
+ } />
+ } />
+ } />
+ } />
+
+
+
+
+
+ );
+}
+
+export default function App() {
+ return (
+
+
+
+
+
+
+
+ );
+}
diff --git a/frontend/src/api/batchApi.ts b/frontend/src/api/batchApi.ts
new file mode 100644
index 0000000..44697ed
--- /dev/null
+++ b/frontend/src/api/batchApi.ts
@@ -0,0 +1,308 @@
+const BASE = import.meta.env.DEV ? '/snp-api/api/batch' : '/snp-api/api/batch';
+
+async function fetchJson(url: string): Promise {
+ const res = await fetch(url);
+ if (!res.ok) throw new Error(`API Error: ${res.status} ${res.statusText}`);
+ return res.json();
+}
+
+async function postJson(url: string, body?: unknown): Promise {
+ const res = await fetch(url, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: body ? JSON.stringify(body) : undefined,
+ });
+ if (!res.ok) throw new Error(`API Error: ${res.status} ${res.statusText}`);
+ return res.json();
+}
+
+// ── Dashboard ────────────────────────────────────────────────
+
+export interface DashboardStats {
+ totalSchedules: number;
+ activeSchedules: number;
+ inactiveSchedules: number;
+ totalJobs: number;
+}
+
+export interface RunningJob {
+ jobName: string;
+ executionId: number;
+ status: string;
+ startTime: string;
+}
+
+export interface RecentExecution {
+ executionId: number;
+ jobName: string;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+}
+
+export interface RecentFailure {
+ executionId: number;
+ jobName: string;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+ exitMessage: string | null;
+}
+
+export interface FailureStats {
+ last24h: number;
+ last7d: number;
+}
+
+export interface DashboardResponse {
+ stats: DashboardStats;
+ runningJobs: RunningJob[];
+ recentExecutions: RecentExecution[];
+ recentFailures: RecentFailure[];
+ staleExecutionCount: number;
+ failureStats: FailureStats;
+}
+
+// ── Job Execution ────────────────────────────────────────────
+
+export interface JobExecutionDto {
+ executionId: number;
+ jobName: string;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+ exitCode: string | null;
+ exitMessage: string | null;
+}
+
+export interface ApiCallInfo {
+ apiUrl: string;
+ method: string;
+ parameters: Record | null;
+ totalCalls: number;
+ completedCalls: number;
+ lastCallTime: string;
+}
+
+export interface StepExecutionDto {
+ stepExecutionId: number;
+ stepName: string;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+ readCount: number;
+ writeCount: number;
+ commitCount: number;
+ rollbackCount: number;
+ readSkipCount: number;
+ processSkipCount: number;
+ writeSkipCount: number;
+ filterCount: number;
+ exitCode: string;
+ exitMessage: string | null;
+ duration: number | null;
+ apiCallInfo: ApiCallInfo | null;
+}
+
+export interface JobExecutionDetailDto {
+ executionId: number;
+ jobName: string;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+ exitCode: string;
+ exitMessage: string | null;
+ jobParameters: Record;
+ jobInstanceId: number;
+ duration: number | null;
+ readCount: number;
+ writeCount: number;
+ skipCount: number;
+ filterCount: number;
+ stepExecutions: StepExecutionDto[];
+}
+
+// ── Schedule ─────────────────────────────────────────────────
+
+export interface ScheduleResponse {
+ id: number;
+ jobName: string;
+ cronExpression: string;
+ description: string | null;
+ active: boolean;
+ nextFireTime: string | null;
+ previousFireTime: string | null;
+ triggerState: string | null;
+ createdAt: string;
+ updatedAt: string;
+}
+
+export interface ScheduleRequest {
+ jobName: string;
+ cronExpression: string;
+ description?: string;
+ active?: boolean;
+}
+
+// ── Timeline ─────────────────────────────────────────────────
+
+export interface PeriodInfo {
+ key: string;
+ label: string;
+}
+
+export interface ExecutionInfo {
+ executionId: number | null;
+ status: string;
+ startTime: string | null;
+ endTime: string | null;
+}
+
+export interface ScheduleTimeline {
+ jobName: string;
+ executions: Record;
+}
+
+export interface TimelineResponse {
+ periodLabel: string;
+ periods: PeriodInfo[];
+ schedules: ScheduleTimeline[];
+}
+
+// ── F4: Execution Search ─────────────────────────────────────
+
+export interface ExecutionSearchResponse {
+ executions: JobExecutionDto[];
+ totalCount: number;
+ page: number;
+ size: number;
+ totalPages: number;
+}
+
+// ── F7: Job Detail ───────────────────────────────────────────
+
+export interface LastExecution {
+ executionId: number;
+ status: string;
+ startTime: string;
+ endTime: string | null;
+}
+
+export interface JobDetailDto {
+ jobName: string;
+ lastExecution: LastExecution | null;
+ scheduleCron: string | null;
+}
+
+// ── F8: Statistics ───────────────────────────────────────────
+
+export interface DailyStat {
+ date: string;
+ successCount: number;
+ failedCount: number;
+ otherCount: number;
+ avgDurationMs: number;
+}
+
+export interface ExecutionStatisticsDto {
+ dailyStats: DailyStat[];
+ totalExecutions: number;
+ totalSuccess: number;
+ totalFailed: number;
+ avgDurationMs: number;
+}
+
+// ── API Functions ────────────────────────────────────────────
+
+export const batchApi = {
+ getDashboard: () =>
+ fetchJson(`${BASE}/dashboard`),
+
+ getJobs: () =>
+ fetchJson(`${BASE}/jobs`),
+
+ getJobsDetail: () =>
+ fetchJson(`${BASE}/jobs/detail`),
+
+ executeJob: (jobName: string, params?: Record) =>
+ postJson<{ success: boolean; message: string; executionId?: number }>(
+ `${BASE}/jobs/${jobName}/execute`, params),
+
+ getJobExecutions: (jobName: string) =>
+ fetchJson(`${BASE}/jobs/${jobName}/executions`),
+
+ getRecentExecutions: (limit = 50) =>
+ fetchJson(`${BASE}/executions/recent?limit=${limit}`),
+
+ getExecutionDetail: (id: number) =>
+ fetchJson(`${BASE}/executions/${id}/detail`),
+
+ stopExecution: (id: number) =>
+ postJson<{ success: boolean; message: string }>(`${BASE}/executions/${id}/stop`),
+
+ // F1: Abandon
+ getStaleExecutions: (thresholdMinutes = 60) =>
+ fetchJson(`${BASE}/executions/stale?thresholdMinutes=${thresholdMinutes}`),
+
+ abandonExecution: (id: number) =>
+ postJson<{ success: boolean; message: string }>(`${BASE}/executions/${id}/abandon`),
+
+ abandonAllStale: (thresholdMinutes = 60) =>
+ postJson<{ success: boolean; message: string; abandonedCount?: number }>(
+ `${BASE}/executions/stale/abandon-all?thresholdMinutes=${thresholdMinutes}`),
+
+ // F4: Search
+ searchExecutions: (params: {
+ jobNames?: string[];
+ status?: string;
+ startDate?: string;
+ endDate?: string;
+ page?: number;
+ size?: number;
+ }) => {
+ const qs = new URLSearchParams();
+ if (params.jobNames && params.jobNames.length > 0) qs.set('jobNames', params.jobNames.join(','));
+ if (params.status) qs.set('status', params.status);
+ if (params.startDate) qs.set('startDate', params.startDate);
+ if (params.endDate) qs.set('endDate', params.endDate);
+ qs.set('page', String(params.page ?? 0));
+ qs.set('size', String(params.size ?? 50));
+ return fetchJson(`${BASE}/executions/search?${qs.toString()}`);
+ },
+
+ // F8: Statistics
+ getStatistics: (days = 30) =>
+ fetchJson(`${BASE}/statistics?days=${days}`),
+
+ getJobStatistics: (jobName: string, days = 30) =>
+ fetchJson(`${BASE}/statistics/${jobName}?days=${days}`),
+
+ // Schedule
+ getSchedules: () =>
+ fetchJson<{ schedules: ScheduleResponse[]; count: number }>(`${BASE}/schedules`),
+
+ getSchedule: (jobName: string) =>
+ fetchJson(`${BASE}/schedules/${jobName}`),
+
+ createSchedule: (data: ScheduleRequest) =>
+ postJson<{ success: boolean; message: string; data?: ScheduleResponse }>(`${BASE}/schedules`, data),
+
+ updateSchedule: (jobName: string, data: { cronExpression: string; description?: string }) =>
+ postJson<{ success: boolean; message: string; data?: ScheduleResponse }>(
+ `${BASE}/schedules/${jobName}/update`, data),
+
+ deleteSchedule: (jobName: string) =>
+ postJson<{ success: boolean; message: string }>(`${BASE}/schedules/${jobName}/delete`),
+
+ toggleSchedule: (jobName: string, active: boolean) =>
+ postJson<{ success: boolean; message: string; data?: ScheduleResponse }>(
+ `${BASE}/schedules/${jobName}/toggle`, { active }),
+
+ // Timeline
+ getTimeline: (view: string, date: string) =>
+ fetchJson(`${BASE}/timeline?view=${view}&date=${date}`),
+
+ getPeriodExecutions: (jobName: string, view: string, periodKey: string) =>
+ fetchJson(
+ `${BASE}/timeline/period-executions?jobName=${jobName}&view=${view}&periodKey=${periodKey}`),
+};
diff --git a/frontend/src/components/BarChart.tsx b/frontend/src/components/BarChart.tsx
new file mode 100644
index 0000000..2c25aaa
--- /dev/null
+++ b/frontend/src/components/BarChart.tsx
@@ -0,0 +1,74 @@
+interface BarValue {
+ color: string;
+ value: number;
+}
+
+interface BarData {
+ label: string;
+ values: BarValue[];
+}
+
+interface Props {
+ data: BarData[];
+ height?: number;
+}
+
+export default function BarChart({ data, height = 200 }: Props) {
+ const maxTotal = Math.max(...data.map((d) => d.values.reduce((sum, v) => sum + v.value, 0)), 1);
+
+ return (
+
+
+ {data.map((bar, i) => {
+ const total = bar.values.reduce((sum, v) => sum + v.value, 0);
+ const ratio = total / maxTotal;
+
+ return (
+
+
`${v.color}: ${v.value}`).join(', ')}
+ >
+ {bar.values
+ .filter((v) => v.value > 0)
+ .map((v, j) => {
+ const segmentRatio = total > 0 ? (v.value / total) * 100 : 0;
+ return (
+
+ );
+ })}
+
+
+ );
+ })}
+
+
+ {data.map((bar, i) => (
+
+ ))}
+
+
+ );
+}
+
+function colorToClass(color: string): string {
+ const map: Record = {
+ green: 'bg-green-500',
+ red: 'bg-red-500',
+ gray: 'bg-gray-400',
+ blue: 'bg-blue-500',
+ yellow: 'bg-yellow-500',
+ orange: 'bg-orange-500',
+ indigo: 'bg-indigo-500',
+ };
+ return map[color] ?? color;
+}
diff --git a/frontend/src/components/ConfirmModal.tsx b/frontend/src/components/ConfirmModal.tsx
new file mode 100644
index 0000000..8ae36f5
--- /dev/null
+++ b/frontend/src/components/ConfirmModal.tsx
@@ -0,0 +1,49 @@
+interface Props {
+ open: boolean;
+ title?: string;
+ message: string;
+ confirmLabel?: string;
+ cancelLabel?: string;
+ confirmColor?: string;
+ onConfirm: () => void;
+ onCancel: () => void;
+}
+
+export default function ConfirmModal({
+ open,
+ title = '확인',
+ message,
+ confirmLabel = '확인',
+ cancelLabel = '취소',
+ confirmColor = 'bg-wing-accent hover:bg-wing-accent/80',
+ onConfirm,
+ onCancel,
+}: Props) {
+ if (!open) return null;
+
+ return (
+
+
e.stopPropagation()}
+ >
+
{title}
+
{message}
+
+
+
+
+
+
+ );
+}
diff --git a/frontend/src/components/EmptyState.tsx b/frontend/src/components/EmptyState.tsx
new file mode 100644
index 0000000..0cf5f0a
--- /dev/null
+++ b/frontend/src/components/EmptyState.tsx
@@ -0,0 +1,15 @@
+interface Props {
+ icon?: string;
+ message: string;
+ sub?: string;
+}
+
+export default function EmptyState({ icon = '📭', message, sub }: Props) {
+ return (
+
+
{icon}
+
{message}
+ {sub &&
{sub}
}
+
+ );
+}
diff --git a/frontend/src/components/InfoModal.tsx b/frontend/src/components/InfoModal.tsx
new file mode 100644
index 0000000..cedb5a9
--- /dev/null
+++ b/frontend/src/components/InfoModal.tsx
@@ -0,0 +1,35 @@
+interface Props {
+ open: boolean;
+ title?: string;
+ children: React.ReactNode;
+ onClose: () => void;
+}
+
+export default function InfoModal({
+ open,
+ title = '정보',
+ children,
+ onClose,
+}: Props) {
+ if (!open) return null;
+
+ return (
+
+
e.stopPropagation()}
+ >
+
{title}
+
{children}
+
+
+
+
+
+ );
+}
diff --git a/frontend/src/components/LoadingSpinner.tsx b/frontend/src/components/LoadingSpinner.tsx
new file mode 100644
index 0000000..738e225
--- /dev/null
+++ b/frontend/src/components/LoadingSpinner.tsx
@@ -0,0 +1,7 @@
+export default function LoadingSpinner({ className = '' }: { className?: string }) {
+ return (
+
+ );
+}
diff --git a/frontend/src/components/Navbar.tsx b/frontend/src/components/Navbar.tsx
new file mode 100644
index 0000000..8a81d90
--- /dev/null
+++ b/frontend/src/components/Navbar.tsx
@@ -0,0 +1,54 @@
+import { Link, useLocation } from 'react-router-dom';
+import { useThemeContext } from '../contexts/ThemeContext';
+
+const navItems = [
+ { path: '/', label: '대시보드', icon: '📊' },
+ { path: '/jobs', label: '작업', icon: '⚙️' },
+ { path: '/executions', label: '실행 이력', icon: '📋' },
+ { path: '/schedules', label: '스케줄', icon: '🕐' },
+ { path: '/schedule-timeline', label: '타임라인', icon: '📅' },
+];
+
+export default function Navbar() {
+ const location = useLocation();
+ const { theme, toggle } = useThemeContext();
+
+ const isActive = (path: string) => {
+ if (path === '/') return location.pathname === '/';
+ return location.pathname.startsWith(path);
+ };
+
+ return (
+
+ );
+}
diff --git a/frontend/src/components/StatusBadge.tsx b/frontend/src/components/StatusBadge.tsx
new file mode 100644
index 0000000..686660e
--- /dev/null
+++ b/frontend/src/components/StatusBadge.tsx
@@ -0,0 +1,40 @@
+const STATUS_CONFIG: Record = {
+ COMPLETED: { bg: 'bg-emerald-100 text-emerald-700', text: '완료', label: '✓' },
+ FAILED: { bg: 'bg-red-100 text-red-700', text: '실패', label: '✕' },
+ STARTED: { bg: 'bg-blue-100 text-blue-700', text: '실행중', label: '↻' },
+ STARTING: { bg: 'bg-cyan-100 text-cyan-700', text: '시작중', label: '⏳' },
+ STOPPED: { bg: 'bg-amber-100 text-amber-700', text: '중지됨', label: '⏸' },
+ STOPPING: { bg: 'bg-orange-100 text-orange-700', text: '중지중', label: '⏸' },
+ ABANDONED: { bg: 'bg-gray-100 text-gray-700', text: '포기됨', label: '—' },
+ SCHEDULED: { bg: 'bg-violet-100 text-violet-700', text: '예정', label: '🕐' },
+ UNKNOWN: { bg: 'bg-gray-100 text-gray-500', text: '알수없음', label: '?' },
+};
+
+interface Props {
+ status: string;
+ className?: string;
+}
+
+export default function StatusBadge({ status, className = '' }: Props) {
+ const config = STATUS_CONFIG[status] || STATUS_CONFIG.UNKNOWN;
+ return (
+
+ {config.label}
+ {config.text}
+
+ );
+}
+
+// eslint-disable-next-line react-refresh/only-export-components
+export function getStatusColor(status: string): string {
+ switch (status) {
+ case 'COMPLETED': return '#10b981';
+ case 'FAILED': return '#ef4444';
+ case 'STARTED': return '#3b82f6';
+ case 'STARTING': return '#06b6d4';
+ case 'STOPPED': return '#f59e0b';
+ case 'STOPPING': return '#f97316';
+ case 'SCHEDULED': return '#8b5cf6';
+ default: return '#6b7280';
+ }
+}
diff --git a/frontend/src/components/Toast.tsx b/frontend/src/components/Toast.tsx
new file mode 100644
index 0000000..90e5750
--- /dev/null
+++ b/frontend/src/components/Toast.tsx
@@ -0,0 +1,37 @@
+import type { Toast as ToastType } from '../hooks/useToast';
+
+const TYPE_STYLES: Record = {
+ success: 'bg-emerald-500',
+ error: 'bg-red-500',
+ warning: 'bg-amber-500',
+ info: 'bg-blue-500',
+};
+
+interface Props {
+ toasts: ToastType[];
+ onRemove: (id: number) => void;
+}
+
+export default function ToastContainer({ toasts, onRemove }: Props) {
+ if (toasts.length === 0) return null;
+
+ return (
+
+ {toasts.map((toast) => (
+
+ {toast.message}
+
+
+ ))}
+
+ );
+}
diff --git a/frontend/src/contexts/ThemeContext.tsx b/frontend/src/contexts/ThemeContext.tsx
new file mode 100644
index 0000000..0db5e08
--- /dev/null
+++ b/frontend/src/contexts/ThemeContext.tsx
@@ -0,0 +1,26 @@
+import { createContext, useContext, type ReactNode } from 'react';
+import { useTheme } from '../hooks/useTheme';
+
+interface ThemeContextValue {
+ theme: 'dark' | 'light';
+ toggle: () => void;
+}
+
+const ThemeContext = createContext({
+ theme: 'dark',
+ toggle: () => {},
+});
+
+export function ThemeProvider({ children }: { children: ReactNode }) {
+ const value = useTheme();
+ return (
+
+ {children}
+
+ );
+}
+
+// eslint-disable-next-line react-refresh/only-export-components
+export function useThemeContext() {
+ return useContext(ThemeContext);
+}
diff --git a/frontend/src/contexts/ToastContext.tsx b/frontend/src/contexts/ToastContext.tsx
new file mode 100644
index 0000000..31cae8e
--- /dev/null
+++ b/frontend/src/contexts/ToastContext.tsx
@@ -0,0 +1,29 @@
+import { createContext, useContext, type ReactNode } from 'react';
+import { useToast, type Toast } from '../hooks/useToast';
+
+interface ToastContextValue {
+ toasts: Toast[];
+ showToast: (message: string, type?: Toast['type']) => void;
+ removeToast: (id: number) => void;
+}
+
+const ToastContext = createContext(null);
+
+export function ToastProvider({ children }: { children: ReactNode }) {
+ const { toasts, showToast, removeToast } = useToast();
+
+ return (
+
+ {children}
+
+ );
+}
+
+// eslint-disable-next-line react-refresh/only-export-components
+export function useToastContext(): ToastContextValue {
+ const ctx = useContext(ToastContext);
+ if (!ctx) {
+ throw new Error('useToastContext must be used within a ToastProvider');
+ }
+ return ctx;
+}
diff --git a/frontend/src/hooks/usePoller.ts b/frontend/src/hooks/usePoller.ts
new file mode 100644
index 0000000..04ac6c1
--- /dev/null
+++ b/frontend/src/hooks/usePoller.ts
@@ -0,0 +1,53 @@
+import { useEffect, useRef } from 'react';
+
+/**
+ * 주기적 폴링 훅
+ * - 마운트 시 즉시 1회 실행 후 intervalMs 주기로 반복
+ * - 탭 비활성(document.hidden) 시 자동 중단, 활성화 시 즉시 재개
+ * - deps 변경 시 타이머 재설정
+ */
+export function usePoller(
+ fn: () => Promise | void,
+ intervalMs: number,
+ deps: unknown[] = [],
+) {
+ const fnRef = useRef(fn);
+ fnRef.current = fn;
+
+ useEffect(() => {
+ let timer: ReturnType | null = null;
+
+ const run = () => {
+ fnRef.current();
+ };
+
+ const start = () => {
+ run();
+ timer = setInterval(run, intervalMs);
+ };
+
+ const stop = () => {
+ if (timer) {
+ clearInterval(timer);
+ timer = null;
+ }
+ };
+
+ const handleVisibility = () => {
+ if (document.hidden) {
+ stop();
+ } else {
+ start();
+ }
+ };
+
+ start();
+ document.addEventListener('visibilitychange', handleVisibility);
+
+ return () => {
+ stop();
+ document.removeEventListener('visibilitychange', handleVisibility);
+ };
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, [intervalMs, ...deps]);
+}
diff --git a/frontend/src/hooks/useTheme.ts b/frontend/src/hooks/useTheme.ts
new file mode 100644
index 0000000..a62aa00
--- /dev/null
+++ b/frontend/src/hooks/useTheme.ts
@@ -0,0 +1,27 @@
+import { useState, useEffect, useCallback } from 'react';
+
+type Theme = 'dark' | 'light';
+
+const STORAGE_KEY = 'snp-batch-theme';
+
+function getInitialTheme(): Theme {
+ if (typeof window === 'undefined') return 'dark';
+ const stored = localStorage.getItem(STORAGE_KEY);
+ if (stored === 'light' || stored === 'dark') return stored;
+ return 'dark';
+}
+
+export function useTheme() {
+ const [theme, setTheme] = useState(getInitialTheme);
+
+ useEffect(() => {
+ document.documentElement.setAttribute('data-theme', theme);
+ localStorage.setItem(STORAGE_KEY, theme);
+ }, [theme]);
+
+ const toggle = useCallback(() => {
+ setTheme((prev) => (prev === 'dark' ? 'light' : 'dark'));
+ }, []);
+
+ return { theme, toggle } as const;
+}
diff --git a/frontend/src/hooks/useToast.ts b/frontend/src/hooks/useToast.ts
new file mode 100644
index 0000000..04ce8f8
--- /dev/null
+++ b/frontend/src/hooks/useToast.ts
@@ -0,0 +1,27 @@
+import { useState, useCallback } from 'react';
+
+export interface Toast {
+ id: number;
+ message: string;
+ type: 'success' | 'error' | 'warning' | 'info';
+}
+
+let nextId = 0;
+
+export function useToast() {
+ const [toasts, setToasts] = useState([]);
+
+ const showToast = useCallback((message: string, type: Toast['type'] = 'info') => {
+ const id = nextId++;
+ setToasts((prev) => [...prev, { id, message, type }]);
+ setTimeout(() => {
+ setToasts((prev) => prev.filter((t) => t.id !== id));
+ }, 5000);
+ }, []);
+
+ const removeToast = useCallback((id: number) => {
+ setToasts((prev) => prev.filter((t) => t.id !== id));
+ }, []);
+
+ return { toasts, showToast, removeToast };
+}
diff --git a/frontend/src/index.css b/frontend/src/index.css
new file mode 100644
index 0000000..7373563
--- /dev/null
+++ b/frontend/src/index.css
@@ -0,0 +1,3 @@
+@import "tailwindcss";
+@import "./theme/tokens.css";
+@import "./theme/base.css";
diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx
new file mode 100644
index 0000000..bef5202
--- /dev/null
+++ b/frontend/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/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx
new file mode 100644
index 0000000..408c06d
--- /dev/null
+++ b/frontend/src/pages/Dashboard.tsx
@@ -0,0 +1,507 @@
+import { useState, useCallback, useEffect } from 'react';
+import { Link } from 'react-router-dom';
+import {
+ batchApi,
+ type DashboardResponse,
+ type DashboardStats,
+ type ExecutionStatisticsDto,
+} from '../api/batchApi';
+import { usePoller } from '../hooks/usePoller';
+import { useToastContext } from '../contexts/ToastContext';
+import StatusBadge from '../components/StatusBadge';
+import EmptyState from '../components/EmptyState';
+import LoadingSpinner from '../components/LoadingSpinner';
+import BarChart from '../components/BarChart';
+import { formatDateTime, calculateDuration } from '../utils/formatters';
+
+const POLLING_INTERVAL = 5000;
+
+interface StatCardProps {
+ label: string;
+ value: number;
+ gradient: string;
+ to?: string;
+}
+
+function StatCard({ label, value, gradient, to }: StatCardProps) {
+ const content = (
+
+ );
+
+ if (to) {
+ return {content};
+ }
+ return content;
+}
+
+export default function Dashboard() {
+ const { showToast } = useToastContext();
+ const [dashboard, setDashboard] = useState(null);
+ const [loading, setLoading] = useState(true);
+
+ // Execute Job modal
+ const [showExecuteModal, setShowExecuteModal] = useState(false);
+ const [jobs, setJobs] = useState([]);
+ const [selectedJob, setSelectedJob] = useState('');
+ const [executing, setExecuting] = useState(false);
+ const [startDate, setStartDate] = useState('');
+ const [stopDate, setStopDate] = useState('');
+ const [abandoning, setAbandoning] = useState(false);
+ const [statistics, setStatistics] = useState(null);
+
+ const loadStatistics = useCallback(async () => {
+ try {
+ const data = await batchApi.getStatistics(30);
+ setStatistics(data);
+ } catch {
+ /* 통계 로드 실패는 무시 */
+ }
+ }, []);
+
+ useEffect(() => {
+ loadStatistics();
+ }, [loadStatistics]);
+
+ const loadDashboard = useCallback(async () => {
+ try {
+ const data = await batchApi.getDashboard();
+ setDashboard(data);
+ } catch (err) {
+ console.error('Dashboard load failed:', err);
+ } finally {
+ setLoading(false);
+ }
+ }, []);
+
+ usePoller(loadDashboard, POLLING_INTERVAL);
+
+ const handleOpenExecuteModal = async () => {
+ try {
+ const jobList = await batchApi.getJobs();
+ setJobs(jobList);
+ setSelectedJob(jobList[0] ?? '');
+ setShowExecuteModal(true);
+ } catch (err) {
+ showToast('작업 목록을 불러올 수 없습니다.', 'error');
+ console.error(err);
+ }
+ };
+
+ const handleExecuteJob = async () => {
+ if (!selectedJob) return;
+ setExecuting(true);
+ try {
+ const params: Record = {};
+ if (startDate) params.startDate = startDate;
+ if (stopDate) params.stopDate = stopDate;
+ const result = await batchApi.executeJob(
+ selectedJob,
+ Object.keys(params).length > 0 ? params : undefined,
+ );
+ showToast(
+ result.message || `${selectedJob} 실행 요청 완료`,
+ 'success',
+ );
+ setShowExecuteModal(false);
+ setStartDate('');
+ setStopDate('');
+ await loadDashboard();
+ } catch (err) {
+ showToast(`실행 실패: ${err instanceof Error ? err.message : '알 수 없는 오류'}`, 'error');
+ } finally {
+ setExecuting(false);
+ }
+ };
+
+ const handleAbandonAllStale = async () => {
+ setAbandoning(true);
+ try {
+ const result = await batchApi.abandonAllStale();
+ showToast(
+ result.message || `${result.abandonedCount ?? 0}건 강제 종료 완료`,
+ 'success',
+ );
+ await loadDashboard();
+ } catch (err) {
+ showToast(
+ `강제 종료 실패: ${err instanceof Error ? err.message : '알 수 없는 오류'}`,
+ 'error',
+ );
+ } finally {
+ setAbandoning(false);
+ }
+ };
+
+ if (loading) return ;
+
+ const stats: DashboardStats = dashboard?.stats ?? {
+ totalSchedules: 0,
+ activeSchedules: 0,
+ inactiveSchedules: 0,
+ totalJobs: 0,
+ };
+
+ const runningJobs = dashboard?.runningJobs ?? [];
+ const recentExecutions = dashboard?.recentExecutions ?? [];
+ const recentFailures = dashboard?.recentFailures ?? [];
+ const staleExecutionCount = dashboard?.staleExecutionCount ?? 0;
+ const failureStats = dashboard?.failureStats ?? { last24h: 0, last7d: 0 };
+
+ return (
+
+ {/* Header */}
+
+
대시보드
+
+
+
+ {/* F1: Stale Execution Warning Banner */}
+ {staleExecutionCount > 0 && (
+
+
+ {staleExecutionCount}건의 오래된 실행 중 작업이 있습니다
+
+
+
+ )}
+
+ {/* Stats Cards */}
+
+
+
+
+
+
+
+
+ {/* Quick Navigation */}
+
+
+ 작업 관리
+
+
+ 실행 이력
+
+
+ 스케줄 관리
+
+
+ 타임라인
+
+
+
+ {/* Running Jobs */}
+
+
+ 실행 중인 작업
+ {runningJobs.length > 0 && (
+
+ ({runningJobs.length}건)
+
+ )}
+
+ {runningJobs.length === 0 ? (
+
+ ) : (
+
+
+
+
+ | 작업명 |
+ 실행 ID |
+ 시작 시간 |
+ 상태 |
+
+
+
+ {runningJobs.map((job) => (
+
+ | {job.jobName} |
+ #{job.executionId} |
+ {formatDateTime(job.startTime)} |
+
+
+ |
+
+ ))}
+
+
+
+ )}
+
+
+ {/* Recent Executions */}
+
+
+
최근 실행 이력
+
+ 전체 보기 →
+
+
+ {recentExecutions.length === 0 ? (
+
+ ) : (
+
+
+
+
+ | 실행 ID |
+ 작업명 |
+ 시작 시간 |
+ 종료 시간 |
+ 소요 시간 |
+ 상태 |
+
+
+
+ {recentExecutions.slice(0, 5).map((exec) => (
+
+ |
+
+ #{exec.executionId}
+
+ |
+ {exec.jobName} |
+ {formatDateTime(exec.startTime)} |
+ {formatDateTime(exec.endTime)} |
+
+ {calculateDuration(exec.startTime, exec.endTime)}
+ |
+
+
+ |
+
+ ))}
+
+
+
+ )}
+
+
+ {/* F6: Recent Failures */}
+ {recentFailures.length > 0 && (
+
+
+ 최근 실패 이력
+
+ ({recentFailures.length}건)
+
+
+
+
+
+
+ | 실행 ID |
+ 작업명 |
+ 시작 시간 |
+ 오류 메시지 |
+
+
+
+ {recentFailures.map((fail) => (
+
+ |
+
+ #{fail.executionId}
+
+ |
+ {fail.jobName} |
+ {formatDateTime(fail.startTime)} |
+
+ {fail.exitMessage
+ ? fail.exitMessage.length > 50
+ ? `${fail.exitMessage.slice(0, 50)}...`
+ : fail.exitMessage
+ : '-'}
+ |
+
+ ))}
+
+
+
+
+ )}
+
+ {/* F8: Execution Statistics Chart */}
+ {statistics && statistics.dailyStats.length > 0 && (
+
+
+
+ 실행 통계 (최근 30일)
+
+
+
+ 전체 {statistics.totalExecutions}
+
+
+ 성공 {statistics.totalSuccess}
+
+
+ 실패 {statistics.totalFailed}
+
+
+
+ ({
+ label: d.date.slice(5),
+ values: [
+ { color: 'green', value: d.successCount },
+ { color: 'red', value: d.failedCount },
+ { color: 'gray', value: d.otherCount },
+ ],
+ }))}
+ height={180}
+ />
+
+
+ 성공
+
+
+ 실패
+
+
+ 기타
+
+
+
+ )}
+
+ {/* Execute Job Modal */}
+ {showExecuteModal && (
+
setShowExecuteModal(false)}
+ >
+
e.stopPropagation()}
+ >
+
작업 즉시 실행
+
+
+
+
+
setStartDate(e.target.value)}
+ className="w-full px-3 py-2 border border-wing-border rounded-lg text-sm
+ focus:ring-2 focus:ring-wing-accent focus:border-wing-accent mb-3"
+ />
+
+
+
setStopDate(e.target.value)}
+ className="w-full px-3 py-2 border border-wing-border rounded-lg text-sm
+ focus:ring-2 focus:ring-wing-accent focus:border-wing-accent mb-4"
+ />
+
+
+
+
+
+
+
+ )}
+
+ );
+}
diff --git a/frontend/src/pages/ExecutionDetail.tsx b/frontend/src/pages/ExecutionDetail.tsx
new file mode 100644
index 0000000..3a74678
--- /dev/null
+++ b/frontend/src/pages/ExecutionDetail.tsx
@@ -0,0 +1,335 @@
+import { useState, useCallback } from 'react';
+import { useParams, useSearchParams, useNavigate } from 'react-router-dom';
+import { batchApi, type JobExecutionDetailDto, type StepExecutionDto } from '../api/batchApi';
+import { formatDateTime, formatDuration, calculateDuration } from '../utils/formatters';
+import { usePoller } from '../hooks/usePoller';
+import StatusBadge from '../components/StatusBadge';
+import EmptyState from '../components/EmptyState';
+import LoadingSpinner from '../components/LoadingSpinner';
+
+const POLLING_INTERVAL_MS = 5000;
+
+interface StatCardProps {
+ label: string;
+ value: number;
+ gradient: string;
+ icon: string;
+}
+
+function StatCard({ label, value, gradient, icon }: StatCardProps) {
+ return (
+
+
+
+
{label}
+
+ {value.toLocaleString()}
+
+
+
{icon}
+
+
+ );
+}
+
+interface StepCardProps {
+ step: StepExecutionDto;
+}
+
+function StepCard({ step }: StepCardProps) {
+ const stats = [
+ { label: '읽기', value: step.readCount },
+ { label: '쓰기', value: step.writeCount },
+ { label: '커밋', value: step.commitCount },
+ { label: '롤백', value: step.rollbackCount },
+ { label: '읽기 건너뜀', value: step.readSkipCount },
+ { label: '처리 건너뜀', value: step.processSkipCount },
+ { label: '쓰기 건너뜀', value: step.writeSkipCount },
+ { label: '필터', value: step.filterCount },
+ ];
+
+ return (
+
+
+
+
+ {step.stepName}
+
+
+
+
+ {step.duration != null
+ ? formatDuration(step.duration)
+ : calculateDuration(step.startTime, step.endTime)}
+
+
+
+
+
+ 시작: {formatDateTime(step.startTime)}
+
+
+ 종료: {formatDateTime(step.endTime)}
+
+
+
+
+ {stats.map(({ label, value }) => (
+
+
+ {value.toLocaleString()}
+
+
{label}
+
+ ))}
+
+
+ {/* API 호출 정보 */}
+ {step.apiCallInfo && (
+
+
API 호출 정보
+
+
+ URL:{' '}
+ {step.apiCallInfo.apiUrl}
+
+
+ Method:{' '}
+ {step.apiCallInfo.method}
+
+
+ 호출:{' '}
+ {step.apiCallInfo.completedCalls} / {step.apiCallInfo.totalCalls}
+
+ {step.apiCallInfo.lastCallTime && (
+
+ 최종:{' '}
+ {step.apiCallInfo.lastCallTime}
+
+ )}
+
+
+ )}
+
+ {step.exitMessage && (
+
+
Exit Message
+
+ {step.exitMessage}
+
+
+ )}
+
+ );
+}
+
+export default function ExecutionDetail() {
+ const { id: paramId } = useParams<{ id: string }>();
+ const [searchParams] = useSearchParams();
+ const navigate = useNavigate();
+
+ const executionId = paramId
+ ? Number(paramId)
+ : Number(searchParams.get('id'));
+
+ const [detail, setDetail] = useState(null);
+ const [loading, setLoading] = useState(true);
+ const [error, setError] = useState(null);
+
+ const isRunning = detail
+ ? detail.status === 'STARTED' || detail.status === 'STARTING'
+ : false;
+
+ const loadDetail = useCallback(async () => {
+ if (!executionId || isNaN(executionId)) {
+ setError('유효하지 않은 실행 ID입니다.');
+ setLoading(false);
+ return;
+ }
+ try {
+ const data = await batchApi.getExecutionDetail(executionId);
+ setDetail(data);
+ setError(null);
+ } catch (err) {
+ setError(
+ err instanceof Error
+ ? err.message
+ : '실행 상세 정보를 불러오지 못했습니다.',
+ );
+ } finally {
+ setLoading(false);
+ }
+ }, [executionId]);
+
+ /* 실행중인 경우 5초 폴링, 완료 후에는 1회 로드로 충분하지만 폴링 유지 */
+ usePoller(loadDetail, isRunning ? POLLING_INTERVAL_MS : 30_000, [
+ executionId,
+ ]);
+
+ if (loading) return ;
+
+ if (error || !detail) {
+ return (
+
+
+
+
+ );
+ }
+
+ const jobParams = Object.entries(detail.jobParameters);
+
+ return (
+
+ {/* 상단 내비게이션 */}
+
+
+ {/* Job 기본 정보 */}
+
+
+
+
+ 실행 #{detail.executionId}
+
+
+ {detail.jobName}
+
+
+
+
+
+
+
+
+
+
+ {detail.exitMessage && (
+
+
+
+ )}
+
+
+
+ {/* 실행 통계 카드 4개 */}
+
+
+
+
+
+
+
+ {/* Job Parameters */}
+ {jobParams.length > 0 && (
+
+
+ Job Parameters
+
+
+
+
+
+ | Key |
+ Value |
+
+
+
+ {jobParams.map(([key, value]) => (
+
+ |
+ {key}
+ |
+
+ {value}
+ |
+
+ ))}
+
+
+
+
+ )}
+
+ {/* Step 실행 정보 */}
+
+
+ Step 실행 정보
+
+ ({detail.stepExecutions.length}개)
+
+
+ {detail.stepExecutions.length === 0 ? (
+
+ ) : (
+
+ {detail.stepExecutions.map((step) => (
+
+ ))}
+
+ )}
+
+
+ );
+}
+
+function InfoItem({ label, value }: { label: string; value: string }) {
+ return (
+
+
+ {label}
+
+ {value || '-'}
+
+ );
+}
diff --git a/frontend/src/pages/Executions.tsx b/frontend/src/pages/Executions.tsx
new file mode 100644
index 0000000..12054b1
--- /dev/null
+++ b/frontend/src/pages/Executions.tsx
@@ -0,0 +1,587 @@
+import { useState, useMemo, useCallback } from 'react';
+import { useNavigate, useSearchParams } from 'react-router-dom';
+import { batchApi, type JobExecutionDto, type ExecutionSearchResponse } from '../api/batchApi';
+import { formatDateTime, calculateDuration } from '../utils/formatters';
+import { usePoller } from '../hooks/usePoller';
+import { useToastContext } from '../contexts/ToastContext';
+import StatusBadge from '../components/StatusBadge';
+import ConfirmModal from '../components/ConfirmModal';
+import InfoModal from '../components/InfoModal';
+import EmptyState from '../components/EmptyState';
+import LoadingSpinner from '../components/LoadingSpinner';
+
+type StatusFilter = 'ALL' | 'COMPLETED' | 'FAILED' | 'STARTED' | 'STOPPED';
+
+const STATUS_FILTERS: { value: StatusFilter; label: string }[] = [
+ { value: 'ALL', label: '전체' },
+ { value: 'COMPLETED', label: '완료' },
+ { value: 'FAILED', label: '실패' },
+ { value: 'STARTED', label: '실행중' },
+ { value: 'STOPPED', label: '중지됨' },
+];
+
+const POLLING_INTERVAL_MS = 5000;
+const RECENT_LIMIT = 50;
+const PAGE_SIZE = 50;
+
+export default function Executions() {
+ const navigate = useNavigate();
+ const [searchParams, setSearchParams] = useSearchParams();
+
+ const jobFromQuery = searchParams.get('job') || '';
+
+ const [jobs, setJobs] = useState([]);
+ const [executions, setExecutions] = useState([]);
+ const [selectedJobs, setSelectedJobs] = useState(jobFromQuery ? [jobFromQuery] : []);
+ const [jobDropdownOpen, setJobDropdownOpen] = useState(false);
+ const [statusFilter, setStatusFilter] = useState('ALL');
+ const [loading, setLoading] = useState(true);
+ const [stopTarget, setStopTarget] = useState(null);
+
+ // F1: 강제 종료
+ const [abandonTarget, setAbandonTarget] = useState(null);
+
+ // F4: 날짜 범위 필터 + 페이지네이션
+ const [startDate, setStartDate] = useState('');
+ const [endDate, setEndDate] = useState('');
+ const [page, setPage] = useState(0);
+ const [totalPages, setTotalPages] = useState(0);
+ const [totalCount, setTotalCount] = useState(0);
+ const [useSearch, setUseSearch] = useState(false);
+
+ // F9: 실패 로그 뷰어
+ const [failLogTarget, setFailLogTarget] = useState(null);
+
+ const { showToast } = useToastContext();
+
+ const loadJobs = useCallback(async () => {
+ try {
+ const data = await batchApi.getJobs();
+ setJobs(data);
+ } catch {
+ /* Job 목록 로드 실패는 무시 */
+ }
+ }, []);
+
+ const loadSearchExecutions = useCallback(async (targetPage: number) => {
+ try {
+ setLoading(true);
+ const params: {
+ jobNames?: string[];
+ status?: string;
+ startDate?: string;
+ endDate?: string;
+ page?: number;
+ size?: number;
+ } = {
+ page: targetPage,
+ size: PAGE_SIZE,
+ };
+ if (selectedJobs.length > 0) params.jobNames = selectedJobs;
+ if (statusFilter !== 'ALL') params.status = statusFilter;
+ if (startDate) params.startDate = `${startDate}T00:00:00`;
+ if (endDate) params.endDate = `${endDate}T23:59:59`;
+
+ const data: ExecutionSearchResponse = await batchApi.searchExecutions(params);
+ setExecutions(data.executions);
+ setTotalPages(data.totalPages);
+ setTotalCount(data.totalCount);
+ setPage(data.page);
+ } catch {
+ setExecutions([]);
+ setTotalPages(0);
+ setTotalCount(0);
+ } finally {
+ setLoading(false);
+ }
+ }, [selectedJobs, statusFilter, startDate, endDate]);
+
+ const loadExecutions = useCallback(async () => {
+ // 검색 모드에서는 폴링하지 않음 (검색 버튼 클릭 시에만 1회 조회)
+ if (useSearch) return;
+ try {
+ let data: JobExecutionDto[];
+ if (selectedJobs.length === 1) {
+ data = await batchApi.getJobExecutions(selectedJobs[0]);
+ } else if (selectedJobs.length > 1) {
+ // 복수 Job 선택 시 search API 사용
+ const result = await batchApi.searchExecutions({
+ jobNames: selectedJobs, size: RECENT_LIMIT,
+ });
+ data = result.executions;
+ } else {
+ try {
+ data = await batchApi.getRecentExecutions(RECENT_LIMIT);
+ } catch {
+ data = [];
+ }
+ }
+ setExecutions(data);
+ } catch {
+ setExecutions([]);
+ } finally {
+ setLoading(false);
+ }
+ }, [selectedJobs, useSearch, page, loadSearchExecutions]);
+
+ /* 마운트 시 Job 목록 1회 로드 */
+ usePoller(loadJobs, 60_000, []);
+
+ /* 실행 이력 5초 폴링 */
+ usePoller(loadExecutions, POLLING_INTERVAL_MS, [selectedJobs, useSearch, page]);
+
+ const filteredExecutions = useMemo(() => {
+ // 검색 모드에서는 서버 필터링 사용
+ if (useSearch) return executions;
+ if (statusFilter === 'ALL') return executions;
+ return executions.filter((e) => e.status === statusFilter);
+ }, [executions, statusFilter, useSearch]);
+
+ const toggleJob = (jobName: string) => {
+ setSelectedJobs((prev) => {
+ const next = prev.includes(jobName)
+ ? prev.filter((j) => j !== jobName)
+ : [...prev, jobName];
+ if (next.length === 1) {
+ setSearchParams({ job: next[0] });
+ } else {
+ setSearchParams({});
+ }
+ return next;
+ });
+ setLoading(true);
+ if (useSearch) {
+ setPage(0);
+ }
+ };
+
+ const clearSelectedJobs = () => {
+ setSelectedJobs([]);
+ setSearchParams({});
+ setLoading(true);
+ if (useSearch) {
+ setPage(0);
+ }
+ };
+
+ const handleStop = async () => {
+ if (!stopTarget) return;
+ try {
+ const result = await batchApi.stopExecution(stopTarget.executionId);
+ showToast(result.message || '실행이 중지되었습니다.', 'success');
+ } catch (err) {
+ showToast(
+ err instanceof Error ? err.message : '중지 요청에 실패했습니다.',
+ 'error',
+ );
+ } finally {
+ setStopTarget(null);
+ }
+ };
+
+ // F1: 강제 종료 핸들러
+ const handleAbandon = async () => {
+ if (!abandonTarget) return;
+ try {
+ const result = await batchApi.abandonExecution(abandonTarget.executionId);
+ showToast(result.message || '실행이 강제 종료되었습니다.', 'success');
+ } catch (err) {
+ showToast(
+ err instanceof Error ? err.message : '강제 종료 요청에 실패했습니다.',
+ 'error',
+ );
+ } finally {
+ setAbandonTarget(null);
+ }
+ };
+
+ // F4: 검색 핸들러
+ const handleSearch = async () => {
+ setUseSearch(true);
+ setPage(0);
+ await loadSearchExecutions(0);
+ };
+
+ // F4: 초기화 핸들러
+ const handleResetSearch = () => {
+ setUseSearch(false);
+ setStartDate('');
+ setEndDate('');
+ setPage(0);
+ setTotalPages(0);
+ setTotalCount(0);
+ setLoading(true);
+ };
+
+ // F4: 페이지 이동 핸들러
+ const handlePageChange = (newPage: number) => {
+ if (newPage < 0 || newPage >= totalPages) return;
+ setPage(newPage);
+ loadSearchExecutions(newPage);
+ };
+
+ const isRunning = (status: string) =>
+ status === 'STARTED' || status === 'STARTING';
+
+ return (
+
+ {/* 헤더 */}
+
+
실행 이력
+
+ 배치 작업 실행 이력을 조회하고 관리합니다.
+
+
+
+ {/* 필터 영역 */}
+
+
+ {/* Job 멀티 선택 */}
+
+
+
+
+
+ {jobDropdownOpen && (
+ <>
+
setJobDropdownOpen(false)} />
+
+ {jobs.map((job) => (
+
+ ))}
+
+ >
+ )}
+
+ {selectedJobs.length > 0 && (
+
+ )}
+
+ {/* 선택된 Job 칩 */}
+ {selectedJobs.length > 0 && (
+
+ {selectedJobs.map((job) => (
+
+ {job}
+
+
+ ))}
+
+ )}
+
+
+ {/* 상태 필터 버튼 그룹 */}
+
+ {STATUS_FILTERS.map(({ value, label }) => (
+
+ ))}
+
+
+
+ {/* F4: 날짜 범위 필터 */}
+
+
+
+ setStartDate(e.target.value)}
+ className="block rounded-lg border border-wing-border bg-wing-surface px-3 py-2 text-sm shadow-sm focus:border-wing-accent focus:ring-1 focus:ring-wing-accent"
+ />
+ ~
+ setEndDate(e.target.value)}
+ className="block rounded-lg border border-wing-border bg-wing-surface px-3 py-2 text-sm shadow-sm focus:border-wing-accent focus:ring-1 focus:ring-wing-accent"
+ />
+
+
+
+ {useSearch && (
+
+ )}
+
+
+
+
+ {/* 실행 이력 테이블 */}
+
+ {loading ? (
+
+ ) : filteredExecutions.length === 0 ? (
+
0
+ ? '선택한 작업의 실행 이력이 없습니다.'
+ : undefined
+ }
+ />
+ ) : (
+
+
+
+
+ | 실행 ID |
+ 작업명 |
+ 상태 |
+ 시작시간 |
+ 종료시간 |
+ 소요시간 |
+
+ 액션
+ |
+
+
+
+ {filteredExecutions.map((exec) => (
+
+ |
+ #{exec.executionId}
+ |
+
+ {exec.jobName}
+ |
+
+ {/* F9: FAILED 상태 클릭 시 실패 로그 모달 */}
+ {exec.status === 'FAILED' ? (
+
+ ) : (
+
+ )}
+ |
+
+ {formatDateTime(exec.startTime)}
+ |
+
+ {formatDateTime(exec.endTime)}
+ |
+
+ {calculateDuration(
+ exec.startTime,
+ exec.endTime,
+ )}
+ |
+
+
+ {isRunning(exec.status) ? (
+ <>
+
+ {/* F1: 강제 종료 버튼 */}
+
+ >
+ ) : (
+
+ )}
+
+ |
+
+ ))}
+
+
+
+ )}
+
+ {/* 결과 건수 표시 + F4: 페이지네이션 */}
+ {!loading && filteredExecutions.length > 0 && (
+
+
+ {useSearch ? (
+ <>총 {totalCount}건>
+ ) : (
+ <>
+ 총 {filteredExecutions.length}건
+ {statusFilter !== 'ALL' && (
+
+ (전체 {executions.length}건 중)
+
+ )}
+ >
+ )}
+
+ {/* F4: 페이지네이션 UI */}
+ {useSearch && totalPages > 1 && (
+
+
+
+ {page + 1} / {totalPages}
+
+
+
+ )}
+
+ )}
+
+
+ {/* 중지 확인 모달 */}
+
setStopTarget(null)}
+ />
+
+ {/* F1: 강제 종료 확인 모달 */}
+ setAbandonTarget(null)}
+ />
+
+ {/* F9: 실패 로그 뷰어 모달 */}
+ setFailLogTarget(null)}
+ >
+ {failLogTarget && (
+
+
+
+ Exit Code
+
+
+ {failLogTarget.exitCode || '-'}
+
+
+
+
+ Exit Message
+
+
+ {failLogTarget.exitMessage || '메시지 없음'}
+
+
+
+ )}
+
+
+ );
+}
diff --git a/frontend/src/pages/Jobs.tsx b/frontend/src/pages/Jobs.tsx
new file mode 100644
index 0000000..04f7b8e
--- /dev/null
+++ b/frontend/src/pages/Jobs.tsx
@@ -0,0 +1,273 @@
+import { useState, useCallback, useMemo } from 'react';
+import { useNavigate } from 'react-router-dom';
+import { batchApi } from '../api/batchApi';
+import type { JobDetailDto } from '../api/batchApi';
+import { usePoller } from '../hooks/usePoller';
+import { useToastContext } from '../contexts/ToastContext';
+import StatusBadge from '../components/StatusBadge';
+import EmptyState from '../components/EmptyState';
+import LoadingSpinner from '../components/LoadingSpinner';
+import { formatDateTime } from '../utils/formatters';
+
+const POLLING_INTERVAL = 30000;
+
+export default function Jobs() {
+ const navigate = useNavigate();
+ const { showToast } = useToastContext();
+
+ const [jobs, setJobs] = useState
([]);
+ const [loading, setLoading] = useState(true);
+ const [searchTerm, setSearchTerm] = useState('');
+
+ // Execute modal
+ const [executeModalOpen, setExecuteModalOpen] = useState(false);
+ const [targetJob, setTargetJob] = useState('');
+ const [executing, setExecuting] = useState(false);
+ const [startDate, setStartDate] = useState('');
+ const [stopDate, setStopDate] = useState('');
+
+ const loadJobs = useCallback(async () => {
+ try {
+ const data = await batchApi.getJobsDetail();
+ setJobs(data);
+ } catch (err) {
+ console.error('Jobs load failed:', err);
+ } finally {
+ setLoading(false);
+ }
+ }, []);
+
+ usePoller(loadJobs, POLLING_INTERVAL);
+
+ const filteredJobs = useMemo(() => {
+ if (!searchTerm.trim()) return jobs;
+ const term = searchTerm.toLowerCase();
+ return jobs.filter((job) => job.jobName.toLowerCase().includes(term));
+ }, [jobs, searchTerm]);
+
+ const handleExecuteClick = (jobName: string) => {
+ setTargetJob(jobName);
+ setStartDate('');
+ setStopDate('');
+ setExecuteModalOpen(true);
+ };
+
+ const handleConfirmExecute = async () => {
+ if (!targetJob) return;
+ setExecuting(true);
+ try {
+ const params: Record = {};
+ if (startDate) params.startDate = startDate;
+ if (stopDate) params.stopDate = stopDate;
+
+ const result = await batchApi.executeJob(
+ targetJob,
+ Object.keys(params).length > 0 ? params : undefined,
+ );
+ showToast(
+ result.message || `${targetJob} 실행 요청 완료`,
+ 'success',
+ );
+ setExecuteModalOpen(false);
+ } catch (err) {
+ showToast(
+ `실행 실패: ${err instanceof Error ? err.message : '알 수 없는 오류'}`,
+ 'error',
+ );
+ } finally {
+ setExecuting(false);
+ }
+ };
+
+ const handleViewHistory = (jobName: string) => {
+ navigate(`/executions?job=${encodeURIComponent(jobName)}`);
+ };
+
+ if (loading) return ;
+
+ return (
+
+ {/* Header */}
+
+
배치 작업 목록
+
+ 총 {jobs.length}개 작업
+
+
+
+ {/* Search Filter */}
+
+
+
+
+
+
setSearchTerm(e.target.value)}
+ className="w-full pl-10 pr-4 py-2 border border-wing-border rounded-lg text-sm
+ focus:ring-2 focus:ring-wing-accent focus:border-wing-accent outline-none"
+ />
+ {searchTerm && (
+
+ )}
+
+ {searchTerm && (
+
+ {filteredJobs.length}개 작업 검색됨
+
+ )}
+
+
+ {/* Job Cards Grid */}
+ {filteredJobs.length === 0 ? (
+
+
+
+ ) : (
+
+ {filteredJobs.map((job) => (
+
+
+
+ {job.jobName}
+
+ {job.lastExecution && (
+
+ )}
+
+
+ {/* Job detail info */}
+
+ {job.lastExecution ? (
+
+ 마지막 실행: {formatDateTime(job.lastExecution.startTime)}
+
+ ) : (
+
실행 이력 없음
+ )}
+ {job.scheduleCron && (
+
+ 스케줄:{' '}
+
+ {job.scheduleCron}
+
+
+ )}
+
+
+
+
+
+
+
+ ))}
+
+ )}
+
+ {/* Execute Modal (custom with date params) */}
+ {executeModalOpen && (
+
setExecuteModalOpen(false)}
+ >
+
e.stopPropagation()}
+ >
+
작업 실행 확인
+
+ "{targetJob}" 작업을 실행하시겠습니까?
+
+
+ {/* Date parameters */}
+
+
+
+ setStartDate(e.target.value)}
+ className="w-full px-3 py-2 border border-wing-border rounded-lg text-sm
+ focus:ring-2 focus:ring-wing-accent focus:border-wing-accent outline-none"
+ />
+
+
+
+ setStopDate(e.target.value)}
+ className="w-full px-3 py-2 border border-wing-border rounded-lg text-sm
+ focus:ring-2 focus:ring-wing-accent focus:border-wing-accent outline-none"
+ />
+
+ {(startDate || stopDate) && (
+
+ 날짜를 지정하면 해당 범위의 데이터를 수집합니다.
+
+ )}
+
+
+
+
+
+
+
+
+ )}
+
+ );
+}
diff --git a/frontend/src/pages/Schedules.tsx b/frontend/src/pages/Schedules.tsx
new file mode 100644
index 0000000..7ffab3a
--- /dev/null
+++ b/frontend/src/pages/Schedules.tsx
@@ -0,0 +1,490 @@
+import { useState, useEffect, useCallback, useMemo, useRef } from 'react';
+import { batchApi, type ScheduleResponse } from '../api/batchApi';
+import { formatDateTime } from '../utils/formatters';
+import { useToastContext } from '../contexts/ToastContext';
+import ConfirmModal from '../components/ConfirmModal';
+import EmptyState from '../components/EmptyState';
+import LoadingSpinner from '../components/LoadingSpinner';
+import { getNextExecutions } from '../utils/cronPreview';
+
+type ScheduleMode = 'new' | 'existing';
+
+interface ConfirmAction {
+ type: 'toggle' | 'delete';
+ schedule: ScheduleResponse;
+}
+
+const CRON_PRESETS = [
+ { label: '매 분', cron: '0 * * * * ?' },
+ { label: '매시 정각', cron: '0 0 * * * ?' },
+ { label: '매 15분', cron: '0 0/15 * * * ?' },
+ { label: '매일 00:00', cron: '0 0 0 * * ?' },
+ { label: '매일 12:00', cron: '0 0 12 * * ?' },
+ { label: '매주 월 00:00', cron: '0 0 0 ? * MON' },
+];
+
+function CronPreview({ cron }: { cron: string }) {
+ const nextDates = useMemo(() => getNextExecutions(cron, 5), [cron]);
+
+ if (nextDates.length === 0) {
+ return (
+
+ );
+ }
+
+ const fmt = new Intl.DateTimeFormat('ko-KR', {
+ month: '2-digit',
+ day: '2-digit',
+ weekday: 'short',
+ hour: '2-digit',
+ minute: '2-digit',
+ second: '2-digit',
+ hour12: false,
+ });
+
+ return (
+
+
+
+ {nextDates.map((d, i) => (
+
+ {fmt.format(d)}
+
+ ))}
+
+
+ );
+}
+
+function getTriggerStateStyle(state: string | null): string {
+ switch (state) {
+ case 'NORMAL':
+ return 'bg-emerald-100 text-emerald-700';
+ case 'PAUSED':
+ return 'bg-amber-100 text-amber-700';
+ case 'BLOCKED':
+ return 'bg-red-100 text-red-700';
+ case 'ERROR':
+ return 'bg-red-100 text-red-700';
+ default:
+ return 'bg-wing-card text-wing-muted';
+ }
+}
+
+export default function Schedules() {
+ const { showToast } = useToastContext();
+
+ // Form state
+ const [jobs, setJobs] = useState([]);
+ const [selectedJob, setSelectedJob] = useState('');
+ const [cronExpression, setCronExpression] = useState('');
+ const [description, setDescription] = useState('');
+ const [scheduleMode, setScheduleMode] = useState('new');
+ const [formLoading, setFormLoading] = useState(false);
+ const [saving, setSaving] = useState(false);
+
+ // Schedule list state
+ const [schedules, setSchedules] = useState([]);
+ const [listLoading, setListLoading] = useState(true);
+
+ // Confirm modal state
+ const [confirmAction, setConfirmAction] = useState(null);
+
+ // 폼 영역 ref (편집 버튼 클릭 시 스크롤)
+ const formRef = useRef(null);
+
+ const loadSchedules = useCallback(async () => {
+ try {
+ const result = await batchApi.getSchedules();
+ setSchedules(result.schedules);
+ } catch (err) {
+ showToast('스케줄 목록 조회 실패', 'error');
+ console.error(err);
+ } finally {
+ setListLoading(false);
+ }
+ }, [showToast]);
+
+ const loadJobs = useCallback(async () => {
+ try {
+ const result = await batchApi.getJobs();
+ setJobs(result);
+ } catch (err) {
+ showToast('작업 목록 조회 실패', 'error');
+ console.error(err);
+ }
+ }, [showToast]);
+
+ useEffect(() => {
+ loadJobs();
+ loadSchedules();
+ }, [loadJobs, loadSchedules]);
+
+ const handleJobSelect = async (jobName: string) => {
+ setSelectedJob(jobName);
+ setCronExpression('');
+ setDescription('');
+ setScheduleMode('new');
+
+ if (!jobName) return;
+
+ setFormLoading(true);
+ try {
+ const schedule = await batchApi.getSchedule(jobName);
+ setCronExpression(schedule.cronExpression);
+ setDescription(schedule.description ?? '');
+ setScheduleMode('existing');
+ } catch {
+ // 404 = new schedule
+ setScheduleMode('new');
+ } finally {
+ setFormLoading(false);
+ }
+ };
+
+ const handleSave = async () => {
+ if (!selectedJob) {
+ showToast('작업을 선택해주세요', 'error');
+ return;
+ }
+ if (!cronExpression.trim()) {
+ showToast('Cron 표현식을 입력해주세요', 'error');
+ return;
+ }
+
+ setSaving(true);
+ try {
+ if (scheduleMode === 'existing') {
+ await batchApi.updateSchedule(selectedJob, {
+ cronExpression: cronExpression.trim(),
+ description: description.trim() || undefined,
+ });
+ showToast('스케줄이 수정되었습니다', 'success');
+ } else {
+ await batchApi.createSchedule({
+ jobName: selectedJob,
+ cronExpression: cronExpression.trim(),
+ description: description.trim() || undefined,
+ });
+ showToast('스케줄이 등록되었습니다', 'success');
+ }
+ await loadSchedules();
+ // Reload schedule info for current job
+ await handleJobSelect(selectedJob);
+ } catch (err) {
+ const message = err instanceof Error ? err.message : '저장 실패';
+ showToast(message, 'error');
+ } finally {
+ setSaving(false);
+ }
+ };
+
+ const handleToggle = async (schedule: ScheduleResponse) => {
+ try {
+ await batchApi.toggleSchedule(schedule.jobName, !schedule.active);
+ showToast(
+ `${schedule.jobName} 스케줄이 ${schedule.active ? '비활성화' : '활성화'}되었습니다`,
+ 'success',
+ );
+ await loadSchedules();
+ } catch (err) {
+ const message = err instanceof Error ? err.message : '토글 실패';
+ showToast(message, 'error');
+ }
+ setConfirmAction(null);
+ };
+
+ const handleDelete = async (schedule: ScheduleResponse) => {
+ try {
+ await batchApi.deleteSchedule(schedule.jobName);
+ showToast(`${schedule.jobName} 스케줄이 삭제되었습니다`, 'success');
+ await loadSchedules();
+ // Clear form if deleted schedule was selected
+ if (selectedJob === schedule.jobName) {
+ setSelectedJob('');
+ setCronExpression('');
+ setDescription('');
+ setScheduleMode('new');
+ }
+ } catch (err) {
+ const message = err instanceof Error ? err.message : '삭제 실패';
+ showToast(message, 'error');
+ }
+ setConfirmAction(null);
+ };
+
+ const handleEditFromCard = (schedule: ScheduleResponse) => {
+ setSelectedJob(schedule.jobName);
+ setCronExpression(schedule.cronExpression);
+ setDescription(schedule.description ?? '');
+ setScheduleMode('existing');
+ formRef.current?.scrollIntoView({ behavior: 'smooth', block: 'start' });
+ };
+
+ return (
+
+ {/* Form Section */}
+
+
스케줄 등록 / 수정
+
+
+ {/* Job Select */}
+
+
+
+
+ {selectedJob && (
+
+ {scheduleMode === 'existing' ? '기존 스케줄' : '새 스케줄'}
+
+ )}
+ {formLoading && (
+
+ )}
+
+
+
+ {/* Cron Expression */}
+
+
+ setCronExpression(e.target.value)}
+ placeholder="0 0/15 * * * ?"
+ className="w-full rounded-lg border border-wing-border px-3 py-2 text-sm font-mono focus:outline-none focus:ring-2 focus:ring-wing-accent focus:border-wing-accent"
+ disabled={!selectedJob || formLoading}
+ />
+
+
+ {/* Cron Presets */}
+
+
+
+ {CRON_PRESETS.map(({ label, cron }) => (
+
+ ))}
+
+
+
+ {/* Cron Preview */}
+ {cronExpression.trim() && (
+
+ )}
+
+ {/* Description */}
+
+
+ setDescription(e.target.value)}
+ placeholder="스케줄 설명 (선택)"
+ className="w-full rounded-lg border border-wing-border px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-wing-accent focus:border-wing-accent"
+ disabled={!selectedJob || formLoading}
+ />
+
+
+
+ {/* Save Button */}
+
+
+
+
+
+ {/* Schedule List */}
+
+
+
+ 등록된 스케줄
+ {schedules.length > 0 && (
+
+ ({schedules.length}개)
+
+ )}
+
+
+
+
+ {listLoading ? (
+
+ ) : schedules.length === 0 ? (
+
+ ) : (
+
+ {schedules.map((schedule) => (
+
+ {/* Header */}
+
+
+
+ {schedule.jobName}
+
+
+ {schedule.active ? '활성' : '비활성'}
+
+ {schedule.triggerState && (
+
+ {schedule.triggerState}
+
+ )}
+
+
+
+ {/* Cron Expression */}
+
+
+ {schedule.cronExpression}
+
+
+
+ {/* Description */}
+ {schedule.description && (
+
{schedule.description}
+ )}
+
+ {/* Time Info */}
+
+
+ 다음 실행:{' '}
+ {formatDateTime(schedule.nextFireTime)}
+
+
+ 이전 실행:{' '}
+ {formatDateTime(schedule.previousFireTime)}
+
+
+ 등록일:{' '}
+ {formatDateTime(schedule.createdAt)}
+
+
+ 수정일:{' '}
+ {formatDateTime(schedule.updatedAt)}
+
+
+
+ {/* Action Buttons */}
+
+
+
+
+
+
+ ))}
+
+ )}
+
+
+ {/* Confirm Modal */}
+ {confirmAction?.type === 'toggle' && (
+
handleToggle(confirmAction.schedule)}
+ onCancel={() => setConfirmAction(null)}
+ />
+ )}
+ {confirmAction?.type === 'delete' && (
+ handleDelete(confirmAction.schedule)}
+ onCancel={() => setConfirmAction(null)}
+ />
+ )}
+
+ );
+}
diff --git a/frontend/src/pages/Timeline.tsx b/frontend/src/pages/Timeline.tsx
new file mode 100644
index 0000000..9224669
--- /dev/null
+++ b/frontend/src/pages/Timeline.tsx
@@ -0,0 +1,466 @@
+import { useState, useCallback, useRef, useEffect } from 'react';
+import { batchApi, type ExecutionInfo, type JobExecutionDto, type PeriodInfo, type ScheduleTimeline } from '../api/batchApi';
+import { formatDateTime, calculateDuration } from '../utils/formatters';
+import { usePoller } from '../hooks/usePoller';
+import { useToastContext } from '../contexts/ToastContext';
+import { getStatusColor } from '../components/StatusBadge';
+import StatusBadge from '../components/StatusBadge';
+import LoadingSpinner from '../components/LoadingSpinner';
+import EmptyState from '../components/EmptyState';
+
+type ViewType = 'day' | 'week' | 'month';
+
+interface TooltipData {
+ jobName: string;
+ period: PeriodInfo;
+ execution: ExecutionInfo;
+ x: number;
+ y: number;
+}
+
+interface SelectedCell {
+ jobName: string;
+ periodKey: string;
+ periodLabel: string;
+}
+
+const VIEW_OPTIONS: { value: ViewType; label: string }[] = [
+ { value: 'day', label: 'Day' },
+ { value: 'week', label: 'Week' },
+ { value: 'month', label: 'Month' },
+];
+
+const LEGEND_ITEMS = [
+ { status: 'COMPLETED', color: '#10b981', label: '완료' },
+ { status: 'FAILED', color: '#ef4444', label: '실패' },
+ { status: 'STARTED', color: '#3b82f6', label: '실행중' },
+ { status: 'SCHEDULED', color: '#8b5cf6', label: '예정' },
+ { status: 'NONE', color: '#e5e7eb', label: '없음' },
+];
+
+const JOB_COL_WIDTH = 200;
+const CELL_MIN_WIDTH = 80;
+const POLLING_INTERVAL = 30000;
+
+function formatDateStr(date: Date): string {
+ const y = date.getFullYear();
+ const m = String(date.getMonth() + 1).padStart(2, '0');
+ const d = String(date.getDate()).padStart(2, '0');
+ return `${y}-${m}-${d}`;
+}
+
+function shiftDate(date: Date, view: ViewType, delta: number): Date {
+ const next = new Date(date);
+ switch (view) {
+ case 'day':
+ next.setDate(next.getDate() + delta);
+ break;
+ case 'week':
+ next.setDate(next.getDate() + delta * 7);
+ break;
+ case 'month':
+ next.setMonth(next.getMonth() + delta);
+ break;
+ }
+ return next;
+}
+
+function isRunning(status: string): boolean {
+ return status === 'STARTED' || status === 'STARTING';
+}
+
+export default function Timeline() {
+ const { showToast } = useToastContext();
+
+ const [view, setView] = useState('day');
+ const [currentDate, setCurrentDate] = useState(() => new Date());
+ const [periodLabel, setPeriodLabel] = useState('');
+ const [periods, setPeriods] = useState([]);
+ const [schedules, setSchedules] = useState([]);
+ const [loading, setLoading] = useState(true);
+
+ // Tooltip
+ const [tooltip, setTooltip] = useState(null);
+ const tooltipTimeoutRef = useRef | null>(null);
+
+ // Selected cell & detail panel
+ const [selectedCell, setSelectedCell] = useState(null);
+ const [detailExecutions, setDetailExecutions] = useState([]);
+ const [detailLoading, setDetailLoading] = useState(false);
+
+ const loadTimeline = useCallback(async () => {
+ try {
+ const dateStr = formatDateStr(currentDate);
+ const result = await batchApi.getTimeline(view, dateStr);
+ setPeriodLabel(result.periodLabel);
+ setPeriods(result.periods);
+ setSchedules(result.schedules);
+ } catch (err) {
+ showToast('타임라인 조회 실패', 'error');
+ console.error(err);
+ } finally {
+ setLoading(false);
+ }
+ }, [view, currentDate, showToast]);
+
+ usePoller(loadTimeline, POLLING_INTERVAL, [view, currentDate]);
+
+ const handlePrev = () => setCurrentDate((d) => shiftDate(d, view, -1));
+ const handleNext = () => setCurrentDate((d) => shiftDate(d, view, 1));
+ const handleToday = () => setCurrentDate(new Date());
+
+ const handleRefresh = async () => {
+ setLoading(true);
+ await loadTimeline();
+ };
+
+ // Tooltip handlers
+ const handleCellMouseEnter = (
+ e: React.MouseEvent,
+ jobName: string,
+ period: PeriodInfo,
+ execution: ExecutionInfo,
+ ) => {
+ if (tooltipTimeoutRef.current) {
+ clearTimeout(tooltipTimeoutRef.current);
+ }
+ const rect = (e.currentTarget as HTMLElement).getBoundingClientRect();
+ setTooltip({
+ jobName,
+ period,
+ execution,
+ x: rect.left + rect.width / 2,
+ y: rect.top,
+ });
+ };
+
+ const handleCellMouseLeave = () => {
+ tooltipTimeoutRef.current = setTimeout(() => {
+ setTooltip(null);
+ }, 100);
+ };
+
+ // Clean up tooltip timeout
+ useEffect(() => {
+ return () => {
+ if (tooltipTimeoutRef.current) {
+ clearTimeout(tooltipTimeoutRef.current);
+ }
+ };
+ }, []);
+
+ // Cell click -> detail panel
+ const handleCellClick = async (jobName: string, periodKey: string, periodLabel: string) => {
+ // Toggle off if clicking same cell
+ if (selectedCell?.jobName === jobName && selectedCell?.periodKey === periodKey) {
+ setSelectedCell(null);
+ setDetailExecutions([]);
+ return;
+ }
+
+ setSelectedCell({ jobName, periodKey, periodLabel });
+ setDetailLoading(true);
+ setDetailExecutions([]);
+
+ try {
+ const executions = await batchApi.getPeriodExecutions(jobName, view, periodKey);
+ setDetailExecutions(executions);
+ } catch (err) {
+ showToast('구간 실행 이력 조회 실패', 'error');
+ console.error(err);
+ } finally {
+ setDetailLoading(false);
+ }
+ };
+
+ const closeDetail = () => {
+ setSelectedCell(null);
+ setDetailExecutions([]);
+ };
+
+ const gridTemplateColumns = `${JOB_COL_WIDTH}px repeat(${periods.length}, minmax(${CELL_MIN_WIDTH}px, 1fr))`;
+
+ return (
+
+ {/* Controls */}
+
+
+ {/* View Toggle */}
+
+ {VIEW_OPTIONS.map((opt) => (
+
+ ))}
+
+
+ {/* Navigation */}
+
+
+
+
+
+
+ {/* Period Label */}
+
+ {periodLabel}
+
+
+ {/* Refresh */}
+
+
+
+
+ {/* Legend */}
+
+ {LEGEND_ITEMS.map((item) => (
+
+ ))}
+
+
+ {/* Timeline Grid */}
+
+ {loading ? (
+
+ ) : schedules.length === 0 ? (
+
+ ) : (
+
+
+ {/* Header Row */}
+
+ 작업명
+
+ {periods.map((period) => (
+
+ {period.label}
+
+ ))}
+
+ {/* Data Rows */}
+ {schedules.map((schedule) => (
+ <>
+ {/* Job Name (sticky) */}
+
+ {schedule.jobName}
+
+
+ {/* Execution Cells */}
+ {periods.map((period) => {
+ const exec = schedule.executions[period.key];
+ const hasExec = exec !== null && exec !== undefined;
+ const isSelected =
+ selectedCell?.jobName === schedule.jobName &&
+ selectedCell?.periodKey === period.key;
+ const running = hasExec && isRunning(exec.status);
+
+ return (
+
+ handleCellClick(schedule.jobName, period.key, period.label)
+ }
+ onMouseEnter={
+ hasExec
+ ? (e) => handleCellMouseEnter(e, schedule.jobName, period, exec)
+ : undefined
+ }
+ onMouseLeave={hasExec ? handleCellMouseLeave : undefined}
+ >
+ {hasExec && (
+
+ )}
+
+ );
+ })}
+ >
+ ))}
+
+
+ )}
+
+
+ {/* Tooltip */}
+ {tooltip && (
+
+
+
{tooltip.jobName}
+
+
기간: {tooltip.period.label}
+
+ 상태:{' '}
+
+ {tooltip.execution.status}
+
+
+ {tooltip.execution.startTime && (
+
시작: {formatDateTime(tooltip.execution.startTime)}
+ )}
+ {tooltip.execution.endTime && (
+
종료: {formatDateTime(tooltip.execution.endTime)}
+ )}
+ {tooltip.execution.executionId && (
+
실행 ID: {tooltip.execution.executionId}
+ )}
+
+ {/* Arrow */}
+
+
+
+ )}
+
+ {/* Detail Panel */}
+ {selectedCell && (
+
+
+
+
+ {selectedCell.jobName}
+
+
+ 구간: {selectedCell.periodLabel}
+
+
+
+
+
+ {detailLoading ? (
+
+ ) : detailExecutions.length === 0 ? (
+
+ ) : (
+
+
+
+
+ |
+ 실행 ID
+ |
+
+ 상태
+ |
+
+ 시작 시간
+ |
+
+ 종료 시간
+ |
+
+ 소요 시간
+ |
+
+ 상세
+ |
+
+
+
+ {detailExecutions.map((exec) => (
+
+ |
+ #{exec.executionId}
+ |
+
+
+ |
+
+ {formatDateTime(exec.startTime)}
+ |
+
+ {formatDateTime(exec.endTime)}
+ |
+
+ {calculateDuration(exec.startTime, exec.endTime)}
+ |
+
+
+ 상세
+
+ |
+
+ ))}
+
+
+
+ )}
+
+ )}
+
+ );
+}
diff --git a/frontend/src/theme/base.css b/frontend/src/theme/base.css
new file mode 100644
index 0000000..803906a
--- /dev/null
+++ b/frontend/src/theme/base.css
@@ -0,0 +1,25 @@
+body {
+ font-family: 'Noto Sans KR', sans-serif;
+ background: var(--wing-bg);
+ color: var(--wing-text);
+ transition: background-color 0.2s ease, color 0.2s ease;
+}
+
+/* Scrollbar styling for dark mode */
+::-webkit-scrollbar {
+ width: 8px;
+ height: 8px;
+}
+
+::-webkit-scrollbar-track {
+ background: var(--wing-surface);
+}
+
+::-webkit-scrollbar-thumb {
+ background: var(--wing-muted);
+ border-radius: 4px;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: var(--wing-accent);
+}
diff --git a/frontend/src/theme/tokens.css b/frontend/src/theme/tokens.css
new file mode 100644
index 0000000..1614ed3
--- /dev/null
+++ b/frontend/src/theme/tokens.css
@@ -0,0 +1,66 @@
+/* Dark theme (default) */
+:root,
+[data-theme='dark'] {
+ --wing-bg: #020617;
+ --wing-surface: #0f172a;
+ --wing-card: #1e293b;
+ --wing-border: #1e3a5f;
+ --wing-text: #e2e8f0;
+ --wing-muted: #64748b;
+ --wing-accent: #3b82f6;
+ --wing-danger: #ef4444;
+ --wing-warning: #f59e0b;
+ --wing-success: #22c55e;
+ --wing-glass: rgba(15, 23, 42, 0.92);
+ --wing-glass-dense: rgba(15, 23, 42, 0.95);
+ --wing-overlay: rgba(2, 6, 23, 0.42);
+ --wing-card-alpha: rgba(30, 41, 59, 0.55);
+ --wing-subtle: rgba(255, 255, 255, 0.03);
+ --wing-hover: rgba(255, 255, 255, 0.05);
+ --wing-input-bg: #0f172a;
+ --wing-input-border: #334155;
+}
+
+/* Light theme */
+[data-theme='light'] {
+ --wing-bg: #e2e8f0;
+ --wing-surface: #ffffff;
+ --wing-card: #f1f5f9;
+ --wing-border: #94a3b8;
+ --wing-text: #0f172a;
+ --wing-muted: #64748b;
+ --wing-accent: #2563eb;
+ --wing-danger: #dc2626;
+ --wing-warning: #d97706;
+ --wing-success: #16a34a;
+ --wing-glass: rgba(255, 255, 255, 0.92);
+ --wing-glass-dense: rgba(255, 255, 255, 0.95);
+ --wing-overlay: rgba(0, 0, 0, 0.25);
+ --wing-card-alpha: rgba(226, 232, 240, 0.6);
+ --wing-subtle: rgba(0, 0, 0, 0.03);
+ --wing-hover: rgba(0, 0, 0, 0.04);
+ --wing-input-bg: #ffffff;
+ --wing-input-border: #cbd5e1;
+}
+
+@theme {
+ --color-wing-bg: var(--wing-bg);
+ --color-wing-surface: var(--wing-surface);
+ --color-wing-card: var(--wing-card);
+ --color-wing-border: var(--wing-border);
+ --color-wing-text: var(--wing-text);
+ --color-wing-muted: var(--wing-muted);
+ --color-wing-accent: var(--wing-accent);
+ --color-wing-danger: var(--wing-danger);
+ --color-wing-warning: var(--wing-warning);
+ --color-wing-success: var(--wing-success);
+ --color-wing-glass: var(--wing-glass);
+ --color-wing-glass-dense: var(--wing-glass-dense);
+ --color-wing-overlay: var(--wing-overlay);
+ --color-wing-card-alpha: var(--wing-card-alpha);
+ --color-wing-subtle: var(--wing-subtle);
+ --color-wing-hover: var(--wing-hover);
+ --color-wing-input-bg: var(--wing-input-bg);
+ --color-wing-input-border: var(--wing-input-border);
+ --font-sans: 'Noto Sans KR', sans-serif;
+}
diff --git a/frontend/src/utils/cronPreview.ts b/frontend/src/utils/cronPreview.ts
new file mode 100644
index 0000000..3fa99ae
--- /dev/null
+++ b/frontend/src/utils/cronPreview.ts
@@ -0,0 +1,153 @@
+/**
+ * Quartz 형식 Cron 표현식의 다음 실행 시간을 계산한다.
+ * 형식: 초 분 시 일 월 요일
+ */
+export function getNextExecutions(cron: string, count: number): Date[] {
+ const parts = cron.trim().split(/\s+/);
+ if (parts.length < 6) return [];
+
+ const [secField, minField, hourField, dayField, monthField, dowField] = parts;
+
+ if (hasUnsupportedToken(dayField) || hasUnsupportedToken(dowField)) {
+ return [];
+ }
+
+ const seconds = parseField(secField, 0, 59);
+ const minutes = parseField(minField, 0, 59);
+ const hours = parseField(hourField, 0, 23);
+ const daysOfMonth = parseField(dayField, 1, 31);
+ const months = parseField(monthField, 1, 12);
+ const daysOfWeek = parseDowField(dowField);
+
+ if (!seconds || !minutes || !hours || !months) return [];
+
+ const results: Date[] = [];
+ const now = new Date();
+ const cursor = new Date(now.getFullYear(), now.getMonth(), now.getDate(), now.getHours(), now.getMinutes(), now.getSeconds() + 1);
+ cursor.setMilliseconds(0);
+
+ const limit = new Date(now.getTime() + 365 * 24 * 60 * 60 * 1000);
+
+ while (results.length < count && cursor.getTime() <= limit.getTime()) {
+ const month = cursor.getMonth() + 1;
+ if (!months.includes(month)) {
+ cursor.setMonth(cursor.getMonth() + 1, 1);
+ cursor.setHours(0, 0, 0, 0);
+ continue;
+ }
+
+ const day = cursor.getDate();
+ const dayMatches = daysOfMonth ? daysOfMonth.includes(day) : true;
+ const dowMatches = daysOfWeek ? daysOfWeek.includes(cursor.getDay()) : true;
+
+ const needDayCheck = dayField !== '?' && dowField !== '?';
+ const dayOk = needDayCheck ? dayMatches && dowMatches : dayMatches && dowMatches;
+
+ if (!dayOk) {
+ cursor.setDate(cursor.getDate() + 1);
+ cursor.setHours(0, 0, 0, 0);
+ continue;
+ }
+
+ const hour = cursor.getHours();
+ if (!hours.includes(hour)) {
+ cursor.setHours(cursor.getHours() + 1, 0, 0, 0);
+ continue;
+ }
+
+ const minute = cursor.getMinutes();
+ if (!minutes.includes(minute)) {
+ cursor.setMinutes(cursor.getMinutes() + 1, 0, 0);
+ continue;
+ }
+
+ const second = cursor.getSeconds();
+ if (!seconds.includes(second)) {
+ cursor.setSeconds(cursor.getSeconds() + 1, 0);
+ continue;
+ }
+
+ results.push(new Date(cursor));
+ cursor.setSeconds(cursor.getSeconds() + 1);
+ }
+
+ return results;
+}
+
+function hasUnsupportedToken(field: string): boolean {
+ return /[LW#]/.test(field);
+}
+
+function parseField(field: string, min: number, max: number): number[] | null {
+ if (field === '?') return null;
+ if (field === '*') return range(min, max);
+
+ const values = new Set();
+
+ for (const part of field.split(',')) {
+ const stepMatch = part.match(/^(.+)\/(\d+)$/);
+ if (stepMatch) {
+ const [, base, stepStr] = stepMatch;
+ const step = parseInt(stepStr, 10);
+ let start = min;
+ let end = max;
+
+ if (base === '*') {
+ start = min;
+ } else if (base.includes('-')) {
+ const [lo, hi] = base.split('-').map(Number);
+ start = lo;
+ end = hi;
+ } else {
+ start = parseInt(base, 10);
+ }
+
+ for (let v = start; v <= end; v += step) {
+ if (v >= min && v <= max) values.add(v);
+ }
+ continue;
+ }
+
+ const rangeMatch = part.match(/^(\d+)-(\d+)$/);
+ if (rangeMatch) {
+ const lo = parseInt(rangeMatch[1], 10);
+ const hi = parseInt(rangeMatch[2], 10);
+ for (let v = lo; v <= hi; v++) {
+ if (v >= min && v <= max) values.add(v);
+ }
+ continue;
+ }
+
+ const num = parseInt(part, 10);
+ if (!isNaN(num) && num >= min && num <= max) {
+ values.add(num);
+ }
+ }
+
+ return values.size > 0 ? Array.from(values).sort((a, b) => a - b) : range(min, max);
+}
+
+function parseDowField(field: string): number[] | null {
+ if (field === '?' || field === '*') return null;
+
+ const dayMap: Record = {
+ SUN: '0', MON: '1', TUE: '2', WED: '3', THU: '4', FRI: '5', SAT: '6',
+ };
+
+ let normalized = field.toUpperCase();
+ for (const [name, num] of Object.entries(dayMap)) {
+ normalized = normalized.replace(new RegExp(name, 'g'), num);
+ }
+
+ // Quartz uses 1=SUN..7=SAT, convert to JS 0=SUN..6=SAT
+ const parsed = parseField(normalized, 1, 7);
+ if (!parsed) return null;
+
+ return parsed.map((v) => v - 1);
+}
+
+function range(min: number, max: number): number[] {
+ const result: number[] = [];
+ for (let i = min; i <= max; i++) result.push(i);
+ return result;
+}
diff --git a/frontend/src/utils/formatters.ts b/frontend/src/utils/formatters.ts
new file mode 100644
index 0000000..c1cda20
--- /dev/null
+++ b/frontend/src/utils/formatters.ts
@@ -0,0 +1,58 @@
+export function formatDateTime(dateTimeStr: string | null | undefined): string {
+ if (!dateTimeStr) return '-';
+ try {
+ const date = new Date(dateTimeStr);
+ if (isNaN(date.getTime())) return '-';
+ const y = date.getFullYear();
+ const m = String(date.getMonth() + 1).padStart(2, '0');
+ const d = String(date.getDate()).padStart(2, '0');
+ const h = String(date.getHours()).padStart(2, '0');
+ const min = String(date.getMinutes()).padStart(2, '0');
+ const s = String(date.getSeconds()).padStart(2, '0');
+ return `${y}-${m}-${d} ${h}:${min}:${s}`;
+ } catch {
+ return '-';
+ }
+}
+
+export function formatDateTimeShort(dateTimeStr: string | null | undefined): string {
+ if (!dateTimeStr) return '-';
+ try {
+ const date = new Date(dateTimeStr);
+ if (isNaN(date.getTime())) return '-';
+ const m = String(date.getMonth() + 1).padStart(2, '0');
+ const d = String(date.getDate()).padStart(2, '0');
+ const h = String(date.getHours()).padStart(2, '0');
+ const min = String(date.getMinutes()).padStart(2, '0');
+ return `${m}/${d} ${h}:${min}`;
+ } catch {
+ return '-';
+ }
+}
+
+export function formatDuration(ms: number | null | undefined): string {
+ if (ms == null || ms < 0) return '-';
+ const totalSeconds = Math.floor(ms / 1000);
+ const hours = Math.floor(totalSeconds / 3600);
+ const minutes = Math.floor((totalSeconds % 3600) / 60);
+ const seconds = totalSeconds % 60;
+
+ if (hours > 0) return `${hours}시간 ${minutes}분 ${seconds}초`;
+ if (minutes > 0) return `${minutes}분 ${seconds}초`;
+ return `${seconds}초`;
+}
+
+export function calculateDuration(
+ startTime: string | null | undefined,
+ endTime: string | null | undefined,
+): string {
+ if (!startTime) return '-';
+ const start = new Date(startTime).getTime();
+ if (isNaN(start)) return '-';
+
+ if (!endTime) return '실행 중...';
+ const end = new Date(endTime).getTime();
+ if (isNaN(end)) return '-';
+
+ return formatDuration(end - start);
+}
diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json
new file mode 100644
index 0000000..a9b5a59
--- /dev/null
+++ b/frontend/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/frontend/tsconfig.json b/frontend/tsconfig.json
new file mode 100644
index 0000000..1ffef60
--- /dev/null
+++ b/frontend/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "files": [],
+ "references": [
+ { "path": "./tsconfig.app.json" },
+ { "path": "./tsconfig.node.json" }
+ ]
+}
diff --git a/frontend/tsconfig.node.json b/frontend/tsconfig.node.json
new file mode 100644
index 0000000..8a67f62
--- /dev/null
+++ b/frontend/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/frontend/vite.config.ts b/frontend/vite.config.ts
new file mode 100644
index 0000000..e161ecf
--- /dev/null
+++ b/frontend/vite.config.ts
@@ -0,0 +1,21 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+import tailwindcss from '@tailwindcss/vite'
+
+export default defineConfig({
+ plugins: [react(), tailwindcss()],
+ server: {
+ port: 5173,
+ proxy: {
+ '/snp-api/api': {
+ target: 'http://localhost:8041',
+ changeOrigin: true,
+ },
+ },
+ },
+ base: '/snp-api/',
+ build: {
+ outDir: '../src/main/resources/static',
+ emptyOutDir: true,
+ },
+})
diff --git a/pom.xml b/pom.xml
index c47e084..14e0c6c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,6 +160,35 @@
+
+ com.github.eirslett
+ frontend-maven-plugin
+ 1.15.1
+
+ frontend
+ v20.19.0
+
+
+
+ install-node-and-npm
+ install-node-and-npm
+
+
+ npm-install
+ npm
+
+ install
+
+
+
+ npm-build
+ npm
+
+ run build
+
+
+
+
org.apache.maven.plugins
maven-compiler-plugin
diff --git a/sql/chnprmship-cache-diag.sql b/sql/chnprmship-cache-diag.sql
new file mode 100644
index 0000000..716f1cd
--- /dev/null
+++ b/sql/chnprmship-cache-diag.sql
@@ -0,0 +1,149 @@
+-- ============================================================
+-- ChnPrmShip 캐시 검증 진단 쿼리
+-- 대상: t_std_snp_data.ais_target (일별 파티션)
+-- 목적: 최근 2일 내 대상 MMSI별 최종위치 캐싱 검증
+-- ============================================================
+
+-- ============================================================
+-- 0. 대상 MMSI 임시 테이블 생성
+-- ============================================================
+CREATE TEMP TABLE tmp_chn_mmsi (mmsi BIGINT PRIMARY KEY);
+
+-- psql에서 실행:
+-- \copy tmp_chn_mmsi(mmsi) FROM 'chnprmship-mmsi.txt'
+
+
+-- ============================================================
+-- 1. 기본 현황: 대상 MMSI 중 최근 2일 내 데이터 존재 여부
+-- ============================================================
+SELECT
+ (SELECT COUNT(*) FROM tmp_chn_mmsi) AS total_target_mmsi,
+ COUNT(DISTINCT a.mmsi) AS mmsi_with_data_2d,
+ (SELECT COUNT(*) FROM tmp_chn_mmsi) - COUNT(DISTINCT a.mmsi) AS mmsi_without_data_2d,
+ ROUND(COUNT(DISTINCT a.mmsi) * 100.0
+ / NULLIF((SELECT COUNT(*) FROM tmp_chn_mmsi), 0), 1) AS hit_rate_pct
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '2 days';
+
+
+-- ============================================================
+-- 2. 워밍업 시뮬레이션: 최근 2일 내 MMSI별 최종위치
+-- (수정 후 findLatestByMmsiIn 쿼리와 동일하게 동작)
+-- ============================================================
+SELECT COUNT(*) AS cached_count,
+ MIN(message_timestamp) AS oldest_cached,
+ MAX(message_timestamp) AS newest_cached,
+ NOW() - MAX(message_timestamp) AS newest_age
+FROM (
+ SELECT DISTINCT ON (a.mmsi) a.mmsi, a.message_timestamp
+ FROM t_std_snp_data.ais_target a
+ JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+ WHERE a.message_timestamp >= NOW() - INTERVAL '2 days'
+ ORDER BY a.mmsi, a.message_timestamp DESC
+) latest;
+
+
+-- ============================================================
+-- 3. MMSI별 최종위치 상세 (최근 2일 내, 최신순 상위 30건)
+-- ============================================================
+SELECT DISTINCT ON (a.mmsi)
+ a.mmsi,
+ a.message_timestamp,
+ a.name,
+ a.vessel_type,
+ a.lat,
+ a.lon,
+ a.sog,
+ a.cog,
+ a.heading,
+ NOW() - a.message_timestamp AS data_age
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '2 days'
+ORDER BY a.mmsi, a.message_timestamp DESC
+LIMIT 30;
+
+
+-- ============================================================
+-- 4. 데이터 없는 대상 MMSI (최근 2일 내 DB에 없는 선박)
+-- ============================================================
+SELECT t.mmsi AS missing_mmsi
+FROM tmp_chn_mmsi t
+LEFT JOIN (
+ SELECT DISTINCT mmsi
+ FROM t_std_snp_data.ais_target
+ WHERE mmsi IN (SELECT mmsi FROM tmp_chn_mmsi)
+ AND message_timestamp >= NOW() - INTERVAL '2 days'
+) a ON t.mmsi = a.mmsi
+WHERE a.mmsi IS NULL
+ORDER BY t.mmsi;
+
+
+-- ============================================================
+-- 5. 시간대별 분포 (2일 기준 세부 확인)
+-- ============================================================
+SELECT
+ '6시간 이내' AS time_range,
+ COUNT(DISTINCT mmsi) AS distinct_mmsi
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '6 hours'
+
+UNION ALL
+SELECT '12시간 이내', COUNT(DISTINCT mmsi)
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '12 hours'
+
+UNION ALL
+SELECT '1일 이내', COUNT(DISTINCT mmsi)
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '1 day'
+
+UNION ALL
+SELECT '2일 이내', COUNT(DISTINCT mmsi)
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+WHERE a.message_timestamp >= NOW() - INTERVAL '2 days'
+
+UNION ALL
+SELECT '전체(무제한)', COUNT(DISTINCT mmsi)
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi;
+
+
+-- ============================================================
+-- 6. 파티션별 대상 데이터 분포
+-- ============================================================
+SELECT
+ tableoid::regclass AS partition_name,
+ COUNT(*) AS row_count,
+ COUNT(DISTINCT mmsi) AS distinct_mmsi,
+ MIN(message_timestamp) AS min_ts,
+ MAX(message_timestamp) AS max_ts
+FROM t_std_snp_data.ais_target a
+JOIN tmp_chn_mmsi t ON a.mmsi = t.mmsi
+GROUP BY tableoid::regclass
+ORDER BY max_ts DESC;
+
+
+-- ============================================================
+-- 7. 전체 ais_target 파티션 현황
+-- ============================================================
+SELECT
+ c.relname AS partition_name,
+ pg_size_pretty(pg_relation_size(c.oid)) AS table_size,
+ s.n_live_tup AS estimated_rows
+FROM pg_inherits i
+JOIN pg_class c ON c.oid = i.inhrelid
+JOIN pg_stat_user_tables s ON s.relid = c.oid
+WHERE i.inhparent = 't_std_snp_data.ais_target'::regclass
+ORDER BY c.relname DESC;
+
+
+-- ============================================================
+-- 정리
+-- ============================================================
+DROP TABLE IF EXISTS tmp_chn_mmsi;
diff --git a/src/main/java/com/snp/batch/SnpBatchApplication.java b/src/main/java/com/snp/batch/SnpBatchApplication.java
index b59535c..8a395e9 100644
--- a/src/main/java/com/snp/batch/SnpBatchApplication.java
+++ b/src/main/java/com/snp/batch/SnpBatchApplication.java
@@ -2,10 +2,11 @@ package com.snp.batch;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.scheduling.annotation.EnableScheduling;
-@SpringBootApplication
+@SpringBootApplication(exclude = KafkaAutoConfiguration.class)
@EnableScheduling
@ConfigurationPropertiesScan
public class SnpBatchApplication {
diff --git a/src/main/java/com/snp/batch/common/util/JsonChangeDetector.java b/src/main/java/com/snp/batch/common/util/JsonChangeDetector.java
deleted file mode 100644
index 41eaf65..0000000
--- a/src/main/java/com/snp/batch/common/util/JsonChangeDetector.java
+++ /dev/null
@@ -1,233 +0,0 @@
-package com.snp.batch.common.util;
-
-import com.fasterxml.jackson.databind.ObjectMapper;
-
-import java.security.MessageDigest;
-import java.util.*;
-
-public class JsonChangeDetector {
-
- // Map으로 변환 시 사용할 ObjectMapper (표준 Mapper 사용)
- private static final ObjectMapper MAPPER = new ObjectMapper();
-
- // 해시 비교에서 제외할 필드 목록 (DataSetVersion 등)
- // 이 목록은 모든 JSON 계층에 걸쳐 적용됩니다.
- private static final java.util.Set EXCLUDE_KEYS =
- java.util.Set.of("DataSetVersion", "APSStatus", "LastUpdateDateTime");
-
- // =========================================================================
- // ✅ LIST_SORT_KEYS: 정적 초기화 블록을 사용한 Map 정의
- // =========================================================================
- private static final Map LIST_SORT_KEYS;
- static {
- // TreeMap을 사용하여 키를 알파벳 순으로 정렬할 수도 있지만, 여기서는 HashMap을 사용하고 final로 만듭니다.
- Map map = new HashMap<>();
- // List 필드명 // 정렬 기준 복합 키 (JSON 필드명, 쉼표로 구분)
- map.put("OwnerHistory", "OwnerCode,EffectiveDate,Sequence");
- map.put("CrewList", "LRNO,Shipname,Nationality");
- map.put("StowageCommodity", "Sequence,CommodityCode,StowageCode");
- map.put("GroupBeneficialOwnerHistory", "EffectiveDate,GroupBeneficialOwnerCode,Sequence");
- map.put("ShipManagerHistory", "EffectiveDate,ShipManagerCode,Sequence");
- map.put("OperatorHistory", "EffectiveDate,OperatorCode,Sequence");
- map.put("TechnicalManagerHistory", "EffectiveDate,Sequence,TechnicalManagerCode");
- map.put("BareBoatCharterHistory", "Sequence,EffectiveDate,BBChartererCode");
- map.put("NameHistory", "Sequence,EffectiveDate");
- map.put("FlagHistory", "FlagCode,EffectiveDate,Sequence");
- map.put("PandIHistory", "PandIClubCode,EffectiveDate");
- map.put("CallSignAndMmsiHistory", "EffectiveDate,SeqNo");
- map.put("IceClass", "IceClassCode");
- map.put("SafetyManagementCertificateHistory", "Sequence");
- map.put("ClassHistory", "ClassCode,EffectiveDate,Sequence");
- map.put("SurveyDatesHistory", "ClassSocietyCode");
- map.put("SurveyDatesHistoryUnique", "ClassSocietyCode,SurveyDate,SurveyType");
- map.put("SisterShipLinks", "LinkedLRNO");
- map.put("StatusHistory", "Sequence,StatusCode,StatusDate");
- map.put("SpecialFeature", "Sequence,SpecialFeatureCode");
- map.put("Thrusters", "Sequence");
- map.put("DarkActivityConfirmed", "Lrno,Mmsi,Dark_Time,Dark_Status");
- map.put("CompanyComplianceDetails", "OwCode");
- map.put("CompanyVesselRelationships", "LRNO");
- map.put("CompanyDetailsComplexWithCodesAndParent", "OWCODE,LastChangeDate");
-
- LIST_SORT_KEYS = Collections.unmodifiableMap(map);
- }
-
- // =========================================================================
- // 1. JSON 문자열을 정렬 및 필터링된 Map으로 변환하는 핵심 로직
- // =========================================================================
- /**
- * JSON 문자열을 Map으로 변환하고, 특정 키를 제거하며, 키 순서가 정렬된 상태로 만듭니다.
- * @param jsonString API 응답 또는 DB에서 읽은 JSON 문자열
- * @return 필터링되고 정렬된 Map 객체
- */
- public static Map jsonToSortedFilteredMap(String jsonString) {
- if (jsonString == null || jsonString.trim().isEmpty()) {
- return Collections.emptyMap();
- }
-
- try {
- // 1. Map으로 1차 변환합니다. (순서 보장 안됨)
- Map rawMap = MAPPER.readValue(jsonString,
- new com.fasterxml.jackson.core.type.TypeReference