diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..6cbd7fb0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,29 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Local font downloads
+/카카오작은글씨/
+/카카오큰글씨/
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.codex
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..cf409526
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,12 @@
+{
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": "explicit"
+ },
+ "eslint.validate": [
+ "javascript",
+ "javascriptreact",
+ "typescript",
+ "typescriptreact"
+ ],
+ "css.lint.unknownAtRules": "ignore"
+}
diff --git a/README.md b/README.md
index 503782c1..7dbf7ebf 100644
--- a/README.md
+++ b/README.md
@@ -1,84 +1,73 @@
-# **서론**
-
-안녕하세요 😻
-23기 프론트엔드 운영진 원채영입니다.
-
-이번 주에는 투두리스트를 넘어, 새로운 프로젝트인 **Messenger** 구현을 진행합니다.
-
-이번 과제는 디자이너와 협업하여 진행되는 프로젝트로,
-디자인 파트에서 리디자인한 메신저 화면을 직접 구현해보는 경험을 하게 됩니다.
-
-또한, 이번 주부터는 **TypeScript**와 **Tailwind CSS**를 필수로 적용하여 개발을 진행합니다.
-
-프로젝트 규모가 커질수록 컴포넌트의 props도 점점 복잡해지는데요,
-이때 TypeScript를 활용하면 props의 구조와 타입을 명확하게 관리할 수 있고,
-자동완성을 통해 개발 생산성을 높일 수 있습니다.
-
-아울러, 이번 과제에서는 **React Hooks**에 더욱 익숙해지는 것을 목표로 합니다.
-특히 useState, useEffect, useRef를 중심으로 활용해보며, React에서 자주 사용되는 핵심 개념을 확실히 익혀보시길 바랍니다.
-
-그럼 이번 과제도 파이팅입니다!! 🎉
-
-
-# **과제**
-
-## **목표**
-
-- TypeScript를 사용해봅시다.
-- useState로 컴포넌트의 상태를 관리합니다.
-- useEffect와 useRef의 사용법을 이해합니다.
-- Tailwind CSS의 사용법에 익숙해집니다.
-
-## **기한**
-
-- 2026년 3월 28일 토요일 23:59까지
-
-## **Review Questions**
-
-- 디자이너와 협업하며 전달받은 자료
-(피그마 링크, 캡처본, 커뮤니케이션 과정 등)
-
-- JSX / JS / TSX / TS의 개념과 각각의 차이점, 사용 이유
-
-- TypeScript를 사용하는 이유
-
-- SSR과 CSR의 개념 및 차이점
-
-
-## **필수 구현 기능**
-
-- 피그마 **Dev Mode**를 통해, 매칭된 디자인 파트원의 UI를 구현합니다.
- - [🔗 예시 1](https://react-messenger-21th-kwondu.vercel.app/)
- - [🔗 예시 2](https://react-messenger-21th-nine.vercel.app/)
-- 디자인 시스템을 구축합니다.
-- tailwind CSS를 사용합니다.
-- 메세지를 보내면 채팅방 하단으로 스크롤을 이동시킵니다.
-- 메세지에 유저 정보(프로필 사진, 이름)를 표시합니다.
- - user와 message 데이터를 json 파일에 저장합니다.
-- UI는 **반응형을 제외**하고 피그마파일을 따라서 진행합니다.
-
-### **추가 구현 기능**
-
-- 채팅방 상단의 프로필을 클릭하면 사용자를 변경할 수 있습니다.
-- 더블 클릭 하면 감정표현을 추가합니다.
-- 그 외 추가하고 싶은 기능이 있다면 마음껏 추가해 주세요!
-
-
-
-이번 과제는 다음 과제까지 이어지는 만큼, **확장성**을 충분히 고려해 주세요.
-4주차 과제에서는 **유저 및 기능 추가**, **Routing 구현**이 진행될 예정입니다.
-
-이를 대비해, [**zustand**](https://zustand-demo.pmnd.rs/)를 활용한 상태 관리도 미리 적용해보시는 것을 추천드립니다!
-
-## **링크 및 참고자료**
-
-- [React docs - Hook](https://ko.reactjs.org/docs/hooks-intro.html)
-- [React의 Hooks 완벽 정복하기](https://velog.io/@velopert/react-hooks#1-usestate)
-- [useEffect 완벽 가이드](https://overreacted.io/ko/a-complete-guide-to-useeffect/)
-- [코딩 컨벤션](https://ui.toast.com/fe-guide/ko_CODING-CONVENTION)
-- [타입스크립트 핸드북](https://joshua1988.github.io/ts/intro.html)
-- [리액트 프로젝트에서 타입스크립트 사용하기 (시리즈)](https://velog.io/@velopert/series/react-with-typescript)
-- [디자인 시스템 구축기](https://yozm.wishket.com/magazine/detail/1830/)
-- [[영상] : 컴포넌트에 대한 이해](https://www.youtube.com/watch?v=21eiJc90ggo)
-- [Tailwind CSS 장단점, 사용법](https://wonny.space/writing/dev/hello-tailwind-css)
-- [ts 절대경로 설정하기](https://tesseractjh.tistory.com/232)
+# 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 [Oxc](https://oxc.rs)
+- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
+
+## 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/eslint.config.js b/eslint.config.js
new file mode 100644
index 00000000..5e6b472f
--- /dev/null
+++ b/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/eslint.config.mjs b/eslint.config.mjs
new file mode 100644
index 00000000..50e8b00d
--- /dev/null
+++ b/eslint.config.mjs
@@ -0,0 +1,25 @@
+import js from "@eslint/js";
+import tseslint from "typescript-eslint";
+import reactHooks from "eslint-plugin-react-hooks";
+import { defineConfig } from "eslint/config";
+
+export default defineConfig(
+ {
+ ignores: ["dist", "node_modules"],
+ },
+
+ js.configs.recommended,
+ ...tseslint.configs.recommended,
+ ...tseslint.configs.stylistic,
+
+ {
+ files: ["**/*.{ts,tsx}"],
+ plugins: {
+ "react-hooks": reactHooks,
+ },
+ rules: {
+ ...reactHooks.configs.recommended.rules,
+ "no-console": "warn",
+ },
+ }
+);
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..ee37688a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+ react-messenger-23rd
+
+
+
+
+
+
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 00000000..fd40df2a
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,3372 @@
+{
+ "name": "react-messenger-23rd",
+ "version": "0.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "react-messenger-23rd",
+ "version": "0.0.0",
+ "dependencies": {
+ "@tailwindcss/vite": "^4.2.2",
+ "react": "^19.2.4",
+ "react-dom": "^19.2.4",
+ "react-router-dom": "^7.14.2",
+ "tailwindcss": "^4.2.2"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.39.4",
+ "@types/node": "^24.12.0",
+ "@types/react": "^19.2.14",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^6.0.1",
+ "eslint": "^9.39.4",
+ "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-refresh": "^0.5.2",
+ "globals": "^17.4.0",
+ "typescript": "~5.9.3",
+ "typescript-eslint": "^8.57.0",
+ "vite": "^8.0.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/core/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/@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-compilation-targets/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/@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-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.29.2",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz",
+ "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.28.6",
+ "@babel/types": "^7.29.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.29.2",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz",
+ "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.29.0"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.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/@emnapi/core": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.1.tgz",
+ "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.2.0",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.1.tgz",
+ "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz",
+ "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "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.2",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
+ "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/object-schema": "^2.1.7",
+ "debug": "^4.3.1",
+ "minimatch": "^3.1.5"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/config-array/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/@eslint/config-array/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/@eslint/config-array/node_modules/minimatch": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "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.5",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz",
+ "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.14.0",
+ "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.5",
+ "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/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/@eslint/eslintrc/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/@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/eslintrc/node_modules/minimatch": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "9.39.4",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz",
+ "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
+ "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==",
+ "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==",
+ "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==",
+ "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==",
+ "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==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
+ "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1",
+ "@tybys/wasm-util": "^0.10.1"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/Brooooooklyn"
+ }
+ },
+ "node_modules/@oxc-project/types": {
+ "version": "0.122.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.122.0.tgz",
+ "integrity": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ }
+ },
+ "node_modules/@rolldown/binding-android-arm64": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.11.tgz",
+ "integrity": "sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-darwin-arm64": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.11.tgz",
+ "integrity": "sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-darwin-x64": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.11.tgz",
+ "integrity": "sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-freebsd-x64": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.11.tgz",
+ "integrity": "sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.11.tgz",
+ "integrity": "sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm64-gnu": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.11.tgz",
+ "integrity": "sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-arm64-musl": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.11.tgz",
+ "integrity": "sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0-rc.11.tgz",
+ "integrity": "sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0-rc.11.tgz",
+ "integrity": "sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-x64-gnu": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.11.tgz",
+ "integrity": "sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-x64-musl": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.11.tgz",
+ "integrity": "sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-openharmony-arm64": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.11.tgz",
+ "integrity": "sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.11.tgz",
+ "integrity": "sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==",
+ "cpu": [
+ "wasm32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@napi-rs/wasm-runtime": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@rolldown/binding-win32-arm64-msvc": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.11.tgz",
+ "integrity": "sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-win32-x64-msvc": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.11.tgz",
+ "integrity": "sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-rc.7",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.7.tgz",
+ "integrity": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@tailwindcss/node": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.2.tgz",
+ "integrity": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/remapping": "^2.3.5",
+ "enhanced-resolve": "^5.19.0",
+ "jiti": "^2.6.1",
+ "lightningcss": "1.32.0",
+ "magic-string": "^0.30.21",
+ "source-map-js": "^1.2.1",
+ "tailwindcss": "4.2.2"
+ }
+ },
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.2.tgz",
+ "integrity": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 20"
+ },
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.2.2",
+ "@tailwindcss/oxide-darwin-arm64": "4.2.2",
+ "@tailwindcss/oxide-darwin-x64": "4.2.2",
+ "@tailwindcss/oxide-freebsd-x64": "4.2.2",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.2",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.2",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.2",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.2",
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.2",
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.2",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.2",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.2"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.2.tgz",
+ "integrity": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.2.tgz",
+ "integrity": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.2.tgz",
+ "integrity": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.2.tgz",
+ "integrity": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.2.tgz",
+ "integrity": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.2.tgz",
+ "integrity": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.2.tgz",
+ "integrity": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.2.tgz",
+ "integrity": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.2.tgz",
+ "integrity": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.2.tgz",
+ "integrity": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==",
+ "bundleDependencies": [
+ "@napi-rs/wasm-runtime",
+ "@emnapi/core",
+ "@emnapi/runtime",
+ "@tybys/wasm-util",
+ "@emnapi/wasi-threads",
+ "tslib"
+ ],
+ "cpu": [
+ "wasm32"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.8.1",
+ "@emnapi/runtime": "^1.8.1",
+ "@emnapi/wasi-threads": "^1.1.0",
+ "@napi-rs/wasm-runtime": "^1.1.1",
+ "@tybys/wasm-util": "^0.10.1",
+ "tslib": "^2.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.2.tgz",
+ "integrity": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.2.tgz",
+ "integrity": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/@tailwindcss/vite": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.2.tgz",
+ "integrity": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==",
+ "license": "MIT",
+ "dependencies": {
+ "@tailwindcss/node": "4.2.2",
+ "@tailwindcss/oxide": "4.2.2",
+ "tailwindcss": "4.2.2"
+ },
+ "peerDependencies": {
+ "vite": "^5.2.0 || ^6 || ^7 || ^8"
+ }
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.10.1",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
+ "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "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.12.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz",
+ "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
+ "devOptional": 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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.2.tgz",
+ "integrity": "sha512-NZZgp0Fm2IkD+La5PR81sd+g+8oS6JwJje+aRWsDocxHkjyRw0J5L5ZTlN3LI1LlOcGL7ph3eaIUmTXMIjLk0w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.12.2",
+ "@typescript-eslint/scope-manager": "8.57.2",
+ "@typescript-eslint/type-utils": "8.57.2",
+ "@typescript-eslint/utils": "8.57.2",
+ "@typescript-eslint/visitor-keys": "8.57.2",
+ "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.57.2",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.57.2.tgz",
+ "integrity": "sha512-30ScMRHIAD33JJQkgfGW1t8CURZtjc2JpTrq5n2HFhOefbAhb7ucc7xJwdWcrEtqUIYJ73Nybpsggii6GtAHjA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "8.57.2",
+ "@typescript-eslint/types": "8.57.2",
+ "@typescript-eslint/typescript-estree": "8.57.2",
+ "@typescript-eslint/visitor-keys": "8.57.2",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.57.2.tgz",
+ "integrity": "sha512-FuH0wipFywXRTHf+bTTjNyuNQQsQC3qh/dYzaM4I4W0jrCqjCVuUh99+xd9KamUfmCGPvbO8NDngo/vsnNVqgw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/tsconfig-utils": "^8.57.2",
+ "@typescript-eslint/types": "^8.57.2",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.57.2.tgz",
+ "integrity": "sha512-snZKH+W4WbWkrBqj4gUNRIGb/jipDW3qMqVJ4C9rzdFc+wLwruxk+2a5D+uoFcKPAqyqEnSb4l2ULuZf95eSkw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.57.2",
+ "@typescript-eslint/visitor-keys": "8.57.2"
+ },
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.2.tgz",
+ "integrity": "sha512-3Lm5DSM+DCowsUOJC+YqHHnKEfFh5CoGkj5Z31NQSNF4l5wdOwqGn99wmwN/LImhfY3KJnmordBq/4+VDe2eKw==",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.57.2.tgz",
+ "integrity": "sha512-Co6ZCShm6kIbAM/s+oYVpKFfW7LBc6FXoPXjTRQ449PPNBY8U0KZXuevz5IFuuUj2H9ss40atTaf9dlGLzbWZg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.57.2",
+ "@typescript-eslint/typescript-estree": "8.57.2",
+ "@typescript-eslint/utils": "8.57.2",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.57.2.tgz",
+ "integrity": "sha512-/iZM6FnM4tnx9csuTxspMW4BOSegshwX5oBDznJ7S4WggL7Vczz5d2W11ecc4vRrQMQHXRSxzrCsyG5EsPPTbA==",
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.2.tgz",
+ "integrity": "sha512-2MKM+I6g8tJxfSmFKOnHv2t8Sk3T6rF20A1Puk0svLK+uVapDZB/4pfAeB7nE83uAZrU6OxW+HmOd5wHVdXwXA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/project-service": "8.57.2",
+ "@typescript-eslint/tsconfig-utils": "8.57.2",
+ "@typescript-eslint/types": "8.57.2",
+ "@typescript-eslint/visitor-keys": "8.57.2",
+ "debug": "^4.4.3",
+ "minimatch": "^10.2.2",
+ "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/utils": {
+ "version": "8.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.57.2.tgz",
+ "integrity": "sha512-krRIbvPK1ju1WBKIefiX+bngPs+odIQUtR7kymzPfo1POVw3jlF+nLkmexdSSd4UCbDcQn+wMBATOOmpBbqgKg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.9.1",
+ "@typescript-eslint/scope-manager": "8.57.2",
+ "@typescript-eslint/types": "8.57.2",
+ "@typescript-eslint/typescript-estree": "8.57.2"
+ },
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.2.tgz",
+ "integrity": "sha512-zhahknjobV2FiD6Ee9iLbS7OV9zi10rG26odsQdfBO/hjSzUQbkIYgda+iNKK1zNiW2ey+Lf8MU5btN17V3dUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.57.2",
+ "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/@vitejs/plugin-react": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.1.tgz",
+ "integrity": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@rolldown/pluginutils": "1.0.0-rc.7"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "peerDependencies": {
+ "@rolldown/plugin-babel": "^0.1.7 || ^0.2.0",
+ "babel-plugin-react-compiler": "^1.0.0",
+ "vite": "^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@rolldown/plugin-babel": {
+ "optional": true
+ },
+ "babel-plugin-react-compiler": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/acorn": {
+ "version": "8.16.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
+ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
+ "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.14.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz",
+ "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
+ "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": "4.0.4",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.10.10",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.10.tgz",
+ "integrity": "sha512-sUoJ3IMxx4AyRqO4MLeHlnGDkyXRoUG0/AI9fjK+vS72ekpV0yWVY7O0BVjmBcRtkNcsAO2QDZ4tdKKGoI6YaQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz",
+ "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "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.30001781",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001781.tgz",
+ "integrity": "sha512-RdwNCyMsNBftLjW6w01z8bKEvT6e/5tpPVEgtn22TiLGlstHOVecsX2KHFkD5e/vRnIE4EGzpuIODb3mtswtkw==",
+ "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==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.325",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.325.tgz",
+ "integrity": "sha512-PwfIw7WQSt3xX7yOf5OE/unLzsK9CaN2f/FvV3WjPR1Knoc1T9vePRVV4W1EM301JzzysK51K7FNKcusCr0zYA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.20.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.1.tgz",
+ "integrity": "sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.3.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "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.4",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz",
+ "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.8.0",
+ "@eslint-community/regexpp": "^4.12.1",
+ "@eslint/config-array": "^0.21.2",
+ "@eslint/config-helpers": "^0.4.2",
+ "@eslint/core": "^0.17.0",
+ "@eslint/eslintrc": "^3.3.5",
+ "@eslint/js": "9.39.4",
+ "@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.14.0",
+ "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.5",
+ "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.5.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
+ "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "eslint": "^9 || ^10"
+ }
+ },
+ "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": "5.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint/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/eslint/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/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/eslint/node_modules/minimatch": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "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/espree/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/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==",
+ "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.4.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
+ "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==",
+ "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": "17.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz",
+ "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==",
+ "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==",
+ "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==",
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
+ "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.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
+ }
+ },
+ "node_modules/lightningcss-android-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
+ "cpu": [
+ "arm64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
+ "cpu": [
+ "x64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
+ "cpu": [
+ "x64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
+ "cpu": [
+ "arm"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
+ "cpu": [
+ "arm64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
+ "cpu": [
+ "x64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
+ "cpu": [
+ "x64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
+ "cpu": [
+ "arm64"
+ ],
+ "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.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
+ "cpu": [
+ "x64"
+ ],
+ "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==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.5"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "10.2.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "brace-expansion": "^5.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "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==",
+ "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.36",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.36.tgz",
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
+ "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==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.8",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
+ "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-router": {
+ "version": "7.14.2",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.14.2.tgz",
+ "integrity": "sha512-yCqNne6I8IB6rVCH7XUvlBK7/QKyqypBFGv+8dj4QBFJiiRX+FG7/nkdAvGElyvVZ/HQP5N19wzteuTARXi5Gw==",
+ "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.14.2",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.14.2.tgz",
+ "integrity": "sha512-YZcM5ES8jJSM+KrJ9BdvHHqlnGTg5tH3sC5ChFRj4inosKctdyzBDhOyyHdGk597q2OT6NTrCA1OvB/YDwfekQ==",
+ "license": "MIT",
+ "dependencies": {
+ "react-router": "7.14.2"
+ },
+ "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/rolldown": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.11.tgz",
+ "integrity": "sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==",
+ "license": "MIT",
+ "dependencies": {
+ "@oxc-project/types": "=0.122.0",
+ "@rolldown/pluginutils": "1.0.0-rc.11"
+ },
+ "bin": {
+ "rolldown": "bin/cli.mjs"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "optionalDependencies": {
+ "@rolldown/binding-android-arm64": "1.0.0-rc.11",
+ "@rolldown/binding-darwin-arm64": "1.0.0-rc.11",
+ "@rolldown/binding-darwin-x64": "1.0.0-rc.11",
+ "@rolldown/binding-freebsd-x64": "1.0.0-rc.11",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.11",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.11",
+ "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.11",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.0-rc.11",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.0-rc.11",
+ "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.11",
+ "@rolldown/binding-linux-x64-musl": "1.0.0-rc.11",
+ "@rolldown/binding-openharmony-arm64": "1.0.0-rc.11",
+ "@rolldown/binding-wasm32-wasi": "1.0.0-rc.11",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.11",
+ "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.11"
+ }
+ },
+ "node_modules/rolldown/node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-rc.11",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.11.tgz",
+ "integrity": "sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==",
+ "license": "MIT"
+ },
+ "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": "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/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==",
+ "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.2.2",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.2.tgz",
+ "integrity": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==",
+ "license": "MIT"
+ },
+ "node_modules/tapable": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.2.tgz",
+ "integrity": "sha512-1MOpMXuhGzGL5TTCZFItxCc0AARf1EZFQkGqMm7ERKj8+Hgr5oLvJOVFcC+lRmR8hCe2S3jC4T5D7Vg/d7/fhA==",
+ "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==",
+ "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.5.0",
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz",
+ "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.12"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD",
+ "optional": true
+ },
+ "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.57.2",
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.57.2.tgz",
+ "integrity": "sha512-VEPQ0iPgWO/sBaZOU1xo4nuNdODVOajPnTIbog2GKYr31nIlZ0fWPoCQgGfF3ETyBl1vn63F/p50Um9Z4J8O8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/eslint-plugin": "8.57.2",
+ "@typescript-eslint/parser": "8.57.2",
+ "@typescript-eslint/typescript-estree": "8.57.2",
+ "@typescript-eslint/utils": "8.57.2"
+ },
+ "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==",
+ "devOptional": 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": "8.0.2",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.2.tgz",
+ "integrity": "sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==",
+ "license": "MIT",
+ "dependencies": {
+ "lightningcss": "^1.32.0",
+ "picomatch": "^4.0.3",
+ "postcss": "^8.5.8",
+ "rolldown": "1.0.0-rc.11",
+ "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",
+ "@vitejs/devtools": "^0.1.0",
+ "esbuild": "^0.27.0",
+ "jiti": ">=1.21.0",
+ "less": "^4.0.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
+ },
+ "@vitejs/devtools": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "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/package.json b/package.json
new file mode 100644
index 00000000..dcf3692b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "react-messenger-23rd",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc -b && vite build",
+ "lint": "eslint .",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "@tailwindcss/vite": "^4.2.2",
+ "react": "^19.2.4",
+ "react-dom": "^19.2.4",
+ "react-router-dom": "^7.14.2",
+ "tailwindcss": "^4.2.2"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.39.4",
+ "@types/node": "^24.12.0",
+ "@types/react": "^19.2.14",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^6.0.1",
+ "eslint": "^9.39.4",
+ "eslint-plugin-react-hooks": "^7.0.1",
+ "eslint-plugin-react-refresh": "^0.5.2",
+ "globals": "^17.4.0",
+ "typescript": "~5.9.3",
+ "typescript-eslint": "^8.57.0",
+ "vite": "^8.0.1"
+ }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 00000000..6893eb13
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/fonts/kakao/KakaoBigSans-Bold.woff2 b/public/fonts/kakao/KakaoBigSans-Bold.woff2
new file mode 100644
index 00000000..af36463f
Binary files /dev/null and b/public/fonts/kakao/KakaoBigSans-Bold.woff2 differ
diff --git a/public/fonts/kakao/KakaoBigSans-ExtraBold.woff2 b/public/fonts/kakao/KakaoBigSans-ExtraBold.woff2
new file mode 100644
index 00000000..62f3405c
Binary files /dev/null and b/public/fonts/kakao/KakaoBigSans-ExtraBold.woff2 differ
diff --git a/public/fonts/kakao/KakaoBigSans-Regular.woff2 b/public/fonts/kakao/KakaoBigSans-Regular.woff2
new file mode 100644
index 00000000..1cd53c8e
Binary files /dev/null and b/public/fonts/kakao/KakaoBigSans-Regular.woff2 differ
diff --git a/public/fonts/kakao/KakaoSmallSans-Bold.woff2 b/public/fonts/kakao/KakaoSmallSans-Bold.woff2
new file mode 100644
index 00000000..57ec02e6
Binary files /dev/null and b/public/fonts/kakao/KakaoSmallSans-Bold.woff2 differ
diff --git a/public/fonts/kakao/KakaoSmallSans-Regular.woff2 b/public/fonts/kakao/KakaoSmallSans-Regular.woff2
new file mode 100644
index 00000000..3bbc3a57
Binary files /dev/null and b/public/fonts/kakao/KakaoSmallSans-Regular.woff2 differ
diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 00000000..f2a09882
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,124 @@
+import { useEffect, useState } from "react";
+import {
+ Navigate,
+ Route,
+ Routes,
+ useLocation,
+ useNavigate,
+ useParams,
+} from "react-router-dom";
+import ChatListPage from "@/features/chat/pages/ChatListPage";
+import ChatRoomPage from "@/features/chat/pages/ChatRoomPage";
+import FriendListPage from "@/features/chat/pages/FriendListPage";
+import MyProfilePage from "@/features/chat/pages/MyProfilePage";
+import SplashPage from "@/features/chat/pages/SplashPage";
+import { chatNotificationLabel } from "@/features/chat/constants/chatNotification";
+
+const SPLASH_THEME_COLOR = "#FFE000";
+const DEFAULT_THEME_COLOR = "#FFFFFF";
+const CHAT_ROOM_THEME_COLOR = "#A7C8E8";
+
+function getThemeColorMetaElement() {
+ const currentMetaElement = document.querySelector(
+ 'meta[name="theme-color"]'
+ );
+
+ if (currentMetaElement) return currentMetaElement;
+
+ const metaElement = document.createElement("meta");
+ metaElement.name = "theme-color";
+ document.head.appendChild(metaElement);
+
+ return metaElement;
+}
+
+function getThemeColorByPathname(pathname: string) {
+ if (pathname.startsWith("/chat/")) {
+ return CHAT_ROOM_THEME_COLOR;
+ }
+
+ return DEFAULT_THEME_COLOR;
+}
+
+function ChatListRoute() {
+ const navigate = useNavigate();
+
+ return (
+ navigate("/friends")}
+ onOpenChatRoom={(roomId) => navigate(`/chat/${roomId}`)}
+ />
+ );
+}
+
+function FriendListRoute() {
+ const navigate = useNavigate();
+
+ return (
+ navigate("/chats")}
+ onOpenMyProfile={() => navigate("/profile")}
+ />
+ );
+}
+
+function MyProfileRoute() {
+ const navigate = useNavigate();
+
+ return navigate("/friends")} />;
+}
+
+function ChatRoomRoute() {
+ const navigate = useNavigate();
+ const { roomId } = useParams();
+ const parsedRoomId = Number.parseInt(roomId ?? "", 10);
+ const currentRoomId = parsedRoomId === 2 ? 2 : 1;
+
+ return (
+ navigate("/chats")} />
+ );
+}
+
+function AppRoutes() {
+ return (
+
+ } />
+ } />
+ } />
+ } />
+ } />
+ } />
+
+ );
+}
+
+export default function App() {
+ const [isSplashVisible, setIsSplashVisible] = useState(true);
+ const location = useLocation();
+
+ useEffect(() => {
+ const splashTimerId = window.setTimeout(() => {
+ setIsSplashVisible(false);
+ }, 1500);
+
+ return () => window.clearTimeout(splashTimerId);
+ }, []);
+
+ useEffect(() => {
+ const themeColor = isSplashVisible
+ ? SPLASH_THEME_COLOR
+ : getThemeColorByPathname(location.pathname);
+ const themeColorMetaElement = getThemeColorMetaElement();
+
+ themeColorMetaElement.content = themeColor;
+ document.documentElement.style.setProperty("--app-theme-color", themeColor);
+ document.body.style.backgroundColor = themeColor;
+ }, [isSplashVisible, location.pathname]);
+
+ if (isSplashVisible) {
+ return ;
+ }
+
+ return ;
+}
diff --git a/src/assets/icons/Battery.svg b/src/assets/icons/Battery.svg
new file mode 100644
index 00000000..7b4f1b79
--- /dev/null
+++ b/src/assets/icons/Battery.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/icons/Connection.svg b/src/assets/icons/Connection.svg
new file mode 100644
index 00000000..70a190a3
--- /dev/null
+++ b/src/assets/icons/Connection.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ProfileImage.svg b/src/assets/icons/ProfileImage.svg
new file mode 100644
index 00000000..aa953ddc
--- /dev/null
+++ b/src/assets/icons/ProfileImage.svg
@@ -0,0 +1,12 @@
+
diff --git a/src/assets/icons/Signal.svg b/src/assets/icons/Signal.svg
new file mode 100644
index 00000000..0c63c730
--- /dev/null
+++ b/src/assets/icons/Signal.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_BellOff.svg b/src/assets/icons/ic_BellOff.svg
new file mode 100644
index 00000000..9ba8053b
--- /dev/null
+++ b/src/assets/icons/ic_BellOff.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Birth.svg b/src/assets/icons/ic_Birth.svg
new file mode 100644
index 00000000..4dc0718a
--- /dev/null
+++ b/src/assets/icons/ic_Birth.svg
@@ -0,0 +1,31 @@
+
diff --git a/src/assets/icons/ic_Chat.svg b/src/assets/icons/ic_Chat.svg
new file mode 100644
index 00000000..effc45c5
--- /dev/null
+++ b/src/assets/icons/ic_Chat.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_ChatPlus.svg b/src/assets/icons/ic_ChatPlus.svg
new file mode 100644
index 00000000..0767252e
--- /dev/null
+++ b/src/assets/icons/ic_ChatPlus.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/icons/ic_Chevron_Down.svg b/src/assets/icons/ic_Chevron_Down.svg
new file mode 100644
index 00000000..16d77a59
--- /dev/null
+++ b/src/assets/icons/ic_Chevron_Down.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Chevron_Left.svg b/src/assets/icons/ic_Chevron_Left.svg
new file mode 100644
index 00000000..8d61b8e6
--- /dev/null
+++ b/src/assets/icons/ic_Chevron_Left.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Chevron_Right.svg b/src/assets/icons/ic_Chevron_Right.svg
new file mode 100644
index 00000000..51a30cdb
--- /dev/null
+++ b/src/assets/icons/ic_Chevron_Right.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Chevron_Up.svg b/src/assets/icons/ic_Chevron_Up.svg
new file mode 100644
index 00000000..824b469e
--- /dev/null
+++ b/src/assets/icons/ic_Chevron_Up.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Edit.svg b/src/assets/icons/ic_Edit.svg
new file mode 100644
index 00000000..93361f64
--- /dev/null
+++ b/src/assets/icons/ic_Edit.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/icons/ic_Emoji.svg b/src/assets/icons/ic_Emoji.svg
new file mode 100644
index 00000000..57e9d049
--- /dev/null
+++ b/src/assets/icons/ic_Emoji.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/assets/icons/ic_Gift.svg b/src/assets/icons/ic_Gift.svg
new file mode 100644
index 00000000..49670a8b
--- /dev/null
+++ b/src/assets/icons/ic_Gift.svg
@@ -0,0 +1,7 @@
+
diff --git a/src/assets/icons/ic_Hash.svg b/src/assets/icons/ic_Hash.svg
new file mode 100644
index 00000000..2d963817
--- /dev/null
+++ b/src/assets/icons/ic_Hash.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/assets/icons/ic_Image.svg b/src/assets/icons/ic_Image.svg
new file mode 100644
index 00000000..9be2afb5
--- /dev/null
+++ b/src/assets/icons/ic_Image.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/icons/ic_KakaoStory.svg b/src/assets/icons/ic_KakaoStory.svg
new file mode 100644
index 00000000..c076b416
--- /dev/null
+++ b/src/assets/icons/ic_KakaoStory.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/assets/icons/ic_KakaoTalk.svg b/src/assets/icons/ic_KakaoTalk.svg
new file mode 100644
index 00000000..31521147
--- /dev/null
+++ b/src/assets/icons/ic_KakaoTalk.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/assets/icons/ic_Meatball.svg b/src/assets/icons/ic_Meatball.svg
new file mode 100644
index 00000000..1c71b946
--- /dev/null
+++ b/src/assets/icons/ic_Meatball.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Menu.svg b/src/assets/icons/ic_Menu.svg
new file mode 100644
index 00000000..a13e45c0
--- /dev/null
+++ b/src/assets/icons/ic_Menu.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/icons/ic_Plus.svg b/src/assets/icons/ic_Plus.svg
new file mode 100644
index 00000000..b14d77d2
--- /dev/null
+++ b/src/assets/icons/ic_Plus.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/icons/ic_ProfilePlus.svg b/src/assets/icons/ic_ProfilePlus.svg
new file mode 100644
index 00000000..16b92f98
--- /dev/null
+++ b/src/assets/icons/ic_ProfilePlus.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/icons/ic_Search.svg b/src/assets/icons/ic_Search.svg
new file mode 100644
index 00000000..a928460c
--- /dev/null
+++ b/src/assets/icons/ic_Search.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/icons/ic_Send.svg b/src/assets/icons/ic_Send.svg
new file mode 100644
index 00000000..7c02bb73
--- /dev/null
+++ b/src/assets/icons/ic_Send.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/assets/icons/ic_Setting.svg b/src/assets/icons/ic_Setting.svg
new file mode 100644
index 00000000..c4e32e24
--- /dev/null
+++ b/src/assets/icons/ic_Setting.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_Tack.svg b/src/assets/icons/ic_Tack.svg
new file mode 100644
index 00000000..d7c8a53f
--- /dev/null
+++ b/src/assets/icons/ic_Tack.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/ic_User.svg b/src/assets/icons/ic_User.svg
new file mode 100644
index 00000000..fcf68813
--- /dev/null
+++ b/src/assets/icons/ic_User.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/icons/ic_UserPlus.svg b/src/assets/icons/ic_UserPlus.svg
new file mode 100644
index 00000000..8d6d433d
--- /dev/null
+++ b/src/assets/icons/ic_UserPlus.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/assets/images/ProfileBg_1.png b/src/assets/images/ProfileBg_1.png
new file mode 100644
index 00000000..231afc65
Binary files /dev/null and b/src/assets/images/ProfileBg_1.png differ
diff --git a/src/assets/images/ProfileImage_1.png b/src/assets/images/ProfileImage_1.png
new file mode 100644
index 00000000..396af014
Binary files /dev/null and b/src/assets/images/ProfileImage_1.png differ
diff --git a/src/assets/images/ProfileImage_2.png b/src/assets/images/ProfileImage_2.png
new file mode 100644
index 00000000..8f5b6595
Binary files /dev/null and b/src/assets/images/ProfileImage_2.png differ
diff --git a/src/assets/images/ProfileImage_3.png b/src/assets/images/ProfileImage_3.png
new file mode 100644
index 00000000..770b66e3
Binary files /dev/null and b/src/assets/images/ProfileImage_3.png differ
diff --git a/src/assets/images/chat b/src/assets/images/chat
new file mode 100644
index 00000000..e69de29b
diff --git a/src/assets/images/image_1.jpg b/src/assets/images/image_1.jpg
new file mode 100644
index 00000000..cf3d82ad
Binary files /dev/null and b/src/assets/images/image_1.jpg differ
diff --git a/src/assets/images/image_2.jpg b/src/assets/images/image_2.jpg
new file mode 100644
index 00000000..a92f5bc1
Binary files /dev/null and b/src/assets/images/image_2.jpg differ
diff --git a/src/components/common/Avatar/Avatar.tsx b/src/components/common/Avatar/Avatar.tsx
new file mode 100644
index 00000000..cb0ff5c3
--- /dev/null
+++ b/src/components/common/Avatar/Avatar.tsx
@@ -0,0 +1 @@
+export {};
diff --git a/src/components/common/IconButon/IconButtons.tsx b/src/components/common/IconButon/IconButtons.tsx
new file mode 100644
index 00000000..cb0ff5c3
--- /dev/null
+++ b/src/components/common/IconButon/IconButtons.tsx
@@ -0,0 +1 @@
+export {};
diff --git a/src/features/chat/IosHomeIndicator.tsx b/src/features/chat/IosHomeIndicator.tsx
new file mode 100644
index 00000000..e69de29b
diff --git a/src/features/chat/components/chat-list/BottomNavigator.tsx b/src/features/chat/components/chat-list/BottomNavigator.tsx
new file mode 100644
index 00000000..cdd9326e
--- /dev/null
+++ b/src/features/chat/components/chat-list/BottomNavigator.tsx
@@ -0,0 +1,156 @@
+import CountBadge from "@/features/chat/components/chat-list/CountBadge";
+
+export type BottomNavigationTab = "friends" | "chat" | "more";
+
+export type BottomNavigatorProps = {
+ activeTab?: BottomNavigationTab;
+ chatNotificationLabel?: string;
+ onSelectTab?: (tab: BottomNavigationTab) => void;
+};
+
+type NavigationIconProps = {
+ isActive: boolean;
+};
+
+const NAV_ITEMS = [
+ {
+ tab: "friends",
+ label: "친구",
+ },
+ {
+ tab: "chat",
+ label: "채팅",
+ },
+ {
+ tab: "more",
+ label: "더보기",
+ },
+] satisfies {
+ tab: BottomNavigationTab;
+ label: string;
+}[];
+
+function getIconColorClassName(isActive: boolean) {
+ return isActive ? "text-chat-gray-700" : "text-chat-gray-300";
+}
+
+function FriendIcon({ isActive }: NavigationIconProps) {
+ return (
+
+ );
+}
+
+function ChatIcon({ isActive }: NavigationIconProps) {
+ return (
+
+ );
+}
+
+function MeatballIcon({ isActive }: NavigationIconProps) {
+ return (
+
+ );
+}
+
+function NavigationIcon({
+ tab,
+ isActive,
+}: {
+ tab: BottomNavigationTab;
+ isActive: boolean;
+}) {
+ if (tab === "friends") {
+ return ;
+ }
+
+ if (tab === "chat") {
+ return ;
+ }
+
+ return ;
+}
+
+export default function BottomNavigator({
+ activeTab = "chat",
+ chatNotificationLabel,
+ onSelectTab,
+}: BottomNavigatorProps) {
+ return (
+
+ );
+}
diff --git a/src/features/chat/components/chat-list/ChatListHeader.tsx b/src/features/chat/components/chat-list/ChatListHeader.tsx
new file mode 100644
index 00000000..10b05fa2
--- /dev/null
+++ b/src/features/chat/components/chat-list/ChatListHeader.tsx
@@ -0,0 +1,104 @@
+import CountBadge from "@/features/chat/components/chat-list/CountBadge";
+import SearchIconSvg from "@/assets/icons/ic_Search.svg";
+import ChatPlusIconSvg from "@/assets/icons/ic_ChatPlus.svg";
+import SettingIconSvg from "@/assets/icons/ic_Setting.svg";
+
+const HEADER_ACTIONS = [
+ {
+ label: "검색",
+ icon: SearchIconSvg,
+ },
+ {
+ label: "채팅방 만들기",
+ icon: ChatPlusIconSvg,
+ },
+ {
+ label: "설정",
+ icon: SettingIconSvg,
+ },
+];
+
+type ChatListFilter = "all" | "unread";
+
+type ChatListHeaderProps = {
+ activeFilter: ChatListFilter;
+ unreadCountLabel: string;
+ onFilterChange: (filter: ChatListFilter) => void;
+};
+
+export default function ChatListHeader({
+ activeFilter,
+ unreadCountLabel,
+ onFilterChange,
+}: ChatListHeaderProps) {
+ const isAllActive = activeFilter === "all";
+ const isUnreadActive = activeFilter === "unread";
+
+ return (
+
+
+
+ 채팅
+
+
+
+ {HEADER_ACTIONS.map((action) => (
+
+ ))}
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-list/ChatRoomList.tsx b/src/features/chat/components/chat-list/ChatRoomList.tsx
new file mode 100644
index 00000000..c307c42e
--- /dev/null
+++ b/src/features/chat/components/chat-list/ChatRoomList.tsx
@@ -0,0 +1,121 @@
+import ChatRoomListItem from "@/features/chat/components/chat-list/ChatRoomListItem";
+import { getChatRoomMessagesStorageKey } from "@/features/chat/constants/chatStorage";
+import { formatChatRoomSentAt } from "@/features/chat/utils/formatMessageTime";
+import chatRoomsData from "@/features/chat/data/chatRooms.json";
+import type { Message } from "@/features/chat/types/chat";
+
+type ChatRoomListProps = {
+ onOpenChatRoom?: (roomId: number) => void;
+ showUnreadOnly?: boolean;
+};
+
+type ChatRoom = {
+ id: number;
+ name: string;
+ participantCount?: number;
+ profileImages?: string[];
+ lastMessageType?: "text" | "image";
+ imageCount?: number;
+ previewImageUrl?: string;
+ lastMessage: string;
+ lastMessageCreatedAt: string;
+ lastMessageCreatedDate: string;
+ unreadLabel?: string;
+ isPinned?: boolean;
+ isMuted?: boolean;
+};
+
+const chatRooms = chatRoomsData as ChatRoom[];
+
+function isPreviewMessage(message: Message) {
+ return message.type === "text" || message.type === "image";
+}
+
+function getImageUrls(message: Message) {
+ if (message.imageUrls && message.imageUrls.length > 0) return message.imageUrls;
+ if (message.imageUrl) return [message.imageUrl];
+
+ return [];
+}
+
+function getRoomWithSavedPreview(room: ChatRoom): ChatRoom {
+ const storageKey = getChatRoomMessagesStorageKey(room.id);
+ if (!storageKey) return room;
+
+ try {
+ const savedMessages = localStorage.getItem(storageKey);
+ if (!savedMessages) return room;
+
+ const parsed = JSON.parse(savedMessages);
+ if (!Array.isArray(parsed)) return room;
+
+ const lastMessage = (parsed as Message[]).findLast(isPreviewMessage);
+ if (!lastMessage) return room;
+
+ if (lastMessage.type === "image") {
+ const imageUrls = getImageUrls(lastMessage);
+
+ return {
+ ...room,
+ lastMessageType: "image",
+ imageCount: Math.max(imageUrls.length, 1),
+ previewImageUrl: imageUrls[0],
+ lastMessage: "사진",
+ lastMessageCreatedAt: lastMessage.createdAt,
+ lastMessageCreatedDate: lastMessage.createdDate,
+ };
+ }
+
+ return {
+ ...room,
+ lastMessageType: "text",
+ imageCount: undefined,
+ previewImageUrl: undefined,
+ lastMessage: lastMessage.text ?? "",
+ lastMessageCreatedAt: lastMessage.createdAt,
+ lastMessageCreatedDate: lastMessage.createdDate,
+ };
+ } catch (error) {
+ console.error("채팅방 미리보기를 불러오지 못했습니다.", error);
+ return room;
+ }
+}
+
+export default function ChatRoomList({
+ onOpenChatRoom,
+ showUnreadOnly = false,
+}: ChatRoomListProps) {
+ const rooms = chatRooms
+ .map(getRoomWithSavedPreview)
+ .filter((room) => !showUnreadOnly || room.unreadLabel !== undefined);
+
+ return (
+
+ {rooms.map((room) => {
+ const canOpenRoom = !!onOpenChatRoom && (room.id === 1 || room.id === 2);
+
+ return (
+ onOpenChatRoom?.(room.id) : undefined}
+ />
+ );
+ })}
+
+ );
+}
diff --git a/src/features/chat/components/chat-list/ChatRoomListItem.tsx b/src/features/chat/components/chat-list/ChatRoomListItem.tsx
new file mode 100644
index 00000000..9d3a35cc
--- /dev/null
+++ b/src/features/chat/components/chat-list/ChatRoomListItem.tsx
@@ -0,0 +1,389 @@
+import { useRef, useState, type PointerEvent } from "react";
+import CountBadge from "@/features/chat/components/chat-list/CountBadge";
+import ProfileImageSvg from "@/assets/icons/ProfileImage.svg";
+import ProfileImageOnePng from "@/assets/images/ProfileImage_1.png";
+import ProfileImageTwoPng from "@/assets/images/ProfileImage_2.png";
+import ImageOneJpg from "@/assets/images/image_1.jpg";
+import ImageTwoJpg from "@/assets/images/image_2.jpg";
+import TackIconSvg from "@/assets/icons/ic_Tack.svg";
+import BellOffIconSvg from "@/assets/icons/ic_BellOff.svg";
+import type { MessageType } from "@/features/chat/types/chat";
+
+type ChatRoomListItemProps = {
+ name: string;
+ participantCount?: number;
+ profileImageNames?: string[];
+ lastMessageType?: MessageType;
+ imageCount?: number;
+ previewImageUrl?: string;
+ lastMessage: string;
+ sentAtLabel: string;
+ unreadLabel?: string;
+ showPinnedIcon?: boolean;
+ showMutedIcon?: boolean;
+ disabled?: boolean;
+ onClick?: () => void;
+};
+
+type ProfileTileProps = {
+ className: string;
+ imageSrc: string;
+ roundedClassName?: string;
+};
+
+const ACTION_AREA_WIDTH = 160;
+const SWIPE_DIRECTION_THRESHOLD = 24;
+
+const profileImageMap: Record = {
+ "ProfileImage.svg": ProfileImageSvg,
+ "ProfileImage_1.png": ProfileImageOnePng,
+ "ProfileImage_2.png": ProfileImageTwoPng,
+};
+
+const previewImageMap: Record = {
+ image_1: ImageOneJpg,
+ "image_1.jpg": ImageOneJpg,
+ image_2: ImageTwoJpg,
+ "image_2.jpg": ImageTwoJpg,
+};
+
+function resolveProfileImage(profileImage?: string) {
+ if (!profileImage) return ProfileImageSvg;
+
+ return profileImageMap[profileImage] ?? ProfileImageSvg;
+}
+
+function resolvePreviewImage(imageUrl?: string) {
+ if (!imageUrl) return ImageOneJpg;
+
+ return previewImageMap[imageUrl] ?? imageUrl;
+}
+
+function ProfileTile({
+ className,
+ imageSrc,
+ roundedClassName = "rounded-[10px]",
+}: ProfileTileProps) {
+ return (
+
+
+
+ );
+}
+
+function GroupProfileImage({ profileImages }: { profileImages: string[] }) {
+ const count = profileImages.length;
+ const resolvedProfileImages = profileImages.map(resolveProfileImage);
+
+ if (count === 2) {
+ return (
+
+
+
+
+ );
+ }
+
+ if (count === 3) {
+ return (
+
+
+
+
+
+ );
+ }
+
+ return (
+
+ {resolvedProfileImages.slice(0, 4).map((imageSrc, index) => (
+
+ ))}
+
+ );
+}
+
+function ChatRoomProfileImage({
+ profileImages = ["ProfileImage.svg"],
+}: {
+ profileImages?: string[];
+}) {
+ if (profileImages.length > 1) {
+ return ;
+ }
+
+ return (
+
+ );
+}
+
+function ImageMessagePreview({
+ imageCount = 1,
+ previewImageUrl,
+}: {
+ imageCount?: number;
+ previewImageUrl?: string;
+}) {
+ const imageCountLabel = String(imageCount);
+
+ return (
+
+
+
+
+
+ {imageCountLabel}
+
+
+ 장의 사진을 보냈습니다.
+
+
+
+ );
+}
+
+function MessagePreview({
+ lastMessageType = "text",
+ imageCount,
+ previewImageUrl,
+ lastMessage,
+}: {
+ lastMessageType?: MessageType;
+ imageCount?: number;
+ previewImageUrl?: string;
+ lastMessage: string;
+}) {
+ if (lastMessageType === "image") {
+ return (
+
+ );
+ }
+
+ return (
+
+ {lastMessage}
+
+ );
+}
+
+export default function ChatRoomListItem({
+ name,
+ participantCount,
+ profileImageNames,
+ lastMessageType,
+ imageCount,
+ previewImageUrl,
+ lastMessage,
+ sentAtLabel,
+ unreadLabel,
+ showPinnedIcon = false,
+ showMutedIcon = false,
+ disabled = false,
+ onClick,
+}: ChatRoomListItemProps) {
+ const [translateX, setTranslateX] = useState(0);
+ const [isDragging, setIsDragging] = useState(false);
+ const startXRef = useRef(0);
+ const startTranslateXRef = useRef(0);
+ const currentTranslateXRef = useRef(0);
+ const suppressClickRef = useRef(false);
+
+ const hasTitleMeta =
+ participantCount !== undefined || showPinnedIcon || showMutedIcon;
+ const isActionVisible = isDragging || translateX < 0;
+
+ const updateTranslateX = (nextTranslateX: number) => {
+ currentTranslateXRef.current = nextTranslateX;
+ setTranslateX(nextTranslateX);
+ };
+
+ const handlePointerDown = (event: PointerEvent) => {
+ setIsDragging(true);
+ startXRef.current = event.clientX;
+ startTranslateXRef.current = currentTranslateXRef.current;
+ suppressClickRef.current = false;
+ event.currentTarget.setPointerCapture(event.pointerId);
+ };
+
+ const handlePointerMove = (event: PointerEvent) => {
+ if (!isDragging) return;
+
+ const deltaX = event.clientX - startXRef.current;
+ const nextTranslateX = Math.min(
+ 0,
+ Math.max(-ACTION_AREA_WIDTH, startTranslateXRef.current + deltaX)
+ );
+
+ if (Math.abs(deltaX) > 6) {
+ suppressClickRef.current = true;
+ }
+
+ updateTranslateX(nextTranslateX);
+ };
+
+ const handlePointerEnd = (event: PointerEvent) => {
+ if (!isDragging) return;
+
+ setIsDragging(false);
+
+ if (event.currentTarget.hasPointerCapture(event.pointerId)) {
+ event.currentTarget.releasePointerCapture(event.pointerId);
+ }
+
+ const dragDistance = event.clientX - startXRef.current;
+ const shouldOpen =
+ Math.abs(dragDistance) > SWIPE_DIRECTION_THRESHOLD
+ ? dragDistance < 0
+ : currentTranslateXRef.current <= -ACTION_AREA_WIDTH / 2;
+
+ updateTranslateX(shouldOpen ? -ACTION_AREA_WIDTH : 0);
+ };
+
+ const handleClick = () => {
+ if (suppressClickRef.current) {
+ suppressClickRef.current = false;
+ return;
+ }
+
+ if (currentTranslateXRef.current !== 0) {
+ updateTranslateX(0);
+ return;
+ }
+
+ if (!disabled) {
+ onClick?.();
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-list/CountBadge.tsx b/src/features/chat/components/chat-list/CountBadge.tsx
new file mode 100644
index 00000000..595a3897
--- /dev/null
+++ b/src/features/chat/components/chat-list/CountBadge.tsx
@@ -0,0 +1,18 @@
+type CountBadgeProps = {
+ label: string;
+ className?: string;
+};
+
+export default function CountBadge({ label, className = "" }: CountBadgeProps) {
+ return (
+
+
+
+ {label}
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/ChatInputBar.tsx b/src/features/chat/components/chat-room/ChatInputBar.tsx
new file mode 100644
index 00000000..dc93d39b
--- /dev/null
+++ b/src/features/chat/components/chat-room/ChatInputBar.tsx
@@ -0,0 +1,142 @@
+import { useEffect, useRef, useState } from "react";
+import type { ChangeEvent } from "react";
+import { compressImageFiles } from "@/features/chat/utils/imageCompression";
+import { isHangulJamoOnlyText } from "@/features/chat/utils/hangulJamo";
+import PlusIconSvg from "@/assets/icons/ic_Plus.svg";
+import EmojiIconSvg from "@/assets/icons/ic_Emoji.svg";
+import HashIconSvg from "@/assets/icons/ic_Hash.svg";
+import SendIconSvg from "@/assets/icons/ic_Send.svg";
+
+type ChatInputBarProps = {
+ onSendText: (text: string) => void;
+ onSendImages: (imageUrls: string[]) => void;
+};
+
+const TEXTAREA_MAX_HEIGHT = 157;
+
+export default function ChatInputBar({
+ onSendText,
+ onSendImages,
+}: ChatInputBarProps) {
+ const [input, setInput] = useState("");
+ const [isUploading, setIsUploading] = useState(false);
+ const fileInputRef = useRef(null);
+ const textareaRef = useRef(null);
+
+ const hasText = input.trim().length > 0;
+ const shouldUseJamoFix = isHangulJamoOnlyText(input);
+
+ useEffect(() => {
+ const textarea = textareaRef.current;
+ if (!textarea) return;
+
+ textarea.style.height = "auto";
+ textarea.style.height = `${Math.min(
+ textarea.scrollHeight,
+ TEXTAREA_MAX_HEIGHT
+ )}px`;
+ textarea.style.overflowY =
+ textarea.scrollHeight > TEXTAREA_MAX_HEIGHT ? "auto" : "hidden";
+ }, [input]);
+
+ const handleSend = () => {
+ const trimmed = input.trim();
+ if (!trimmed) return;
+
+ onSendText(trimmed);
+ setInput("");
+ };
+
+ const handleFileChange = async (
+ event: ChangeEvent
+ ) => {
+ const files = Array.from(event.target.files ?? []);
+ if (files.length === 0) return;
+
+ try {
+ setIsUploading(true);
+ const imageUrls = await compressImageFiles(files);
+ onSendImages(imageUrls);
+ } catch (error) {
+ console.error(error);
+ alert("이미지를 처리하는 중 문제가 발생했습니다.");
+ } finally {
+ setIsUploading(false);
+ event.target.value = "";
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/ChatRoomHeader.tsx b/src/features/chat/components/chat-room/ChatRoomHeader.tsx
new file mode 100644
index 00000000..98173b6f
--- /dev/null
+++ b/src/features/chat/components/chat-room/ChatRoomHeader.tsx
@@ -0,0 +1,76 @@
+import ChevronLeftIconSvg from "@/assets/icons/ic_Chevron_Left.svg";
+import SearchIconSvg from "@/assets/icons/ic_Search.svg";
+import MenuIconSvg from "@/assets/icons/ic_Menu.svg";
+
+type ChatRoomHeaderProps = {
+ title: string;
+ participantCount?: number;
+ onBack?: () => void;
+};
+
+export default function ChatRoomHeader({
+ title,
+ participantCount,
+ onBack,
+}: ChatRoomHeaderProps) {
+ return (
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/DateDivider.tsx b/src/features/chat/components/chat-room/DateDivider.tsx
new file mode 100644
index 00000000..94252dda
--- /dev/null
+++ b/src/features/chat/components/chat-room/DateDivider.tsx
@@ -0,0 +1,15 @@
+type DateDividerProps = {
+ label: string;
+};
+
+export default function DateDivider({ label }: DateDividerProps) {
+ return (
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/ImageMessageGrid.tsx b/src/features/chat/components/chat-room/ImageMessageGrid.tsx
new file mode 100644
index 00000000..924d3427
--- /dev/null
+++ b/src/features/chat/components/chat-room/ImageMessageGrid.tsx
@@ -0,0 +1,220 @@
+type ImageMessageGridProps = {
+ imageUrls: string[];
+};
+
+function getChatImageAlt(index: number) {
+ return `채팅 이미지 ${index + 1}`;
+}
+
+function renderSingleImage(imageUrl: string) {
+ return (
+
+

+
+ );
+}
+
+function renderTwoGrid(imageUrls: string[]) {
+ const count = imageUrls.length;
+ const cellSize = 119;
+
+ if (count === 2) {
+ return (
+
+ {imageUrls.map((src, index) => (
+
+

+
+ ))}
+
+ );
+ }
+
+ if (count === 3) {
+ return (
+
+
+

+
+
+
+
+

+
+
+

+
+
+
+ );
+ }
+
+ return (
+
+ {imageUrls.slice(0, 4).map((src, index) => (
+
+

+
+ ))}
+
+ );
+}
+
+function renderThreeGrid(imageUrls: string[]) {
+ const count = imageUrls.length;
+ const maxTiles = 9;
+ const displayCount = Math.min(count, maxTiles);
+
+ const columns = 6;
+ const gap = 2;
+ const containerWidth = 236;
+ const colWidth = (containerWidth - gap * (columns - 1)) / columns;
+
+ const getSpan = (index: number) => {
+ const visibleCount = displayCount;
+ const remainder = visibleCount % 3;
+
+ if (visibleCount <= 6) {
+ if (remainder === 2 && index >= 3) return 3;
+ if (remainder === 1 && index >= 3) return 6;
+ }
+
+ if (visibleCount > 6) {
+ if (remainder === 2 && index >= 6) return 3;
+ if (remainder === 1 && index >= 6) return 6;
+ }
+
+ return 2;
+ };
+
+ const getTileWidth = (span: number) => colWidth * span + gap * (span - 1);
+
+ return (
+
+
+ {Array.from({ length: displayCount }).map((_, index) => {
+ const isCountTile = count > maxTiles && index === maxTiles - 1;
+ const span = isCountTile ? 2 : getSpan(index);
+ const tileWidth = getTileWidth(span);
+
+ if (isCountTile) {
+ return (
+
+

+
+
+ {count}장
+
+
+ );
+ }
+
+ return (
+
+

+
+ );
+ })}
+
+
+ );
+}
+
+export default function ImageMessageGrid({
+ imageUrls,
+}: ImageMessageGridProps) {
+ const count = imageUrls.length;
+
+ if (count === 0) return null;
+ if (count === 1) return renderSingleImage(imageUrls[0]);
+ if (count <= 4) return renderTwoGrid(imageUrls);
+
+ return renderThreeGrid(imageUrls);
+}
diff --git a/src/features/chat/components/chat-room/InviteSystemMessage.tsx b/src/features/chat/components/chat-room/InviteSystemMessage.tsx
new file mode 100644
index 00000000..7d20a48d
--- /dev/null
+++ b/src/features/chat/components/chat-room/InviteSystemMessage.tsx
@@ -0,0 +1,22 @@
+type InviteSystemMessageProps = {
+ inviter: string;
+ users: string;
+};
+
+export default function InviteSystemMessage({
+ inviter,
+ users,
+}: InviteSystemMessageProps) {
+ return (
+
+
+
+ {inviter}
+
+
+ 님이 {users} 채팅방에 초대했습니다.
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/IosHomeIndicator.tsx b/src/features/chat/components/chat-room/IosHomeIndicator.tsx
new file mode 100644
index 00000000..d66cbd3c
--- /dev/null
+++ b/src/features/chat/components/chat-room/IosHomeIndicator.tsx
@@ -0,0 +1,7 @@
+export default function IosHomeIndicator() {
+ return (
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/MessageBubble.tsx b/src/features/chat/components/chat-room/MessageBubble.tsx
new file mode 100644
index 00000000..503fca48
--- /dev/null
+++ b/src/features/chat/components/chat-room/MessageBubble.tsx
@@ -0,0 +1,248 @@
+import { useEffect, useRef, useState } from "react";
+import ImageMessageGrid from "@/features/chat/components/chat-room/ImageMessageGrid";
+import { isHangulCompatibilityJamo } from "@/features/chat/utils/hangulJamo";
+
+type MessageBubbleProps = {
+ text?: string;
+ time?: string;
+ showTime?: boolean;
+ unreadCount?: number;
+ isMine?: boolean;
+ type: "text" | "image";
+ imageUrl?: string;
+ imageUrls?: string[];
+};
+
+function extractEmojiUnits(text: string) {
+ const trimmed = text.trim();
+ if (!trimmed) return [];
+
+ const units = Array.from(trimmed);
+ if (units.length === 0) return [];
+
+ const isEmojiOnly = units.every((char) =>
+ /\p{Extended_Pictographic}/u.test(char)
+ );
+
+ return isEmojiOnly ? units : [];
+}
+
+function renderTextWithJamoFix(text: string) {
+ return Array.from(text).map((char, index) =>
+ isHangulCompatibilityJamo(char) ? (
+
+ {char}
+
+ ) : (
+ char
+ )
+ );
+}
+
+function EmojiOnlyBubble({ emojis }: { emojis: string[] }) {
+ if (emojis.length === 1) {
+ return (
+
+ {emojis[0]}
+
+ );
+ }
+
+ if (emojis.length === 2) {
+ return (
+
+ {emojis.map((emoji, index) => (
+
+ {emoji}
+
+ ))}
+
+ );
+ }
+
+ return (
+
+ {emojis.map((emoji, index) => (
+
+ {emoji}
+
+ ))}
+
+ );
+}
+
+function TextBubbleContent({
+ text,
+ isMine,
+}: {
+ text: string;
+ isMine: boolean;
+}) {
+ const measureRef = useRef(null);
+ const [isExpanded, setIsExpanded] = useState(false);
+ const [isMaxVariant, setIsMaxVariant] = useState(false);
+
+ useEffect(() => {
+ const element = measureRef.current;
+ if (!element) return;
+
+ const checkOverflow = () => {
+ setIsMaxVariant(element.scrollHeight > 264);
+ };
+
+ checkOverflow();
+ window.addEventListener("resize", checkOverflow);
+
+ return () => {
+ window.removeEventListener("resize", checkOverflow);
+ };
+ }, [text]);
+
+ const bubbleBgClass = isMine ? "bg-chat-yellow-200" : "bg-chat-white";
+
+ if (!isMaxVariant) {
+ return (
+
+
+ {renderTextWithJamoFix(text)}
+
+
+ );
+ }
+
+ return (
+
+
+ {renderTextWithJamoFix(text)}
+
+
+
+
+
+
+ );
+}
+
+export default function MessageBubble({
+ text,
+ time,
+ showTime = false,
+ unreadCount,
+ isMine = false,
+ type,
+ imageUrl,
+ imageUrls,
+}: MessageBubbleProps) {
+ const showMeta = unreadCount !== undefined || showTime;
+
+ const resolvedImageUrls =
+ imageUrls && imageUrls.length > 0
+ ? imageUrls
+ : imageUrl
+ ? [imageUrl]
+ : [];
+
+ const emojiUnits = type === "text" && text ? extractEmojiUnits(text) : [];
+ const isEmojiOnlyMessage = emojiUnits.length >= 1 && emojiUnits.length <= 3;
+
+ return (
+
+ {isMine ? (
+ <>
+ {showMeta ? (
+
+ {showTime && time ? (
+
+ {time}
+
+ ) : null}
+
+ {unreadCount !== undefined ? (
+
+ {unreadCount}
+
+ ) : null}
+
+ ) : null}
+
+ {type === "text" ? (
+ isEmojiOnlyMessage ? (
+
+
+
+ ) : (
+
+ )
+ ) : (
+
+
+
+ )}
+ >
+ ) : (
+ <>
+ {type === "text" ? (
+ isEmojiOnlyMessage ? (
+
+
+
+ ) : (
+
+ )
+ ) : (
+
+
+
+ )}
+
+ {showMeta ? (
+
+ {unreadCount !== undefined ? (
+
+ {unreadCount}
+
+ ) : null}
+
+ {showTime && time ? (
+
+ {time}
+
+ ) : null}
+
+ ) : null}
+ >
+ )}
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/MessageItem.tsx b/src/features/chat/components/chat-room/MessageItem.tsx
new file mode 100644
index 00000000..8510f79f
--- /dev/null
+++ b/src/features/chat/components/chat-room/MessageItem.tsx
@@ -0,0 +1,39 @@
+import type { ReactNode } from "react";
+import ProfileImageSvg from "@/assets/icons/ProfileImage.svg";
+import ProfileImageOnePng from "@/assets/images/ProfileImage_1.png";
+import ProfileImageTwoPng from "@/assets/images/ProfileImage_2.png";
+import type { User } from "@/features/chat/types/chat";
+
+type MessageItemProps = {
+ sender: User;
+ children: ReactNode;
+};
+
+const profileImageMap: Record = {
+ "ProfileImage.svg": ProfileImageSvg,
+ "ProfileImage_1.png": ProfileImageOnePng,
+ "ProfileImage_2.png": ProfileImageTwoPng,
+};
+
+export default function MessageItem({ sender, children }: MessageItemProps) {
+ const resolvedProfileImage =
+ profileImageMap[sender.profileImage] ?? ProfileImageSvg;
+
+ return (
+
+

+
+
+
+ {sender.name}
+
+
+
{children}
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/MessageList.tsx b/src/features/chat/components/chat-room/MessageList.tsx
new file mode 100644
index 00000000..e3d95e16
--- /dev/null
+++ b/src/features/chat/components/chat-room/MessageList.tsx
@@ -0,0 +1,118 @@
+import type { RefObject } from "react";
+import DateDivider from "@/features/chat/components/chat-room/DateDivider";
+import MessageBubble from "@/features/chat/components/chat-room/MessageBubble";
+import MessageItem from "@/features/chat/components/chat-room/MessageItem";
+import SystemMessage from "@/features/chat/components/chat-room/SystemMessage";
+import { groupMessages } from "@/features/chat/utils/groupMessages";
+import type { Message, User } from "@/features/chat/types/chat";
+
+type MessageListProps = {
+ messages: Message[];
+ users: User[];
+ bottomRef: RefObject;
+};
+
+function formatDateDividerLabel(dateString: string) {
+ const date = new Date(dateString);
+
+ if (Number.isNaN(date.getTime())) return dateString;
+
+ return `${date.getMonth() + 1}월 ${date.getDate()}일`;
+}
+
+export default function MessageList({
+ messages,
+ users,
+ bottomRef,
+}: MessageListProps) {
+ const groups = groupMessages(messages);
+
+ return (
+
+
+ {groups.map((group, groupIndex) => {
+ const prevGroup = groups[groupIndex - 1];
+ const shouldShowDateDivider =
+ groupIndex !== 0 && prevGroup?.createdDate !== group.createdDate;
+ const shouldRemoveGapBeforeDateDivider =
+ shouldShowDateDivider && prevGroup?.kind === "system";
+ const groupSpacingClass =
+ groupIndex === 0 || shouldRemoveGapBeforeDateDivider ? "" : "mt-[24px]";
+
+ if (group.kind === "system") {
+ return (
+
+ {shouldShowDateDivider ? (
+
+ ) : null}
+
+
+
+ );
+ }
+
+ const sender = users.find((user) => user.id === group.senderId);
+ if (!sender) return null;
+
+ const isMine = !!sender.isMe;
+
+ return (
+
+ {shouldShowDateDivider ? (
+
+ ) : null}
+
+ {isMine ? (
+
+ {group.messages.map((message) => (
+
+ ))}
+
+ ) : (
+
+
+ {group.messages.map((message) => (
+
+ ))}
+
+
+ )}
+
+ );
+ })}
+
+
+
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/StatusBar.tsx b/src/features/chat/components/chat-room/StatusBar.tsx
new file mode 100644
index 00000000..26395b94
--- /dev/null
+++ b/src/features/chat/components/chat-room/StatusBar.tsx
@@ -0,0 +1,48 @@
+import SignalIconSvg from "@/assets/icons/Signal.svg";
+import ConnectionIconSvg from "@/assets/icons/Connection.svg";
+import BatteryIconSvg from "@/assets/icons/Battery.svg";
+
+type StatusBarProps = {
+ backgroundColor?: "chatRoom" | "transparent" | "white" | "yellow";
+};
+
+export default function StatusBar({
+ backgroundColor = "chatRoom",
+}: StatusBarProps) {
+ const backgroundClassName =
+ backgroundColor === "white"
+ ? "bg-chat-white"
+ : backgroundColor === "yellow"
+ ? "bg-chat-yellow-200"
+ : backgroundColor === "transparent"
+ ? "bg-transparent"
+ : "bg-chat-blue-100/80 backdrop-blur-[2px]";
+
+ return (
+
+ );
+}
diff --git a/src/features/chat/components/chat-room/SystemMessage.tsx b/src/features/chat/components/chat-room/SystemMessage.tsx
new file mode 100644
index 00000000..b56496c8
--- /dev/null
+++ b/src/features/chat/components/chat-room/SystemMessage.tsx
@@ -0,0 +1,55 @@
+import type { Message } from "@/features/chat/types/chat";
+
+type SystemMessageProps = {
+ message: Message;
+};
+
+function BoldName({ children }: { children: string }) {
+ return (
+
+ {children}
+
+ );
+}
+
+function RegularText({ children }: { children: string }) {
+ return (
+
+ {children}
+
+ );
+}
+
+function renderSystemText(message: Message) {
+ if (message.systemType === "invite") {
+ const invitedNames = message.invitedNames
+ ?.map((name) => name.trim())
+ .join(", ") ?? "";
+
+ return (
+ <>
+ {message.actorName ?? ""}
+ 님이
+ {invitedNames}
+ 님을 채팅방에 초대했습니다.
+ >
+ );
+ }
+
+ return (
+ <>
+ {message.actorName ?? ""}
+ 님이 채팅방을 나갔습니다.
+ >
+ );
+}
+
+export default function SystemMessage({ message }: SystemMessageProps) {
+ return (
+
+
+ {renderSystemText(message)}
+
+
+ );
+}
diff --git a/src/features/chat/constants/chatNotification.ts b/src/features/chat/constants/chatNotification.ts
new file mode 100644
index 00000000..6329e5e1
--- /dev/null
+++ b/src/features/chat/constants/chatNotification.ts
@@ -0,0 +1,13 @@
+import chatRoomsData from "@/features/chat/data/chatRooms.json";
+
+type ChatRoomUnreadSummary = {
+ unreadLabel?: string;
+};
+
+export const chatNotificationLabel = String(
+ (chatRoomsData as ChatRoomUnreadSummary[]).reduce((total, room) => {
+ const unreadCount = Number.parseInt(room.unreadLabel ?? "0", 10);
+
+ return Number.isNaN(unreadCount) ? total : total + unreadCount;
+ }, 0)
+);
diff --git a/src/features/chat/constants/chatStorage.ts b/src/features/chat/constants/chatStorage.ts
new file mode 100644
index 00000000..0047fc51
--- /dev/null
+++ b/src/features/chat/constants/chatStorage.ts
@@ -0,0 +1,9 @@
+export const DIRECT_CHAT_ROOM_MESSAGES_STORAGE_KEY = "chat-room-messages-v2";
+export const GROUP_CHAT_ROOM_MESSAGES_STORAGE_KEY = "group-chat-room-messages-v1";
+
+export function getChatRoomMessagesStorageKey(roomId: number) {
+ if (roomId === 1) return DIRECT_CHAT_ROOM_MESSAGES_STORAGE_KEY;
+ if (roomId === 2) return GROUP_CHAT_ROOM_MESSAGES_STORAGE_KEY;
+
+ return null;
+}
diff --git a/src/features/chat/data/chatRooms.json b/src/features/chat/data/chatRooms.json
new file mode 100644
index 00000000..232100b6
--- /dev/null
+++ b/src/features/chat/data/chatRooms.json
@@ -0,0 +1,146 @@
+[
+ {
+ "id": 1,
+ "name": "김철수",
+ "profileImages": [
+ "ProfileImage_2.png"
+ ],
+ "lastMessage": "ㅎㅎ",
+ "lastMessageCreatedAt": "12:03",
+ "lastMessageCreatedDate": "2025-03-27",
+ "unreadLabel": "2",
+ "isPinned": true,
+ "isMuted": true
+ },
+ {
+ "id": 2,
+ "name": "떡잎마을방범대",
+ "participantCount": 4,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage_1.png",
+ "ProfileImage_2.png",
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "맹구 어디있는지 아는 사람",
+ "lastMessageCreatedAt": "00:00",
+ "lastMessageCreatedDate": "2026-03-19",
+ "unreadLabel": "5",
+ "isPinned": true
+ },
+ {
+ "id": 6,
+ "name": "맹구의 돌멩이 연구회",
+ "participantCount": 5,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "나 오늘 돌멩이 주웠어. 자세히 보면 얼굴처럼 보여. 근데 돌멩이가 정말정말 귀여운거 있지? 아니 하나 더 갖고 싶었다니까.",
+ "lastMessageCreatedAt": "17:20",
+ "lastMessageCreatedDate": "2026-04-02"
+ },
+ {
+ "id": 7,
+ "name": "짱아도 참여중",
+ "participantCount": 2,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "얘들아, 내 초코과자 누가 먹었어? 분명히 여기 뒀단 말이야…",
+ "lastMessageCreatedAt": "15:12",
+ "lastMessageCreatedDate": "2026-03-31",
+ "unreadLabel": "6",
+ "isMuted": true
+ },
+ {
+ "id": 3,
+ "name": "유리와 친구들",
+ "participantCount": 2,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessageType": "image",
+ "imageCount": 2,
+ "previewImageUrl": "image_1.jpg",
+ "lastMessage": "사진",
+ "lastMessageCreatedAt": "09:24",
+ "lastMessageCreatedDate": "2026-04-11",
+ "unreadLabel": "14"
+ },
+ {
+ "id": 4,
+ "name": "흰둥이",
+ "profileImages": [
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "멍! 멍멍!",
+ "lastMessageCreatedAt": "21:18",
+ "lastMessageCreatedDate": "2026-04-10"
+ },
+ {
+ "id": 5,
+ "name": "노하라 가족 오늘 저녁 메뉴 결정 회의방",
+ "participantCount": 4,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessageType": "image",
+ "imageCount": 1,
+ "previewImageUrl": "image_2.jpg",
+ "lastMessage": "사진",
+ "lastMessageCreatedAt": "18:42",
+ "lastMessageCreatedDate": "2026-04-03",
+ "unreadLabel": "1",
+ "isMuted": true
+ },
+ {
+ "id": 8,
+ "name": "나미리 선생님",
+ "profileImages": [
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "조용히 안 하면 선생님 정말 화낼 거예요. 이번엔 진짜예요.",
+ "lastMessageCreatedAt": "11:04",
+ "lastMessageCreatedDate": "2026-03-30"
+ },
+ {
+ "id": 9,
+ "name": "유리 공주와 친구들",
+ "participantCount": 3,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "어머, 너무 귀여운 스티커다. 나도 하나만 가지면 안 될까?",
+ "lastMessageCreatedAt": "22:11",
+ "lastMessageCreatedDate": "2026-03-28"
+ },
+ {
+ "id": 10,
+ "name": "유치원 끝나고 다 같이 수다 떠는 방",
+ "participantCount": 6,
+ "profileImages": [
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg",
+ "ProfileImage.svg"
+ ],
+ "lastMessage": "다들 숙제는 미리미리 해야 해. 난 벌써 절반이나 끝냈다고.",
+ "lastMessageCreatedAt": "08:33",
+ "lastMessageCreatedDate": "2026-03-27",
+ "unreadLabel": "23",
+ "isMuted": true
+ }
+]
\ No newline at end of file
diff --git a/src/features/chat/data/groupMessages.json b/src/features/chat/data/groupMessages.json
new file mode 100644
index 00000000..42929206
--- /dev/null
+++ b/src/features/chat/data/groupMessages.json
@@ -0,0 +1,73 @@
+[
+ {
+ "id": 1,
+ "senderId": 1,
+ "type": "text",
+ "text": "유리야 정말 미안해. 이 토끼 키링은 내가 잘 세탁해서...",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 2,
+ "senderId": 2,
+ "type": "text",
+ "text": "이게 누굴 장난으로 아나.",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 3,
+ "senderId": 2,
+ "type": "text",
+ "text": "눈물 다 젖었어.",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 4,
+ "senderId": 2,
+ "type": "text",
+ "text": "하... 너때매 아끼던 미피 하나 날렸다?",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 5,
+ "senderId": 1,
+ "type": "text",
+ "text": "너 그때 치타 아니었음 너였어. 알아?",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 6,
+ "senderId": 0,
+ "type": "system",
+ "systemType": "leave",
+ "actorName": "이우리",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-18"
+ },
+ {
+ "id": 7,
+ "senderId": 0,
+ "type": "system",
+ "systemType": "invite",
+ "actorName": "김철수",
+ "invitedNames": [
+ "이우리",
+ "신짱구"
+ ],
+ "createdAt": "00:00",
+ "createdDate": "2026-03-19"
+ },
+ {
+ "id": 8,
+ "senderId": 3,
+ "type": "text",
+ "text": "맹구 어디있는지 아는 사람",
+ "createdAt": "00:00",
+ "createdDate": "2026-03-19",
+ "unreadCount": 1
+ }
+]
\ No newline at end of file
diff --git a/src/features/chat/data/groupUsers.json b/src/features/chat/data/groupUsers.json
new file mode 100644
index 00000000..a1dca739
--- /dev/null
+++ b/src/features/chat/data/groupUsers.json
@@ -0,0 +1,26 @@
+[
+ {
+ "id": 1,
+ "name": "나",
+ "profileImage": "ProfileImage.svg",
+ "isMe": true
+ },
+ {
+ "id": 2,
+ "name": "이우리",
+ "profileImage": "ProfileImage_1.png",
+ "isMe": false
+ },
+ {
+ "id": 3,
+ "name": "김철수",
+ "profileImage": "ProfileImage_2.png",
+ "isMe": false
+ },
+ {
+ "id": 4,
+ "name": "신짱구",
+ "profileImage": "ProfileImage.svg",
+ "isMe": false
+ }
+]
diff --git a/src/features/chat/data/messages.json b/src/features/chat/data/messages.json
new file mode 100644
index 00000000..2a211223
--- /dev/null
+++ b/src/features/chat/data/messages.json
@@ -0,0 +1,36 @@
+[
+ {
+ "id": 1,
+ "senderId": 1,
+ "type": "text",
+ "text": "철수야 철수야",
+ "createdAt": "12:01",
+ "createdDate": "2025-03-27"
+ },
+ {
+ "id": 2,
+ "senderId": 1,
+ "type": "text",
+ "text": "훈이 우는 사진 보내줘",
+ "createdAt": "12:02",
+ "createdDate": "2025-03-27"
+ },
+ {
+ "id": 3,
+ "senderId": 2,
+ "type": "text",
+ "text": "싫은데 싫은데",
+ "createdAt": "12:02",
+ "createdDate": "2025-03-27",
+ "unreadCount": 1
+ },
+ {
+ "id": 4,
+ "senderId": 2,
+ "type": "text",
+ "text": "ㅎㅎ",
+ "createdAt": "12:03",
+ "createdDate": "2025-03-27",
+ "unreadCount": 1
+ }
+]
diff --git a/src/features/chat/data/users.json b/src/features/chat/data/users.json
new file mode 100644
index 00000000..8c9a3ac4
--- /dev/null
+++ b/src/features/chat/data/users.json
@@ -0,0 +1,14 @@
+[
+ {
+ "id": 1,
+ "name": "나",
+ "profileImage": "ProfileImage.svg",
+ "isMe": true
+ },
+ {
+ "id": 2,
+ "name": "김철수",
+ "profileImage": "ProfileImage.svg",
+ "isMe": false
+ }
+]
diff --git a/src/features/chat/hooks/useAutoScroll.ts b/src/features/chat/hooks/useAutoScroll.ts
new file mode 100644
index 00000000..72f0ff33
--- /dev/null
+++ b/src/features/chat/hooks/useAutoScroll.ts
@@ -0,0 +1,15 @@
+import { useEffect, useRef } from "react";
+
+export default function useAutoScroll(dependency: T) {
+ const bottomRef = useRef(null);
+
+ useEffect(() => {
+ bottomRef.current?.scrollIntoView({
+ behavior: "smooth",
+ block: "end",
+ inline: "nearest",
+ });
+ }, [dependency]);
+
+ return bottomRef;
+}
diff --git a/src/features/chat/pages/ChatListPage.tsx b/src/features/chat/pages/ChatListPage.tsx
new file mode 100644
index 00000000..edaae680
--- /dev/null
+++ b/src/features/chat/pages/ChatListPage.tsx
@@ -0,0 +1,52 @@
+import { useState } from "react";
+import MobileLayout from "@/layouts/MobileLayout";
+import BottomNavigator from "@/features/chat/components/chat-list/BottomNavigator";
+import type { BottomNavigationTab } from "@/features/chat/components/chat-list/BottomNavigator";
+import ChatListHeader from "@/features/chat/components/chat-list/ChatListHeader";
+import ChatRoomList from "@/features/chat/components/chat-list/ChatRoomList";
+import StatusBar from "@/features/chat/components/chat-room/StatusBar";
+import { chatNotificationLabel } from "@/features/chat/constants/chatNotification";
+
+type ChatListPageProps = {
+ onOpenChatRoom?: (roomId: number) => void;
+ onOpenFriends?: () => void;
+};
+
+type ChatListFilter = "all" | "unread";
+
+export default function ChatListPage({
+ onOpenChatRoom,
+ onOpenFriends,
+}: ChatListPageProps) {
+ const [activeFilter, setActiveFilter] = useState("all");
+
+ return (
+
+
+
+
+
+
+
+
+
+ {
+ if (tab === "friends") {
+ onOpenFriends?.();
+ }
+ }}
+ />
+
+
+ );
+}
diff --git a/src/features/chat/pages/ChatRoomPage.tsx b/src/features/chat/pages/ChatRoomPage.tsx
new file mode 100644
index 00000000..b0d73dc4
--- /dev/null
+++ b/src/features/chat/pages/ChatRoomPage.tsx
@@ -0,0 +1,265 @@
+import { useEffect, useLayoutEffect, useMemo, useReducer } from "react";
+import MobileLayout from "@/layouts/MobileLayout";
+import StatusBar from "@/features/chat/components/chat-room/StatusBar";
+import ChatRoomHeader from "@/features/chat/components/chat-room/ChatRoomHeader";
+import MessageList from "@/features/chat/components/chat-room/MessageList";
+import ChatInputBar from "@/features/chat/components/chat-room/ChatInputBar";
+import IosHomeIndicator from "@/features/chat/components/chat-room/IosHomeIndicator";
+import useAutoScroll from "@/features/chat/hooks/useAutoScroll";
+import usersData from "@/features/chat/data/users.json";
+import messagesData from "@/features/chat/data/messages.json";
+import groupUsersData from "@/features/chat/data/groupUsers.json";
+import groupMessagesData from "@/features/chat/data/groupMessages.json";
+import {
+ DIRECT_CHAT_ROOM_MESSAGES_STORAGE_KEY,
+ GROUP_CHAT_ROOM_MESSAGES_STORAGE_KEY,
+} from "@/features/chat/constants/chatStorage";
+import type { Message, User } from "@/features/chat/types/chat";
+
+type ChatRoomConfig = {
+ title: string;
+ participantCount?: number;
+ users: User[];
+ messages: Message[];
+ localStorageKey: string;
+};
+
+const DIRECT_ROOM_CONFIG: ChatRoomConfig = {
+ title: "김철수",
+ users: usersData as User[],
+ messages: messagesData as Message[],
+ localStorageKey: DIRECT_CHAT_ROOM_MESSAGES_STORAGE_KEY,
+};
+
+const GROUP_ROOM_CONFIG: ChatRoomConfig = {
+ title: "떡잎마을방범대",
+ participantCount: 4,
+ users: groupUsersData as User[],
+ messages: groupMessagesData as Message[],
+ localStorageKey: GROUP_CHAT_ROOM_MESSAGES_STORAGE_KEY,
+};
+
+function getRoomConfig(roomId: number) {
+ return roomId === 2 ? GROUP_ROOM_CONFIG : DIRECT_ROOM_CONFIG;
+}
+
+function mergeMessages(seedMessages: Message[], savedMessages: Message[]) {
+ const map = new Map();
+
+ [...seedMessages, ...savedMessages].forEach((message) => {
+ map.set(message.id, message);
+ });
+
+ return Array.from(map.values());
+}
+
+function getNextMessageId(messages: Message[]) {
+ const maxId = messages.reduce((max, message) => Math.max(max, message.id), 0);
+ return maxId + 1;
+}
+
+function saveMessagesToStorage(storageKey: string, messages: Message[]) {
+ try {
+ localStorage.setItem(storageKey, JSON.stringify(messages));
+ } catch (error) {
+ console.error("메시지를 저장하지 못했습니다.", error);
+ }
+}
+
+function loadMessagesFromStorage(roomConfig: ChatRoomConfig) {
+ const seedMessages = roomConfig.messages;
+
+ try {
+ const savedMessages = localStorage.getItem(roomConfig.localStorageKey);
+ if (!savedMessages) return seedMessages;
+
+ const parsed = JSON.parse(savedMessages) as Message[];
+ return mergeMessages(seedMessages, parsed);
+ } catch (error) {
+ console.error("저장된 메시지를 불러오지 못했습니다.", error);
+ return seedMessages;
+ }
+}
+
+function getCurrentTime() {
+ const now = new Date();
+ const hours = String(now.getHours()).padStart(2, "0");
+ const minutes = String(now.getMinutes()).padStart(2, "0");
+ return `${hours}:${minutes}`;
+}
+
+function getCurrentDate() {
+ const now = new Date();
+ const year = now.getFullYear();
+ const month = String(now.getMonth() + 1).padStart(2, "0");
+ const date = String(now.getDate()).padStart(2, "0");
+ return `${year}-${month}-${date}`;
+}
+
+type ChatRoomState = {
+ messages: Message[];
+ storageKey: string;
+};
+
+type ChatRoomAction =
+ | {
+ type: "sync-room";
+ payload: ChatRoomState;
+ }
+ | {
+ type: "send-text";
+ payload: {
+ senderId: number;
+ text: string;
+ createdAt: string;
+ createdDate: string;
+ };
+ }
+ | {
+ type: "send-images";
+ payload: {
+ senderId: number;
+ imageUrls: string[];
+ createdAt: string;
+ createdDate: string;
+ };
+ };
+
+function createChatRoomState(roomConfig: ChatRoomConfig): ChatRoomState {
+ return {
+ messages: loadMessagesFromStorage(roomConfig),
+ storageKey: roomConfig.localStorageKey,
+ };
+}
+
+function chatRoomReducer(
+ state: ChatRoomState,
+ action: ChatRoomAction
+): ChatRoomState {
+ if (action.type === "sync-room") {
+ return action.payload;
+ }
+
+ if (action.type === "send-text") {
+ const newMessage: Message = {
+ id: getNextMessageId(state.messages),
+ senderId: action.payload.senderId,
+ type: "text",
+ text: action.payload.text,
+ createdAt: action.payload.createdAt,
+ createdDate: action.payload.createdDate,
+ unreadCount: 1,
+ };
+
+ return {
+ ...state,
+ messages: [...state.messages, newMessage],
+ };
+ }
+
+ const newMessage: Message = {
+ id: getNextMessageId(state.messages),
+ senderId: action.payload.senderId,
+ type: "image",
+ imageUrls: action.payload.imageUrls,
+ createdAt: action.payload.createdAt,
+ createdDate: action.payload.createdDate,
+ unreadCount: 1,
+ };
+
+ return {
+ ...state,
+ messages: [...state.messages, newMessage],
+ };
+}
+
+type ChatRoomPageProps = {
+ roomId?: number;
+ onBack?: () => void;
+};
+
+export default function ChatRoomPage({
+ roomId = 1,
+ onBack,
+}: ChatRoomPageProps) {
+ const roomConfig = useMemo(() => getRoomConfig(roomId), [roomId]);
+ const [state, dispatch] = useReducer(
+ chatRoomReducer,
+ roomConfig,
+ createChatRoomState
+ );
+ const messages = state.messages;
+ const users = roomConfig.users;
+ const bottomRef = useAutoScroll(messages);
+ const me = useMemo(() => users.find((user) => user.isMe), [users]);
+
+ useLayoutEffect(() => {
+ if (state.storageKey === roomConfig.localStorageKey) return;
+
+ dispatch({
+ type: "sync-room",
+ payload: createChatRoomState(roomConfig),
+ });
+ }, [roomConfig, state.storageKey]);
+
+ useEffect(() => {
+ if (state.storageKey !== roomConfig.localStorageKey) {
+ return;
+ }
+
+ saveMessagesToStorage(state.storageKey, messages);
+ }, [messages, roomConfig.localStorageKey, state.storageKey]);
+
+ const handleSendText = (text: string) => {
+ if (!me) return;
+
+ dispatch({
+ type: "send-text",
+ payload: {
+ senderId: me.id,
+ text,
+ createdAt: getCurrentTime(),
+ createdDate: getCurrentDate(),
+ },
+ });
+ };
+
+ const handleSendImages = (imageUrls: string[]) => {
+ if (!me || imageUrls.length === 0) return;
+
+ dispatch({
+ type: "send-images",
+ payload: {
+ senderId: me.id,
+ imageUrls,
+ createdAt: getCurrentTime(),
+ createdDate: getCurrentDate(),
+ },
+ });
+ };
+
+ return (
+
+
+
+ );
+}
diff --git a/src/features/chat/pages/FriendListPage.tsx b/src/features/chat/pages/FriendListPage.tsx
new file mode 100644
index 00000000..658ae68c
--- /dev/null
+++ b/src/features/chat/pages/FriendListPage.tsx
@@ -0,0 +1,425 @@
+import { useState, type ReactNode } from "react";
+import MobileLayout from "@/layouts/MobileLayout";
+import BottomNavigator from "@/features/chat/components/chat-list/BottomNavigator";
+import type { BottomNavigationTab } from "@/features/chat/components/chat-list/BottomNavigator";
+import StatusBar from "@/features/chat/components/chat-room/StatusBar";
+import ProfileImageSvg from "@/assets/icons/ProfileImage.svg";
+import ProfileImageOnePng from "@/assets/images/ProfileImage_1.png";
+import ProfileImageTwoPng from "@/assets/images/ProfileImage_2.png";
+import ProfileImageThreePng from "@/assets/images/ProfileImage_3.png";
+import BirthIconSvg from "@/assets/icons/ic_Birth.svg";
+import GiftIconSvg from "@/assets/icons/ic_Gift.svg";
+import ChevronDownIconSvg from "@/assets/icons/ic_Chevron_Down.svg";
+import ChevronRightIconSvg from "@/assets/icons/ic_Chevron_Right.svg";
+import EditIconSvg from "@/assets/icons/ic_Edit.svg";
+import SearchIconSvg from "@/assets/icons/ic_Search.svg";
+import SettingIconSvg from "@/assets/icons/ic_Setting.svg";
+import UserPlusIconSvg from "@/assets/icons/ic_UserPlus.svg";
+
+type FriendListPageProps = {
+ chatNotificationLabel: string;
+ onOpenChatList?: () => void;
+ onOpenMyProfile?: () => void;
+};
+
+type FriendStory = {
+ name: string;
+ profileImage: string;
+ showDot?: boolean;
+ showCake?: boolean;
+};
+
+type SavedFriendGroup = {
+ label: string;
+ friends: SavedFriend[];
+};
+
+type SavedFriend = {
+ name: string;
+ profileImage: string;
+};
+
+const FRIEND_STORIES: FriendStory[] = [
+ {
+ name: "아무개아무개",
+ profileImage: ProfileImageSvg,
+ showDot: true,
+ },
+ {
+ name: "아무개",
+ profileImage: ProfileImageOnePng,
+ showCake: true,
+ },
+ {
+ name: "아무개",
+ profileImage: ProfileImageSvg,
+ showDot: true,
+ },
+ {
+ name: "아무개아",
+ profileImage: ProfileImageTwoPng,
+ showCake: true,
+ },
+ {
+ name: "아무개",
+ profileImage: ProfileImageSvg,
+ showCake: true,
+ },
+];
+
+const SAVED_FRIEND_GROUPS: SavedFriendGroup[] = [
+ {
+ label: "가족",
+ friends: [
+ {
+ name: "날쌩아저씨",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "삼겹살대마왕",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "짱아",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "흰둥이",
+ profileImage: ProfileImageSvg,
+ },
+ ],
+ },
+ {
+ label: "친구",
+ friends: [
+ {
+ name: "이빵",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "엄마",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "금수1",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "금수2",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "금수3",
+ profileImage: ProfileImageSvg,
+ },
+ {
+ name: "금수4",
+ profileImage: ProfileImageSvg,
+ },
+ ],
+ },
+];
+
+function HeaderIconButton({
+ label,
+ children,
+}: {
+ label: string;
+ children: ReactNode;
+}) {
+ return (
+
+ );
+}
+
+function FriendStoryItem({
+ name,
+ profileImage,
+ showDot = false,
+ showCake = false,
+}: FriendStory) {
+ return (
+
+
+

+
+ {showDot ? (
+
+ ) : null}
+
+ {showCake ? (
+

+ ) : null}
+
+
+
+ {name}
+
+
+ );
+}
+
+function SavedFriendProfileItem({ name, profileImage }: SavedFriend) {
+ return (
+
+
+
+
+ {name}
+
+
+ );
+}
+
+function SavedFriendGroupItem({
+ label,
+ friends,
+ isExpanded,
+ onToggle,
+}: SavedFriendGroup & {
+ isExpanded: boolean;
+ onToggle: () => void;
+}) {
+ const friendCount = friends.length;
+
+ return (
+
+
+
+
+
+
+ {friends.map((friend) => (
+
+ ))}
+
+
+
+
+ );
+}
+
+export default function FriendListPage({
+ chatNotificationLabel,
+ onOpenChatList,
+ onOpenMyProfile,
+}: FriendListPageProps) {
+ const [expandedGroupLabels, setExpandedGroupLabels] = useState([]);
+
+ const toggleSavedFriendGroup = (label: string) => {
+ setExpandedGroupLabels((currentLabels) =>
+ currentLabels.includes(label)
+ ? currentLabels.filter((currentLabel) => currentLabel !== label)
+ : [...currentLabels, label]
+ );
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 친구 목록
+
+
+ 30
+
+

+
+
+
+
+
+
+
+ 친구 소식
+
+
+
+ {FRIEND_STORIES.map((story, index) => (
+
+ ))}
+
+
+
+
+
+
+ 저장한 친구
+
+
+
+
+
+
+ {SAVED_FRIEND_GROUPS.map((group) => (
+ toggleSavedFriendGroup(group.label)}
+ />
+ ))}
+
+
+
+
+
{
+ if (tab === "chat") {
+ onOpenChatList?.();
+ }
+ }}
+ />
+
+
+ );
+}
diff --git a/src/features/chat/pages/MyProfilePage.tsx b/src/features/chat/pages/MyProfilePage.tsx
new file mode 100644
index 00000000..45d841a7
--- /dev/null
+++ b/src/features/chat/pages/MyProfilePage.tsx
@@ -0,0 +1,128 @@
+import MobileLayout from "@/layouts/MobileLayout";
+import StatusBar from "@/features/chat/components/chat-room/StatusBar";
+import ProfileBgPng from "@/assets/images/ProfileBg_1.png";
+import ProfileImagePng from "@/assets/images/ProfileImage_3.png";
+import ChevronLeftIconSvg from "@/assets/icons/ic_Chevron_Left.svg";
+import EditIconSvg from "@/assets/icons/ic_Edit.svg";
+import KakaoStoryIconSvg from "@/assets/icons/ic_KakaoStory.svg";
+
+type MyProfilePageProps = {
+ onBack?: () => void;
+};
+
+function GlassIconButton({
+ label,
+ iconSrc,
+}: {
+ label: string;
+ iconSrc: string;
+}) {
+ return (
+
+ );
+}
+
+export default function MyProfilePage({ onBack }: MyProfilePageProps) {
+ return (
+
+
+

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/features/chat/pages/SplashPage.tsx b/src/features/chat/pages/SplashPage.tsx
new file mode 100644
index 00000000..83ebd23f
--- /dev/null
+++ b/src/features/chat/pages/SplashPage.tsx
@@ -0,0 +1,25 @@
+import MobileLayout from "@/layouts/MobileLayout";
+import StatusBar from "@/features/chat/components/chat-room/StatusBar";
+import KakaoTalkIconSvg from "@/assets/icons/ic_KakaoTalk.svg";
+
+export default function SplashPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/features/chat/types/chat.ts b/src/features/chat/types/chat.ts
new file mode 100644
index 00000000..e76ab181
--- /dev/null
+++ b/src/features/chat/types/chat.ts
@@ -0,0 +1,40 @@
+export type User = {
+ id: number;
+ name: string;
+ profileImage: string;
+ isMe: boolean;
+};
+
+export type MessageType = "text" | "image" | "system";
+export type SystemMessageType = "leave" | "invite";
+
+export type Message = {
+ id: number;
+ senderId: number;
+ type: MessageType;
+ text?: string;
+ imageUrl?: string;
+ imageUrls?: string[];
+ systemType?: SystemMessageType;
+ actorName?: string;
+ invitedNames?: string[];
+ createdAt: string;
+ createdDate: string;
+ unreadCount?: number;
+};
+
+export type ChatRoom = {
+ id: number;
+ name: string;
+ participantCount?: number;
+ profileImages?: string[];
+ lastMessageType?: "text" | "image";
+ imageCount?: number;
+ previewImageUrl?: string;
+ lastMessage: string;
+ lastMessageCreatedAt: string;
+ lastMessageCreatedDate: string;
+ unreadLabel?: string;
+ isPinned?: boolean;
+ isMuted?: boolean;
+};
diff --git a/src/features/chat/utils/formatMessageTime.ts b/src/features/chat/utils/formatMessageTime.ts
new file mode 100644
index 00000000..da6c4702
--- /dev/null
+++ b/src/features/chat/utils/formatMessageTime.ts
@@ -0,0 +1,48 @@
+const ONE_MINUTE_MS = 60 * 1000;
+const ONE_DAY_MS = 24 * 60 * 60 * 1000;
+
+function parseMessageDate(createdDate: string, createdAt: string) {
+ const [year, month, date] = createdDate.split("-").map(Number);
+ const [hours, minutes] = createdAt.split(":").map(Number);
+
+ if (
+ [year, month, date, hours, minutes].some((value) => Number.isNaN(value))
+ ) {
+ return null;
+ }
+
+ return new Date(year, month - 1, date, hours, minutes);
+}
+
+function startOfDay(date: Date) {
+ return new Date(date.getFullYear(), date.getMonth(), date.getDate());
+}
+
+function formatMonthDate(date: Date) {
+ const month = String(date.getMonth() + 1).padStart(2, "0");
+ const day = String(date.getDate()).padStart(2, "0");
+
+ return `${month}월 ${day}일`;
+}
+
+export function formatChatRoomSentAt(
+ createdDate: string,
+ createdAt: string,
+ now = new Date()
+) {
+ const sentAt = parseMessageDate(createdDate, createdAt);
+
+ if (!sentAt) return createdAt;
+
+ const diffMs = now.getTime() - sentAt.getTime();
+ const diffDays = Math.floor(
+ (startOfDay(now).getTime() - startOfDay(sentAt).getTime()) / ONE_DAY_MS
+ );
+
+ if (diffMs >= 0 && diffMs <= ONE_MINUTE_MS) return "방금";
+ if (diffDays === 0) return createdAt;
+ if (diffDays === 1) return "어제";
+ if (diffDays >= 7 && diffDays < 14) return "일주일 전";
+
+ return formatMonthDate(sentAt);
+}
diff --git a/src/features/chat/utils/groupMessages.ts b/src/features/chat/utils/groupMessages.ts
new file mode 100644
index 00000000..833feac7
--- /dev/null
+++ b/src/features/chat/utils/groupMessages.ts
@@ -0,0 +1,74 @@
+import type { Message } from "@/features/chat/types/chat";
+
+type BubbleMessage = Message & {
+ type: "text" | "image";
+};
+
+export type GroupedMessage = BubbleMessage & {
+ showTime: boolean;
+};
+
+export type MessageGroup = {
+ kind: "message";
+ senderId: number;
+ createdDate: string;
+ messages: GroupedMessage[];
+};
+
+export type SystemMessageGroup = {
+ kind: "system";
+ createdDate: string;
+ message: Message;
+};
+
+export type MessageListGroup = MessageGroup | SystemMessageGroup;
+
+const getMinuteKey = (time: string) => time.slice(0, 5);
+
+function isBubbleMessage(message: Message): message is BubbleMessage {
+ return message.type === "text" || message.type === "image";
+}
+
+export function groupMessages(messages: Message[]): MessageListGroup[] {
+ const groups: MessageListGroup[] = [];
+
+ for (const message of messages) {
+ if (!isBubbleMessage(message)) {
+ groups.push({
+ kind: "system",
+ createdDate: message.createdDate,
+ message,
+ });
+ continue;
+ }
+
+ const lastGroup = groups[groups.length - 1];
+
+ const shouldStartNewGroup =
+ !lastGroup ||
+ lastGroup.kind !== "message" ||
+ lastGroup.senderId !== message.senderId ||
+ lastGroup.createdDate !== message.createdDate;
+
+ if (shouldStartNewGroup) {
+ groups.push({
+ kind: "message",
+ senderId: message.senderId,
+ createdDate: message.createdDate,
+ messages: [{ ...message, showTime: true }],
+ });
+ continue;
+ }
+
+ const prevMessage = lastGroup.messages[lastGroup.messages.length - 1];
+ const prevMinute = getMinuteKey(prevMessage.createdAt);
+ const currentMinute = getMinuteKey(message.createdAt);
+
+ lastGroup.messages.push({
+ ...message,
+ showTime: prevMinute !== currentMinute,
+ });
+ }
+
+ return groups;
+}
diff --git a/src/features/chat/utils/hangulJamo.ts b/src/features/chat/utils/hangulJamo.ts
new file mode 100644
index 00000000..e46c8ea1
--- /dev/null
+++ b/src/features/chat/utils/hangulJamo.ts
@@ -0,0 +1,13 @@
+const HANGUL_COMPATIBILITY_JAMO_REGEX = /[\u3131-\u318e]/u;
+
+export function isHangulCompatibilityJamo(char: string) {
+ return HANGUL_COMPATIBILITY_JAMO_REGEX.test(char);
+}
+
+export function isHangulJamoOnlyText(text: string) {
+ const units = Array.from(text.trim()).filter((char) => !/\s/u.test(char));
+
+ return (
+ units.length > 0 && units.every((char) => isHangulCompatibilityJamo(char))
+ );
+}
diff --git a/src/features/chat/utils/imageCompression.ts b/src/features/chat/utils/imageCompression.ts
new file mode 100644
index 00000000..1b495c1c
--- /dev/null
+++ b/src/features/chat/utils/imageCompression.ts
@@ -0,0 +1,47 @@
+function fileToDataUrl(file: File): Promise {
+ return new Promise((resolve, reject) => {
+ const reader = new FileReader();
+
+ reader.onload = () => resolve(String(reader.result));
+ reader.onerror = () => reject(new Error("이미지를 읽는 데 실패했습니다."));
+ reader.readAsDataURL(file);
+ });
+}
+
+function loadImage(src: string): Promise {
+ return new Promise((resolve, reject) => {
+ const image = new Image();
+
+ image.onload = () => resolve(image);
+ image.onerror = () => reject(new Error("이미지를 불러오는 데 실패했습니다."));
+ image.src = src;
+ });
+}
+
+async function compressImage(
+ file: File,
+ maxSize = 1200,
+ quality = 0.82
+): Promise {
+ const dataUrl = await fileToDataUrl(file);
+ const image = await loadImage(dataUrl);
+
+ const ratio = Math.min(1, maxSize / Math.max(image.width, image.height));
+ const targetWidth = Math.max(1, Math.round(image.width * ratio));
+ const targetHeight = Math.max(1, Math.round(image.height * ratio));
+
+ const canvas = document.createElement("canvas");
+ canvas.width = targetWidth;
+ canvas.height = targetHeight;
+
+ const context = canvas.getContext("2d");
+ if (!context) return dataUrl;
+
+ context.drawImage(image, 0, 0, targetWidth, targetHeight);
+
+ return canvas.toDataURL("image/jpeg", quality);
+}
+
+export function compressImageFiles(files: File[]): Promise {
+ return Promise.all(files.map((file) => compressImage(file)));
+}
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 00000000..bce7cf43
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,2 @@
+@import "tailwindcss";
+@import "@/styles/globals.css";
diff --git a/src/layouts/MobileLayout.tsx b/src/layouts/MobileLayout.tsx
new file mode 100644
index 00000000..f1d6ba4f
--- /dev/null
+++ b/src/layouts/MobileLayout.tsx
@@ -0,0 +1,20 @@
+import type { ReactNode } from "react";
+
+type MobileLayoutProps = {
+ children: ReactNode;
+};
+
+export default function MobileLayout({ children }: MobileLayoutProps) {
+ return (
+
+ );
+}
diff --git a/src/main.tsx b/src/main.tsx
new file mode 100644
index 00000000..eadd9888
--- /dev/null
+++ b/src/main.tsx
@@ -0,0 +1,13 @@
+import React from "react";
+import ReactDOM from "react-dom/client";
+import { BrowserRouter } from "react-router-dom";
+import App from "@/App";
+import "@/index.css";
+
+ReactDOM.createRoot(document.getElementById("root")!).render(
+
+
+
+
+
+);
diff --git a/src/styles/globals.css b/src/styles/globals.css
new file mode 100644
index 00000000..08e2498e
--- /dev/null
+++ b/src/styles/globals.css
@@ -0,0 +1,254 @@
+@font-face {
+ font-family: "Kakao Big Sans";
+ src: url("/fonts/kakao/KakaoBigSans-Regular.woff2") format("woff2");
+ font-display: swap;
+ font-style: normal;
+ font-weight: 400;
+}
+
+@font-face {
+ font-family: "Kakao Big Sans";
+ src: url("/fonts/kakao/KakaoBigSans-Bold.woff2") format("woff2");
+ font-display: swap;
+ font-style: normal;
+ font-weight: 700;
+}
+
+@font-face {
+ font-family: "Kakao Big Sans";
+ src: url("/fonts/kakao/KakaoBigSans-ExtraBold.woff2") format("woff2");
+ font-display: swap;
+ font-style: normal;
+ font-weight: 800;
+}
+
+@font-face {
+ font-family: "Kakao Small Sans";
+ src: url("/fonts/kakao/KakaoSmallSans-Regular.woff2") format("woff2");
+ font-display: swap;
+ font-style: normal;
+ font-weight: 400;
+}
+
+@font-face {
+ font-family: "Kakao Small Sans";
+ src: url("/fonts/kakao/KakaoSmallSans-Bold.woff2") format("woff2");
+ font-display: swap;
+ font-style: normal;
+ font-weight: 700;
+}
+
+@theme {
+ --font-kakao-big: "Kakao Big Sans", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
+ --font-kakao-small: "Kakao Small Sans", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
+ --font-ios-status: "SF Pro", "SF Pro Display", sans-serif;
+
+ --color-chat-yellow-100: #FEEEB8;
+ --color-chat-yellow-200: #FFE000;
+ --color-chat-brown: #421D1D;
+ --color-chat-blue-100: #A7C8E8;
+ --color-chat-blue-200: #9CB7EE;
+ --color-chat-accent-100: #FF5E25;
+ --color-chat-accent-200: #FF4300;
+ --color-chat-gray-700: #272729;
+ --color-chat-gray-600: #363638;
+ --color-chat-gray-500: #525254;
+ --color-chat-gray-400: #79797B;
+ --color-chat-gray-300: #A2A2A4;
+ --color-chat-gray-200: #D6D6D8;
+ --color-chat-gray-150: #EDEDEF;
+ --color-chat-gray-100: #F2F2F4;
+ --color-chat-gray-50: #F5F5F7;
+ --color-chat-black: #191919;
+ --color-chat-home-indicator: #111111;
+ --color-chat-white: #FFFFFF;
+}
+
+@layer base {
+ :root {
+ --screen-width: 375px;
+ --screen-height: 812px;
+ --radius-xl: 16px;
+ --grid-margin: 8px;
+ --grid-gutter: 16px;
+ --color-skeleton-50: rgba(214, 214, 216, 0.5);
+ --color-skeleton-20: rgba(245, 245, 247, 0.75);
+ --app-theme-color: var(--color-chat-white);
+ }
+
+ html,
+ body,
+ #root {
+ height: 100%;
+ }
+
+ body {
+ margin: 0;
+ background: var(--app-theme-color);
+ color: var(--color-chat-black);
+ font-family: var(--font-kakao-small);
+ font-feature-settings: "liga" off, "clig" off;
+ }
+
+ button {
+ cursor: pointer;
+ font: inherit;
+ }
+
+ button:disabled {
+ cursor: default;
+ }
+
+ input,
+ textarea {
+ font: inherit;
+ }
+
+ img,
+ svg {
+ display: block;
+ }
+}
+
+@layer utilities {
+ .scrollbar-hidden {
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+ }
+
+ .scrollbar-hidden::-webkit-scrollbar {
+ display: none;
+ }
+
+ .svg-icon {
+ display: block;
+ flex-shrink: 0;
+ }
+
+ .typo-title-01 {
+ font-family: var(--font-kakao-big);
+ font-size: 24px;
+ font-weight: 700;
+ letter-spacing: -0.96px;
+ line-height: 130%;
+ }
+
+ .typo-heading-01 {
+ font-family: var(--font-kakao-big);
+ font-size: 20px;
+ font-weight: 700;
+ letter-spacing: -0.8px;
+ line-height: 140%;
+ }
+
+ .typo-heading-02 {
+ font-family: var(--font-kakao-big);
+ font-size: 18px;
+ font-weight: 700;
+ letter-spacing: -0.72px;
+ line-height: 140%;
+ }
+
+ .typo-body-01 {
+ font-family: var(--font-kakao-small);
+ font-size: 16px;
+ font-weight: 700;
+ letter-spacing: -0.64px;
+ line-height: 160%;
+ }
+
+ .typo-body-02 {
+ font-family: var(--font-kakao-small);
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: -0.64px;
+ line-height: 160%;
+ }
+
+ .typo-sub-body {
+ font-family: var(--font-kakao-small);
+ font-size: 14px;
+ font-weight: 400;
+ letter-spacing: -0.56px;
+ line-height: 160%;
+ }
+
+ .typo-button {
+ font-family: var(--font-kakao-small);
+ font-size: 16px;
+ font-weight: 700;
+ letter-spacing: -0.64px;
+ line-height: 160%;
+ }
+
+ .typo-label {
+ font-family: var(--font-kakao-small);
+ font-size: 14px;
+ font-weight: 700;
+ letter-spacing: -0.56px;
+ line-height: 160%;
+ }
+
+ .typo-caption-01 {
+ font-family: var(--font-kakao-small);
+ font-size: 12px;
+ font-weight: 400;
+ letter-spacing: -0.48px;
+ line-height: 160%;
+ }
+
+ .typo-caption-02 {
+ font-family: var(--font-kakao-small);
+ font-size: 12px;
+ font-weight: 700;
+ letter-spacing: -0.48px;
+ line-height: 160%;
+ }
+
+ .typo-caption-03 {
+ font-family: var(--font-kakao-small);
+ font-size: 10px;
+ font-weight: 400;
+ letter-spacing: -0.4px;
+ line-height: 140%;
+ }
+
+ .typo-badge {
+ font-family: var(--font-kakao-small);
+ font-size: 11px;
+ font-weight: 400;
+ letter-spacing: -0.44px;
+ line-height: 100%;
+ }
+
+ .typo-ios-status {
+ color: #000;
+ font-feature-settings: "ss03" on;
+ font-family: "SF Pro";
+ font-size: 17px;
+ font-style: normal;
+ font-weight: 590;
+ letter-spacing: -0.5px;
+ line-height: 17px;
+ text-align: center;
+ }
+}
+
+@layer components {
+ .chat-text {
+ word-break: break-word;
+ white-space: normal;
+ }
+
+ .hangul-jamo-fix {
+ display: inline-block;
+ font-size: 0.82em;
+ line-height: 1;
+ vertical-align: 0.06em;
+ }
+
+ .hangul-jamo-input {
+ font-size: 11.5px;
+ line-height: 22.4px;
+ }
+}
diff --git a/tsconfig.app.json b/tsconfig.app.json
new file mode 100644
index 00000000..215b9f73
--- /dev/null
+++ b/tsconfig.app.json
@@ -0,0 +1,32 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2023",
+ "useDefineForClassFields": true,
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "types": ["vite/client"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+ "paths": {
+ "@/*": ["./src/*"]
+ },
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["src"]
+}
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 00000000..1ffef600
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "files": [],
+ "references": [
+ { "path": "./tsconfig.app.json" },
+ { "path": "./tsconfig.node.json" }
+ ]
+}
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 00000000..8a67f62f
--- /dev/null
+++ b/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/vite.config.ts b/vite.config.ts
new file mode 100644
index 00000000..2721c18e
--- /dev/null
+++ b/vite.config.ts
@@ -0,0 +1,13 @@
+import { defineConfig } from "vite";
+import react from "@vitejs/plugin-react";
+import tailwindcss from "@tailwindcss/vite";
+import { fileURLToPath, URL } from "node:url";
+
+export default defineConfig({
+ plugins: [react(), tailwindcss()],
+ resolve: {
+ alias: {
+ "@": fileURLToPath(new URL("./src", import.meta.url)),
+ },
+ },
+});