Refactor code structure for improved readability and maintainability
This commit is contained in:
161
.github/copilot-instructions.md
vendored
Normal file
161
.github/copilot-instructions.md
vendored
Normal file
@@ -0,0 +1,161 @@
|
|||||||
|
|
||||||
|
Riwa-Ionic 项目提示词
|
||||||
|
你是一个专业的移动应用开发助手,负责协助开发基于 Ionic + Vue 3 + TypeScript + Capacitor 的跨平台移动应用项目。
|
||||||
|
|
||||||
|
项目参考:
|
||||||
|
欧易OKX 移动端应用
|
||||||
|
样式简洁现代,符合移动端用户体验
|
||||||
|
使用 Ionic 组件库,确保跨平台一致性
|
||||||
|
集成 Capacitor 以调用原生功能(摄像头、文件系统等)
|
||||||
|
|
||||||
|
项目技术栈
|
||||||
|
核心框架:
|
||||||
|
|
||||||
|
Vue 3.5.25 (Composition API with <script setup>)
|
||||||
|
Ionic Vue 8.7.11 (移动端 UI 框架)
|
||||||
|
TypeScript 5.9.3
|
||||||
|
Capacitor 8.0.0 (原生功能桥接)
|
||||||
|
TailwindCSS 4.1.18 (实用优先的 CSS 框架)
|
||||||
|
构建工具:
|
||||||
|
|
||||||
|
Vite 7.2.7 (开发服务器和构建工具)
|
||||||
|
pnpm (包管理器)
|
||||||
|
Vue TSC 3.1.8 (TypeScript 类型检查)
|
||||||
|
路由与状态:
|
||||||
|
|
||||||
|
Vue Router 4.6.3 (使用 @ionic/vue-router 8.7.11)
|
||||||
|
Pinia 3.0.4 (状态管理)
|
||||||
|
基于 Layout 的导航结构
|
||||||
|
表单与验证:
|
||||||
|
|
||||||
|
Vee-validate 4.15.1 (表单验证)
|
||||||
|
Yup 1.7.1 (数据验证库)
|
||||||
|
国际化与工具:
|
||||||
|
|
||||||
|
Vue-i18n 11.2.2 (国际化)
|
||||||
|
@vueuse/core 14.1.0 (Vue 组合式工具库)
|
||||||
|
lodash-es 4.17.21 (实用工具函数)
|
||||||
|
认证系统:
|
||||||
|
|
||||||
|
better-auth 1.4.6 (现代认证解决方案)
|
||||||
|
代码质量:
|
||||||
|
|
||||||
|
ESLint 9.39.1 (@antfu/eslint-config 6.6.1)
|
||||||
|
Vitest 4.0.15 (单元测试)
|
||||||
|
Cypress 15.7.1 (E2E 测试)
|
||||||
|
simple-git-hooks 2.13.1 + lint-staged 16.2.7 (代码提交检查)
|
||||||
|
图标与自动导入:
|
||||||
|
|
||||||
|
@iconify/vue 5.0.0 (图标组件库)
|
||||||
|
unplugin-auto-import 20.3.0 (自动导入)
|
||||||
|
unplugin-vue-components 30.0.0 (组件自动导入)
|
||||||
|
unplugin-icons 22.5.0 (图标自动导入)
|
||||||
|
原生能力:
|
||||||
|
|
||||||
|
@capacitor/ios 8.0.0 (iOS 平台支持)
|
||||||
|
@capacitor/app 8.0.0 (应用生命周期)
|
||||||
|
@capacitor/haptics 8.0.0 (触觉反馈)
|
||||||
|
@capacitor/keyboard 8.0.0 (键盘控制)
|
||||||
|
@capacitor/status-bar 8.0.0 (状态栏控制)
|
||||||
|
API 集成:
|
||||||
|
|
||||||
|
@elysiajs/eden 1.4.5 (类型安全的 API 客户端)
|
||||||
|
@riwa/api-types (项目专用 API 类型定义)
|
||||||
|
|
||||||
|
开发规范
|
||||||
|
1. 代码风格
|
||||||
|
使用 Composition API 和 <script setup lang="ts"> 语法
|
||||||
|
遵循 @antfu/eslint-config 规则
|
||||||
|
使用 TypeScript 严格模式,避免 any 类型
|
||||||
|
组件命名使用 PascalCase,文件名使用 PascalCase 或 kebab-case
|
||||||
|
使用 @/ 作为 src 目录的别名
|
||||||
|
2. 项目结构
|
||||||
|
```
|
||||||
|
src/
|
||||||
|
├── api/ # API 接口层
|
||||||
|
│ ├── enum.ts # 枚举定义
|
||||||
|
│ ├── index.ts # API 客户端配置
|
||||||
|
│ └── types.ts # API 类型定义
|
||||||
|
├── auth/ # 认证模块
|
||||||
|
│ ├── index.ts # 认证逻辑
|
||||||
|
│ ├── type.ts # 认证类型定义
|
||||||
|
│ └── components/ # 登录/注册组件
|
||||||
|
├── components/ # 可复用组件
|
||||||
|
│ ├── layout/ # 布局组件
|
||||||
|
│ └── ui/ # UI 基础组件
|
||||||
|
├── composables/ # Vue 组合式函数
|
||||||
|
├── locales/ # 国际化文件
|
||||||
|
├── router/ # 路由配置
|
||||||
|
├── store/ # Pinia 状态管理
|
||||||
|
├── theme/ # 主题样式文件
|
||||||
|
├── types/ # TypeScript 类型定义
|
||||||
|
├── utils/ # 工具函数
|
||||||
|
└── views/ # 页面组件
|
||||||
|
├── chat/ # 聊天页面
|
||||||
|
├── deposit/ # 充值页面
|
||||||
|
├── issue/ # 发行申请页面
|
||||||
|
├── market/ # 市场页面
|
||||||
|
├── onchain-address/ # 链上地址管理
|
||||||
|
├── riwa/ # 主页面
|
||||||
|
├── trade/ # 交易页面及相关组件
|
||||||
|
├── trade-settings/ # 交易设置(银行管理等)
|
||||||
|
├── user/ # 用户中心及设置
|
||||||
|
└── withdraw/ # 提现页面
|
||||||
|
```
|
||||||
|
3. 组件结构
|
||||||
|
使用 Ionic 组件库(IonPage, IonHeader, IonContent, IonToolbar 等)
|
||||||
|
页面组件放在 views 目录
|
||||||
|
可复用组件放在 components 目录
|
||||||
|
每个页面组件必须包裹在 <IonPage> 中
|
||||||
|
4. 路由配置
|
||||||
|
使用 @ionic/vue-router 创建路由
|
||||||
|
采用嵌套路由结构,主要页面在 /layout 下
|
||||||
|
懒加载页面组件以优化性能
|
||||||
|
路由配置在 router/index.ts
|
||||||
|
支持路由守卫 (router/guard.ts)
|
||||||
|
5. 样式管理
|
||||||
|
TailwindCSS 4.x 作为主要样式框架,集成 Ionic CSS Variables
|
||||||
|
支持深色模式和浅色模式切换
|
||||||
|
TailwindCSS 配置扩展了 Ionic 颜色变量
|
||||||
|
主题文件:theme/variables.css, theme/ionic.css
|
||||||
|
6. 自动导入配置
|
||||||
|
Vue 组合式函数自动导入:composables、utils、store 目录
|
||||||
|
Vue 生态自动导入:vue、vue-router、@vueuse/core、vue-i18n、pinia
|
||||||
|
组件自动导入:IonicResolver、@iconify 图标
|
||||||
|
支持目录作为命名空间
|
||||||
|
7. 原生功能集成
|
||||||
|
通过 Capacitor 插件访问原生功能
|
||||||
|
配置文件:capacitor.config.ts
|
||||||
|
iOS 构建目录:ios
|
||||||
|
使用前检查平台兼容性
|
||||||
|
8. API 集成模式
|
||||||
|
使用 @elysiajs/eden 进行类型安全的 API 调用
|
||||||
|
项目专用 API 类型定义:@riwa/api-types
|
||||||
|
API 配置集中在 src/api/index.ts
|
||||||
|
枚举定义统一在 src/api/enum.ts
|
||||||
|
9. 认证系统
|
||||||
|
集成 better-auth 提供现代认证功能
|
||||||
|
认证逻辑封装在 src/auth/index.ts
|
||||||
|
支持登录、注册组件复用
|
||||||
|
认证状态管理通过 useAuth composable
|
||||||
|
开发任务指引
|
||||||
|
当收到开发任务时,请:
|
||||||
|
|
||||||
|
分析需求:明确是页面开发、组件开发、功能集成还是原生能力调用
|
||||||
|
选择合适的 Ionic 组件:优先使用 Ionic 提供的 UI 组件
|
||||||
|
遵循 Vue 3 最佳实践:使用 Composition API、响应式 API
|
||||||
|
类型安全:为所有函数、组件 props、emit 事件定义 TypeScript 类型
|
||||||
|
移动端优化:考虑触摸交互、性能优化、响应式布局
|
||||||
|
测试覆盖:为关键功能编写单元测试
|
||||||
|
代码检查:确保代码通过 ESLint 检查
|
||||||
|
注意事项
|
||||||
|
项目使用 pnpm 作为包管理器,不要使用 npm 或 yarn
|
||||||
|
支持 iOS 平台,确保新功能在 iOS 上可用
|
||||||
|
遵循 Ionic 设计规范,保持移动端原生体验
|
||||||
|
使用 ionicons 和 @iconify 图标库(自动导入支持)
|
||||||
|
使用 Vite 的快速热更新开发体验
|
||||||
|
API 类型来自私有包 @riwa/api-types(需要特定访问权限)
|
||||||
|
表单验证使用 vee-validate + yup 组合
|
||||||
|
Capacitor 配置本地开发服务器地址为 http://localhost:5173
|
||||||
|
国际化支持中文和英文,配置文件在 src/locales/
|
||||||
|
样式使用 TailwindCSS 4.x + Ionic CSS Variables 混合模式
|
||||||
96
.github/prompts/riwa-ionic.prompt.md
vendored
96
.github/prompts/riwa-ionic.prompt.md
vendored
@@ -1,96 +0,0 @@
|
|||||||
---
|
|
||||||
agent: agent
|
|
||||||
---
|
|
||||||
|
|
||||||
Riwa-Ionic 项目提示词
|
|
||||||
你是一个专业的移动应用开发助手,负责协助开发基于 Ionic + Vue 3 + TypeScript + Capacitor 的跨平台移动应用项目。
|
|
||||||
|
|
||||||
项目参考:
|
|
||||||
欧易OKX 移动端应用
|
|
||||||
样式简洁现代,符合移动端用户体验
|
|
||||||
使用 Ionic 组件库,确保跨平台一致性
|
|
||||||
集成 Capacitor 以调用原生功能(摄像头、文件系统等)
|
|
||||||
|
|
||||||
项目技术栈
|
|
||||||
核心框架:
|
|
||||||
|
|
||||||
Vue 3.5+ (Composition API with <script setup>)
|
|
||||||
Ionic Vue 8.7+ (移动端 UI 框架)
|
|
||||||
TypeScript 5.9+
|
|
||||||
Capacitor 8.0 (原生功能桥接)
|
|
||||||
构建工具:
|
|
||||||
|
|
||||||
Vite 7.2+ (开发服务器和构建工具)
|
|
||||||
pnpm (包管理器)
|
|
||||||
Vue TSC (TypeScript 类型检查)
|
|
||||||
路由与状态:
|
|
||||||
|
|
||||||
Vue Router 4.6+ (使用 @ionic/vue-router)
|
|
||||||
基于 Tabs 的导航结构
|
|
||||||
代码质量:
|
|
||||||
|
|
||||||
ESLint 9 (@antfu/eslint-config)
|
|
||||||
Vitest 4.0+ (单元测试)
|
|
||||||
Cypress 15.7+ (E2E 测试)
|
|
||||||
simple-git-hooks + lint-staged (代码提交检查)
|
|
||||||
原生能力:
|
|
||||||
|
|
||||||
@capacitor/ios (iOS 平台支持)
|
|
||||||
@capacitor/app (应用生命周期)
|
|
||||||
@capacitor/haptics (触觉反馈)
|
|
||||||
@capacitor/keyboard (键盘控制)
|
|
||||||
@capacitor/status-bar (状态栏控制)
|
|
||||||
|
|
||||||
开发规范
|
|
||||||
1. 代码风格
|
|
||||||
使用 Composition API 和 <script setup lang="ts"> 语法
|
|
||||||
遵循 @antfu/eslint-config 规则
|
|
||||||
使用 TypeScript 严格模式,避免 any 类型
|
|
||||||
组件命名使用 PascalCase,文件名使用 PascalCase 或 kebab-case
|
|
||||||
使用 @/ 作为 src 目录的别名
|
|
||||||
2. 组件结构
|
|
||||||
使用 Ionic 组件库(IonPage, IonHeader, IonContent, IonToolbar 等)
|
|
||||||
页面组件放在 views 目录
|
|
||||||
可复用组件放在 components 目录
|
|
||||||
每个页面组件必须包裹在 <IonPage> 中
|
|
||||||
3. 路由配置
|
|
||||||
使用 @ionic/vue-router 创建路由
|
|
||||||
默认使用 Tabs 导航模式
|
|
||||||
懒加载页面组件以优化性能
|
|
||||||
路由配置在 index.ts
|
|
||||||
4. 样式管理
|
|
||||||
使用 Ionic CSS Variables(定义在 variables.css)
|
|
||||||
支持深色模式和浅色模式切换
|
|
||||||
尽量使用 Ionic 内置样式类
|
|
||||||
5. 原生功能集成
|
|
||||||
通过 Capacitor 插件访问原生功能
|
|
||||||
配置文件:capacitor.config.ts
|
|
||||||
iOS 构建目录:ios
|
|
||||||
使用前检查平台兼容性
|
|
||||||
6. 测试要求
|
|
||||||
单元测试使用 Vitest + @vue/test-utils
|
|
||||||
E2E 测试使用 Cypress
|
|
||||||
测试文件分别放在 unit 和 e2e
|
|
||||||
7. 构建与部署
|
|
||||||
开发环境:pnpm dev
|
|
||||||
生产构建:pnpm build
|
|
||||||
单元测试:pnpm test:unit
|
|
||||||
E2E 测试:pnpm test:e2e
|
|
||||||
代码检查:pnpm lint 或 pnpm lint:fix
|
|
||||||
开发任务指引
|
|
||||||
当收到开发任务时,请:
|
|
||||||
|
|
||||||
分析需求:明确是页面开发、组件开发、功能集成还是原生能力调用
|
|
||||||
选择合适的 Ionic 组件:优先使用 Ionic 提供的 UI 组件
|
|
||||||
遵循 Vue 3 最佳实践:使用 Composition API、响应式 API
|
|
||||||
类型安全:为所有函数、组件 props、emit 事件定义 TypeScript 类型
|
|
||||||
移动端优化:考虑触摸交互、性能优化、响应式布局
|
|
||||||
测试覆盖:为关键功能编写单元测试
|
|
||||||
代码检查:确保代码通过 ESLint 检查
|
|
||||||
注意事项
|
|
||||||
项目使用 pnpm 作为包管理器,不要使用 npm 或 yarn
|
|
||||||
支持 iOS 平台,确保新功能在 iOS 上可用
|
|
||||||
遵循 Ionic 设计规范,保持移动端原生体验
|
|
||||||
使用 ionicons 图标库
|
|
||||||
Git 提交前会自动运行 lint-staged 检查
|
|
||||||
使用 Vite 的快速热更新开发体验
|
|
||||||
@@ -47,7 +47,6 @@
|
|||||||
"@iconify/vue": "^5.0.0",
|
"@iconify/vue": "^5.0.0",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "^4.17.12",
|
||||||
"@types/node": "^24.10.2",
|
"@types/node": "^24.10.2",
|
||||||
"@unocss/preset-wind4": "^66.5.10",
|
|
||||||
"@vitejs/plugin-legacy": "^7.2.1",
|
"@vitejs/plugin-legacy": "^7.2.1",
|
||||||
"@vitejs/plugin-vue": "^6.0.2",
|
"@vitejs/plugin-vue": "^6.0.2",
|
||||||
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
||||||
@@ -63,7 +62,6 @@
|
|||||||
"simple-git-hooks": "^2.13.1",
|
"simple-git-hooks": "^2.13.1",
|
||||||
"terser": "^5.44.1",
|
"terser": "^5.44.1",
|
||||||
"typescript": "~5.9.3",
|
"typescript": "~5.9.3",
|
||||||
"unocss": "^66.5.10",
|
|
||||||
"unplugin-auto-import": "^20.3.0",
|
"unplugin-auto-import": "^20.3.0",
|
||||||
"unplugin-icons": "^22.5.0",
|
"unplugin-icons": "^22.5.0",
|
||||||
"unplugin-vue-components": "^30.0.0",
|
"unplugin-vue-components": "^30.0.0",
|
||||||
|
|||||||
456
pnpm-lock.yaml
generated
456
pnpm-lock.yaml
generated
@@ -102,9 +102,6 @@ importers:
|
|||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^24.10.2
|
specifier: ^24.10.2
|
||||||
version: 24.10.2
|
version: 24.10.2
|
||||||
'@unocss/preset-wind4':
|
|
||||||
specifier: ^66.5.10
|
|
||||||
version: 66.5.10
|
|
||||||
'@vitejs/plugin-legacy':
|
'@vitejs/plugin-legacy':
|
||||||
specifier: ^7.2.1
|
specifier: ^7.2.1
|
||||||
version: 7.2.1(terser@5.44.1)(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
version: 7.2.1(terser@5.44.1)(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
||||||
@@ -150,9 +147,6 @@ importers:
|
|||||||
typescript:
|
typescript:
|
||||||
specifier: ~5.9.3
|
specifier: ~5.9.3
|
||||||
version: 5.9.3
|
version: 5.9.3
|
||||||
unocss:
|
|
||||||
specifier: ^66.5.10
|
|
||||||
version: 66.5.10(postcss@8.5.6)(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
|
||||||
unplugin-auto-import:
|
unplugin-auto-import:
|
||||||
specifier: ^20.3.0
|
specifier: ^20.3.0
|
||||||
version: 20.3.0(@nuxt/kit@4.2.2)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))
|
version: 20.3.0(@nuxt/kit@4.2.2)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3)))
|
||||||
@@ -347,11 +341,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
|
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/parser@7.27.7':
|
|
||||||
resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==}
|
|
||||||
engines: {node: '>=6.0.0'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
'@babel/parser@7.28.5':
|
'@babel/parser@7.28.5':
|
||||||
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
|
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
@@ -750,10 +739,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
'@babel/traverse@7.27.7':
|
|
||||||
resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==}
|
|
||||||
engines: {node: '>=6.9.0'}
|
|
||||||
|
|
||||||
'@babel/traverse@7.28.5':
|
'@babel/traverse@7.28.5':
|
||||||
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
|
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@@ -1257,12 +1242,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
|
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
|
||||||
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
|
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
|
||||||
|
|
||||||
'@polka/url@1.0.0-next.29':
|
|
||||||
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
|
|
||||||
|
|
||||||
'@quansync/fs@1.0.0':
|
|
||||||
resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
|
|
||||||
|
|
||||||
'@riwa/api-types@http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz':
|
'@riwa/api-types@http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz':
|
||||||
resolution: {tarball: http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz}
|
resolution: {tarball: http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz}
|
||||||
version: 0.0.22
|
version: 0.0.22
|
||||||
@@ -1670,92 +1649,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-LlKaciDe3GmZFphXIc79THF/YYBugZ7FS1pO581E/edlVVNbZKDy93evqmrfQ9/Y4uN0vVhX4iuchq26mK/iiA==}
|
resolution: {integrity: sha512-LlKaciDe3GmZFphXIc79THF/YYBugZ7FS1pO581E/edlVVNbZKDy93evqmrfQ9/Y4uN0vVhX4iuchq26mK/iiA==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@unocss/astro@66.5.10':
|
|
||||||
resolution: {integrity: sha512-R1UU8lfIqcuorGpiuU+9pQEmK8uBBk1sf5re1db9kr23924Ia/aBCmfs4W2xyVCwJ0cGBv9C3ywDgOsgkHFCbQ==}
|
|
||||||
peerDependencies:
|
|
||||||
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
vite:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@unocss/cli@66.5.10':
|
|
||||||
resolution: {integrity: sha512-3tGBTGLLTtwGEwXGWsL77K4bTvNG115VJvYPPit68Z7uXnA6S8xpkwaFFDJ3kbrsWtgXBpIgM06HhtT6/3MILg==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
'@unocss/config@66.5.10':
|
|
||||||
resolution: {integrity: sha512-udBhfMe+2MU70ZdjnRLnwLQ+0EHYJ4f5JjjvHsfmQ0If4KeYmSStWBuX+/LHNQidhl487JiwW1lBDQ8pKHmbiw==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
|
|
||||||
'@unocss/core@66.5.10':
|
|
||||||
resolution: {integrity: sha512-SEmPE4pWNn9VcCvZqovPwFGuG/j69W3zh+x1Ky4z/I2pnyoB0Y0lBmq22KVu/dwExe+ZKKTQpxa0j5rbE27rDQ==}
|
|
||||||
|
|
||||||
'@unocss/extractor-arbitrary-variants@66.5.10':
|
|
||||||
resolution: {integrity: sha512-9JsAY1a68WZaIbSiwQa7LLAO+t4T5nnhgmNxY3MGaK58k6Qa9ayZb4AG4fqOpw+Zn8tmKd7yXJ0s+27sx1n2BA==}
|
|
||||||
|
|
||||||
'@unocss/inspector@66.5.10':
|
|
||||||
resolution: {integrity: sha512-L/Nvi4bkXFxbGNOi7TPNnIIDfY1zKghfJ+cF7To/WrXplP1Y4nEZa2kGwcVBcsaysACri0whU19Dh3yf+bG+Pg==}
|
|
||||||
|
|
||||||
'@unocss/postcss@66.5.10':
|
|
||||||
resolution: {integrity: sha512-Hp9k+1AB0qxc6b7Sh7JPKwYgcklIvRhleYtQldFbdU5eAY5InOy9m7gSZxRsz2WQb6IzliqO7Or34PbhnMlcFQ==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
peerDependencies:
|
|
||||||
postcss: ^8.4.21
|
|
||||||
|
|
||||||
'@unocss/preset-attributify@66.5.10':
|
|
||||||
resolution: {integrity: sha512-dEFs8kXC9xoqolQBFvtgXvdzWQqHoWqSj/eosX2oDmy8REk7UErpBvMmqR4pCP7mqdtG8yZ2l34Gtb42hDM3JA==}
|
|
||||||
|
|
||||||
'@unocss/preset-icons@66.5.10':
|
|
||||||
resolution: {integrity: sha512-zf4Sev/F2QQgVjGjKBCw3BKc15HQAtvUrNX2zymXXbAjt83Lf27ofYzTAUVUO9mi/oQhXcP5sQrIGIe7iQX3hw==}
|
|
||||||
|
|
||||||
'@unocss/preset-mini@66.5.10':
|
|
||||||
resolution: {integrity: sha512-jRmweaPhaTGBSDKFuhEGayGyuGr66rTRRqzv5EAdHH4x43TFlJ1RO5SVlzzJdo1zJy4vyGSINIVKeI49FYhEKQ==}
|
|
||||||
|
|
||||||
'@unocss/preset-tagify@66.5.10':
|
|
||||||
resolution: {integrity: sha512-SLfMhNQCFEXspp/zREZv61dmuvRQ+CVI04zcpGpg4LnqvMKkLVyPPetlhgJwW1hd9D7OWkUGoQm9JA0O4+9XJA==}
|
|
||||||
|
|
||||||
'@unocss/preset-typography@66.5.10':
|
|
||||||
resolution: {integrity: sha512-GMchTwywSA6vwiZ2w8svBY9U9br/OW7vIjwyYis0c9kp4h8apKCrLtAv2LjmlKyg12IDy9d8jp/hZ1zP9umung==}
|
|
||||||
|
|
||||||
'@unocss/preset-uno@66.5.10':
|
|
||||||
resolution: {integrity: sha512-O3R99td+Jt3XAJh1pVbOSTu3z7jUosg80y90iu6JQIpvXI/pGanWJEhoEz95SgJmRV+vXNEn4f6tIvfUXkTd/w==}
|
|
||||||
|
|
||||||
'@unocss/preset-web-fonts@66.5.10':
|
|
||||||
resolution: {integrity: sha512-rA9pjL+CuDpyEekawX54pkWHc4n+kfhoYsAFBWBtNHl4akDYsbnSA+2EF/XiEbRvz1YVFYDucZ9KpUiaq9+xtQ==}
|
|
||||||
|
|
||||||
'@unocss/preset-wind3@66.5.10':
|
|
||||||
resolution: {integrity: sha512-N2Wgu+AnTSr4jIEAfajOfUtwESE/Zzr0GxwW88+MHIw6Tzj6tZeCEKNNKFzsgwfGkoNjvwIeIbkaIrIGJ7SveA==}
|
|
||||||
|
|
||||||
'@unocss/preset-wind4@66.5.10':
|
|
||||||
resolution: {integrity: sha512-PXLxEcYJUsysQvK4xj3iA7plvq5RcAt9S1vLlOmBtl2X66dWU6XqiGEu7lLfqoypip1bPCOGlRB7HbfMuQpftQ==}
|
|
||||||
|
|
||||||
'@unocss/preset-wind@66.5.10':
|
|
||||||
resolution: {integrity: sha512-tR8JaXHnL006qcIEbD4lalZoqvW78SE+OvD7Sv5yj6s5FjwLZTiaJP8/0RTlx8SvhM6bw+NDxKQq678ntiZdiA==}
|
|
||||||
|
|
||||||
'@unocss/reset@66.5.10':
|
|
||||||
resolution: {integrity: sha512-xlydsCqbmVtA8QbVWv8+R66v4MJzeDXYsdoGDz7xsa2r65RD4UvJFZuyueY7+/bhzns9QhNOxltEiPi06j3Gvw==}
|
|
||||||
|
|
||||||
'@unocss/rule-utils@66.5.10':
|
|
||||||
resolution: {integrity: sha512-497GPWZpArNG25cto0Yq3/Yw+i0x7/N/ySq1HHeE3lB43sdmCv6+m6QEv14I/9/e5WJhQOmrY5LmHZYXC7xxMw==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
|
|
||||||
'@unocss/transformer-attributify-jsx@66.5.10':
|
|
||||||
resolution: {integrity: sha512-WAAVWWx/BVQ9dk1W9FCP7UL9dLScmNDrRwBRah5WJMtKaV890RaL4wLItfQH0SN31C+quTwuaU0Hi6BiBsc9qw==}
|
|
||||||
|
|
||||||
'@unocss/transformer-compile-class@66.5.10':
|
|
||||||
resolution: {integrity: sha512-NFXf5qTVJXZNnZTpnCSQmNwJhQrmCQv/tgmX69rwNDYKmYcBufpaKfwKzO+EkVQz4A6ySv09Q9PaNBCH5N0FTQ==}
|
|
||||||
|
|
||||||
'@unocss/transformer-directives@66.5.10':
|
|
||||||
resolution: {integrity: sha512-EDak3DGW+rSYjoZNwU8xJIXbwif+q9e3cjhCZy48ll1nfyg2E1Znqtwv/X8vLRr8fJ0gWn75P2uGi4jfGLZzMg==}
|
|
||||||
|
|
||||||
'@unocss/transformer-variant-group@66.5.10':
|
|
||||||
resolution: {integrity: sha512-9DWi9bLOGwdw6whCTdywVD9+lA5lkeqcgy9sMoizfUa4CfT1bSdMT27VoAbYhxeEznV92BCW2jCYt0I8M00phw==}
|
|
||||||
|
|
||||||
'@unocss/vite@66.5.10':
|
|
||||||
resolution: {integrity: sha512-GegFDmcWe0V2CR/uN1f+iQuDh2R1vA6EAwSvl1nyL+6ue0/zLyF9yhdVnypIVlJnS6RK/xaLPOP6vWJnqRGhZg==}
|
|
||||||
peerDependencies:
|
|
||||||
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
|
|
||||||
|
|
||||||
'@vee-validate/yup@4.15.1':
|
'@vee-validate/yup@4.15.1':
|
||||||
resolution: {integrity: sha512-+u6lI1IZftjHphj+mTCPJRruwBBwv1IKKCI1EFm6ipQroAPibkS5M8UNX+yeVYG5++ix6m1rsv4/SJvJJQTWJg==}
|
resolution: {integrity: sha512-+u6lI1IZftjHphj+mTCPJRruwBBwv1IKKCI1EFm6ipQroAPibkS5M8UNX+yeVYG5++ix6m1rsv4/SJvJJQTWJg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1995,10 +1888,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
|
resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
anymatch@3.1.3:
|
|
||||||
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
||||||
engines: {node: '>= 8'}
|
|
||||||
|
|
||||||
arch@2.2.0:
|
arch@2.2.0:
|
||||||
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
|
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
|
||||||
|
|
||||||
@@ -2112,10 +2001,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
|
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
|
||||||
engines: {node: '>=0.6'}
|
engines: {node: '>=0.6'}
|
||||||
|
|
||||||
binary-extensions@2.3.0:
|
|
||||||
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
|
|
||||||
birpc@2.9.0:
|
birpc@2.9.0:
|
||||||
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
|
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
|
||||||
|
|
||||||
@@ -2218,10 +2103,6 @@ packages:
|
|||||||
character-entities@2.0.2:
|
character-entities@2.0.2:
|
||||||
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
|
||||||
|
|
||||||
chokidar@3.6.0:
|
|
||||||
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
||||||
engines: {node: '>= 8.10.0'}
|
|
||||||
|
|
||||||
chokidar@4.0.3:
|
chokidar@4.0.3:
|
||||||
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
|
||||||
engines: {node: '>= 14.16.0'}
|
engines: {node: '>= 14.16.0'}
|
||||||
@@ -2445,9 +2326,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
duplexer@0.1.2:
|
|
||||||
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
|
|
||||||
|
|
||||||
eastasianwidth@0.2.0:
|
eastasianwidth@0.2.0:
|
||||||
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
||||||
|
|
||||||
@@ -2974,10 +2852,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
|
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
|
|
||||||
globals@11.12.0:
|
|
||||||
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
|
||||||
engines: {node: '>=4'}
|
|
||||||
|
|
||||||
globals@14.0.0:
|
globals@14.0.0:
|
||||||
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -3003,10 +2877,6 @@ packages:
|
|||||||
graphemer@1.4.0:
|
graphemer@1.4.0:
|
||||||
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
||||||
|
|
||||||
gzip-size@6.0.0:
|
|
||||||
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
|
|
||||||
engines: {node: '>=10'}
|
|
||||||
|
|
||||||
has-flag@4.0.0:
|
has-flag@4.0.0:
|
||||||
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -3101,10 +2971,6 @@ packages:
|
|||||||
ionicons@8.0.13:
|
ionicons@8.0.13:
|
||||||
resolution: {integrity: sha512-2QQVyG2P4wszne79jemMjWYLp0DBbDhr4/yFroPCxvPP1wtMxgdIV3l5n+XZ5E9mgoXU79w7yTWpm2XzJsISxQ==}
|
resolution: {integrity: sha512-2QQVyG2P4wszne79jemMjWYLp0DBbDhr4/yFroPCxvPP1wtMxgdIV3l5n+XZ5E9mgoXU79w7yTWpm2XzJsISxQ==}
|
||||||
|
|
||||||
is-binary-path@2.1.0:
|
|
||||||
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
|
|
||||||
is-builtin-module@5.0.0:
|
is-builtin-module@5.0.0:
|
||||||
resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==}
|
resolution: {integrity: sha512-f4RqJKBUe5rQkJ2eJEJBXSticB3hGbN9j0yxxMQFqIW89Jp9WYFtzfTcRlstDKVUTRzSOTLKRfO9vIztenwtxA==}
|
||||||
engines: {node: '>=18.20'}
|
engines: {node: '>=18.20'}
|
||||||
@@ -3640,10 +3506,6 @@ packages:
|
|||||||
mlly@1.8.0:
|
mlly@1.8.0:
|
||||||
resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
|
resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
|
||||||
|
|
||||||
mrmime@2.0.1:
|
|
||||||
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
|
|
||||||
engines: {node: '>=10'}
|
|
||||||
|
|
||||||
ms@2.1.3:
|
ms@2.1.3:
|
||||||
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
|
||||||
@@ -3690,10 +3552,6 @@ packages:
|
|||||||
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
normalize-path@3.0.0:
|
|
||||||
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
|
|
||||||
npm-run-path@4.0.1:
|
npm-run-path@4.0.1:
|
||||||
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -3716,9 +3574,6 @@ packages:
|
|||||||
obug@2.1.1:
|
obug@2.1.1:
|
||||||
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
||||||
|
|
||||||
ofetch@1.5.1:
|
|
||||||
resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==}
|
|
||||||
|
|
||||||
ohash@2.0.11:
|
ohash@2.0.11:
|
||||||
resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
|
resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
|
||||||
|
|
||||||
@@ -3921,9 +3776,6 @@ packages:
|
|||||||
quansync@0.2.11:
|
quansync@0.2.11:
|
||||||
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
|
resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==}
|
||||||
|
|
||||||
quansync@1.0.0:
|
|
||||||
resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==}
|
|
||||||
|
|
||||||
queue-microtask@1.2.3:
|
queue-microtask@1.2.3:
|
||||||
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
||||||
|
|
||||||
@@ -3934,10 +3786,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
|
|
||||||
readdirp@3.6.0:
|
|
||||||
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
||||||
engines: {node: '>=8.10.0'}
|
|
||||||
|
|
||||||
readdirp@4.1.2:
|
readdirp@4.1.2:
|
||||||
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
|
||||||
engines: {node: '>= 14.18.0'}
|
engines: {node: '>= 14.18.0'}
|
||||||
@@ -4105,10 +3953,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==}
|
resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
sirv@3.0.2:
|
|
||||||
resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
|
|
||||||
engines: {node: '>=18'}
|
|
||||||
|
|
||||||
sisteransi@1.0.5:
|
sisteransi@1.0.5:
|
||||||
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
||||||
|
|
||||||
@@ -4325,10 +4169,6 @@ packages:
|
|||||||
toposort@2.0.2:
|
toposort@2.0.2:
|
||||||
resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
|
resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==}
|
||||||
|
|
||||||
totalist@3.0.1:
|
|
||||||
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
|
|
||||||
engines: {node: '>=6'}
|
|
||||||
|
|
||||||
tough-cookie@5.1.2:
|
tough-cookie@5.1.2:
|
||||||
resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
|
resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==}
|
||||||
engines: {node: '>=16'}
|
engines: {node: '>=16'}
|
||||||
@@ -4404,12 +4244,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
|
resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
unconfig-core@7.4.2:
|
|
||||||
resolution: {integrity: sha512-VgPCvLWugINbXvMQDf8Jh0mlbvNjNC6eSUziHsBCMpxR05OPrNrvDnyatdMjRgcHaaNsCqz+wjNXxNw1kRLHUg==}
|
|
||||||
|
|
||||||
unconfig@7.4.2:
|
|
||||||
resolution: {integrity: sha512-nrMlWRQ1xdTjSnSUqvYqJzbTBFugoqHobQj58B2bc8qxHKBBHMNNsWQFP3Cd3/JZK907voM2geYPWqD4VK3MPQ==}
|
|
||||||
|
|
||||||
unctx@2.4.1:
|
unctx@2.4.1:
|
||||||
resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
|
resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
|
||||||
|
|
||||||
@@ -4452,18 +4286,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
|
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
|
|
||||||
unocss@66.5.10:
|
|
||||||
resolution: {integrity: sha512-h3OjHVKsYFiet7ZSgxD6+odC1bpx+N0JYP2bWy/vcqjrApaZmYg4CKmvxCFNxw1+qVoxyfhhjcVZHGUpf9jaKA==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
peerDependencies:
|
|
||||||
'@unocss/webpack': 66.5.10
|
|
||||||
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@unocss/webpack':
|
|
||||||
optional: true
|
|
||||||
vite:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
unplugin-auto-import@20.3.0:
|
unplugin-auto-import@20.3.0:
|
||||||
resolution: {integrity: sha512-RcSEQiVv7g0mLMMXibYVKk8mpteKxvyffGuDKqZZiFr7Oq3PB1HwgHdK5O7H4AzbhzHoVKG0NnMnsk/1HIVYzQ==}
|
resolution: {integrity: sha512-RcSEQiVv7g0mLMMXibYVKk8mpteKxvyffGuDKqZZiFr7Oq3PB1HwgHdK5O7H4AzbhzHoVKG0NnMnsk/1HIVYzQ==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -4639,9 +4461,6 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
|
|
||||||
vue-flow-layout@0.2.0:
|
|
||||||
resolution: {integrity: sha512-zKgsWWkXq0xrus7H4Mc+uFs1ESrmdTXlO0YNbR6wMdPaFvosL3fMB8N7uTV308UhGy9UvTrGhIY7mVz9eN+L0Q==}
|
|
||||||
|
|
||||||
vue-i18n@11.2.2:
|
vue-i18n@11.2.2:
|
||||||
resolution: {integrity: sha512-ULIKZyRluUPRCZmihVgUvpq8hJTtOqnbGZuv4Lz+byEKZq4mU0g92og414l6f/4ju+L5mORsiUuEPYrAuX2NJg==}
|
resolution: {integrity: sha512-ULIKZyRluUPRCZmihVgUvpq8hJTtOqnbGZuv4Lz+byEKZq4mU0g92og414l6f/4ju+L5mORsiUuEPYrAuX2NJg==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
@@ -5018,10 +4837,6 @@ snapshots:
|
|||||||
'@babel/template': 7.27.2
|
'@babel/template': 7.27.2
|
||||||
'@babel/types': 7.28.5
|
'@babel/types': 7.28.5
|
||||||
|
|
||||||
'@babel/parser@7.27.7':
|
|
||||||
dependencies:
|
|
||||||
'@babel/types': 7.28.5
|
|
||||||
|
|
||||||
'@babel/parser@7.28.5':
|
'@babel/parser@7.28.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/types': 7.28.5
|
'@babel/types': 7.28.5
|
||||||
@@ -5524,18 +5339,6 @@ snapshots:
|
|||||||
'@babel/parser': 7.28.5
|
'@babel/parser': 7.28.5
|
||||||
'@babel/types': 7.28.5
|
'@babel/types': 7.28.5
|
||||||
|
|
||||||
'@babel/traverse@7.27.7':
|
|
||||||
dependencies:
|
|
||||||
'@babel/code-frame': 7.27.1
|
|
||||||
'@babel/generator': 7.28.5
|
|
||||||
'@babel/parser': 7.28.5
|
|
||||||
'@babel/template': 7.27.2
|
|
||||||
'@babel/types': 7.28.5
|
|
||||||
debug: 4.4.3(supports-color@8.1.1)
|
|
||||||
globals: 11.12.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
'@babel/traverse@7.28.5':
|
'@babel/traverse@7.28.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/code-frame': 7.27.1
|
'@babel/code-frame': 7.27.1
|
||||||
@@ -6095,12 +5898,6 @@ snapshots:
|
|||||||
|
|
||||||
'@pkgr/core@0.2.9': {}
|
'@pkgr/core@0.2.9': {}
|
||||||
|
|
||||||
'@polka/url@1.0.0-next.29': {}
|
|
||||||
|
|
||||||
'@quansync/fs@1.0.0':
|
|
||||||
dependencies:
|
|
||||||
quansync: 1.0.0
|
|
||||||
|
|
||||||
'@riwa/api-types@http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz(@elysiajs/eden@1.4.5(elysia@1.4.18(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))':
|
'@riwa/api-types@http://192.168.1.36:9527/api/riwa-api-types-0.0.22.tgz(@elysiajs/eden@1.4.5(elysia@1.4.18(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3)))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@elysiajs/eden': 1.4.5(elysia@1.4.18(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3))
|
'@elysiajs/eden': 1.4.5(elysia@1.4.18(@sinclair/typebox@0.34.41)(exact-mirror@0.2.5(@sinclair/typebox@0.34.41))(file-type@21.1.1)(openapi-types@12.1.3)(typescript@5.9.3))
|
||||||
@@ -6462,153 +6259,6 @@ snapshots:
|
|||||||
'@typescript-eslint/types': 8.49.0
|
'@typescript-eslint/types': 8.49.0
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.1
|
||||||
|
|
||||||
'@unocss/astro@66.5.10(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/reset': 66.5.10
|
|
||||||
'@unocss/vite': 66.5.10(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
|
||||||
optionalDependencies:
|
|
||||||
vite: 7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2)
|
|
||||||
|
|
||||||
'@unocss/cli@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@jridgewell/remapping': 2.3.5
|
|
||||||
'@unocss/config': 66.5.10
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/preset-uno': 66.5.10
|
|
||||||
cac: 6.7.14
|
|
||||||
chokidar: 3.6.0
|
|
||||||
colorette: 2.0.20
|
|
||||||
consola: 3.4.2
|
|
||||||
magic-string: 0.30.21
|
|
||||||
pathe: 2.0.3
|
|
||||||
perfect-debounce: 1.0.0
|
|
||||||
tinyglobby: 0.2.15
|
|
||||||
unplugin-utils: 0.3.1
|
|
||||||
|
|
||||||
'@unocss/config@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
unconfig: 7.4.2
|
|
||||||
|
|
||||||
'@unocss/core@66.5.10': {}
|
|
||||||
|
|
||||||
'@unocss/extractor-arbitrary-variants@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/inspector@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
colorette: 2.0.20
|
|
||||||
gzip-size: 6.0.0
|
|
||||||
sirv: 3.0.2
|
|
||||||
vue-flow-layout: 0.2.0
|
|
||||||
|
|
||||||
'@unocss/postcss@66.5.10(postcss@8.5.6)':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/config': 66.5.10
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
css-tree: 3.1.0
|
|
||||||
postcss: 8.5.6
|
|
||||||
tinyglobby: 0.2.15
|
|
||||||
|
|
||||||
'@unocss/preset-attributify@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-icons@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@iconify/utils': 3.1.0
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
ofetch: 1.5.1
|
|
||||||
|
|
||||||
'@unocss/preset-mini@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/extractor-arbitrary-variants': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-tagify@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-typography@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-uno@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/preset-wind3': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-web-fonts@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
ofetch: 1.5.1
|
|
||||||
|
|
||||||
'@unocss/preset-wind3@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/preset-mini': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-wind4@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/extractor-arbitrary-variants': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/preset-wind@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/preset-wind3': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/reset@66.5.10': {}
|
|
||||||
|
|
||||||
'@unocss/rule-utils@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
magic-string: 0.30.21
|
|
||||||
|
|
||||||
'@unocss/transformer-attributify-jsx@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@babel/parser': 7.27.7
|
|
||||||
'@babel/traverse': 7.27.7
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
'@unocss/transformer-compile-class@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/transformer-directives@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/rule-utils': 66.5.10
|
|
||||||
css-tree: 3.1.0
|
|
||||||
|
|
||||||
'@unocss/transformer-variant-group@66.5.10':
|
|
||||||
dependencies:
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
|
|
||||||
'@unocss/vite@66.5.10(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))':
|
|
||||||
dependencies:
|
|
||||||
'@jridgewell/remapping': 2.3.5
|
|
||||||
'@unocss/config': 66.5.10
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/inspector': 66.5.10
|
|
||||||
chokidar: 3.6.0
|
|
||||||
magic-string: 0.30.21
|
|
||||||
pathe: 2.0.3
|
|
||||||
tinyglobby: 0.2.15
|
|
||||||
unplugin-utils: 0.3.1
|
|
||||||
vite: 7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2)
|
|
||||||
|
|
||||||
'@vee-validate/yup@4.15.1(vue@3.5.25(typescript@5.9.3))(yup@1.7.1)':
|
'@vee-validate/yup@4.15.1(vue@3.5.25(typescript@5.9.3))(yup@1.7.1)':
|
||||||
dependencies:
|
dependencies:
|
||||||
type-fest: 4.41.0
|
type-fest: 4.41.0
|
||||||
@@ -6916,11 +6566,6 @@ snapshots:
|
|||||||
|
|
||||||
ansis@4.2.0: {}
|
ansis@4.2.0: {}
|
||||||
|
|
||||||
anymatch@3.1.3:
|
|
||||||
dependencies:
|
|
||||||
normalize-path: 3.0.0
|
|
||||||
picomatch: 2.3.1
|
|
||||||
|
|
||||||
arch@2.2.0: {}
|
arch@2.2.0: {}
|
||||||
|
|
||||||
are-docs-informative@0.0.2: {}
|
are-docs-informative@0.0.2: {}
|
||||||
@@ -7012,8 +6657,6 @@ snapshots:
|
|||||||
|
|
||||||
big-integer@1.6.52: {}
|
big-integer@1.6.52: {}
|
||||||
|
|
||||||
binary-extensions@2.3.0: {}
|
|
||||||
|
|
||||||
birpc@2.9.0: {}
|
birpc@2.9.0: {}
|
||||||
|
|
||||||
blob-util@2.0.2: {}
|
blob-util@2.0.2: {}
|
||||||
@@ -7112,18 +6755,6 @@ snapshots:
|
|||||||
|
|
||||||
character-entities@2.0.2: {}
|
character-entities@2.0.2: {}
|
||||||
|
|
||||||
chokidar@3.6.0:
|
|
||||||
dependencies:
|
|
||||||
anymatch: 3.1.3
|
|
||||||
braces: 3.0.3
|
|
||||||
glob-parent: 5.1.2
|
|
||||||
is-binary-path: 2.1.0
|
|
||||||
is-glob: 4.0.3
|
|
||||||
normalize-path: 3.0.0
|
|
||||||
readdirp: 3.6.0
|
|
||||||
optionalDependencies:
|
|
||||||
fsevents: 2.3.3
|
|
||||||
|
|
||||||
chokidar@4.0.3:
|
chokidar@4.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
readdirp: 4.1.2
|
readdirp: 4.1.2
|
||||||
@@ -7207,7 +6838,8 @@ snapshots:
|
|||||||
ini: 1.3.8
|
ini: 1.3.8
|
||||||
proto-list: 1.2.4
|
proto-list: 1.2.4
|
||||||
|
|
||||||
consola@3.4.2: {}
|
consola@3.4.2:
|
||||||
|
optional: true
|
||||||
|
|
||||||
convert-source-map@2.0.0: {}
|
convert-source-map@2.0.0: {}
|
||||||
|
|
||||||
@@ -7332,7 +6964,8 @@ snapshots:
|
|||||||
|
|
||||||
dequal@2.0.3: {}
|
dequal@2.0.3: {}
|
||||||
|
|
||||||
destr@2.0.5: {}
|
destr@2.0.5:
|
||||||
|
optional: true
|
||||||
|
|
||||||
detect-libc@2.1.2: {}
|
detect-libc@2.1.2: {}
|
||||||
|
|
||||||
@@ -7350,8 +6983,6 @@ snapshots:
|
|||||||
es-errors: 1.3.0
|
es-errors: 1.3.0
|
||||||
gopd: 1.2.0
|
gopd: 1.2.0
|
||||||
|
|
||||||
duplexer@0.1.2: {}
|
|
||||||
|
|
||||||
eastasianwidth@0.2.0: {}
|
eastasianwidth@0.2.0: {}
|
||||||
|
|
||||||
ecc-jsbn@0.1.2:
|
ecc-jsbn@0.1.2:
|
||||||
@@ -7998,8 +7629,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ini: 2.0.0
|
ini: 2.0.0
|
||||||
|
|
||||||
globals@11.12.0: {}
|
|
||||||
|
|
||||||
globals@14.0.0: {}
|
globals@14.0.0: {}
|
||||||
|
|
||||||
globals@15.15.0: {}
|
globals@15.15.0: {}
|
||||||
@@ -8014,10 +7643,6 @@ snapshots:
|
|||||||
|
|
||||||
graphemer@1.4.0: {}
|
graphemer@1.4.0: {}
|
||||||
|
|
||||||
gzip-size@6.0.0:
|
|
||||||
dependencies:
|
|
||||||
duplexer: 0.1.2
|
|
||||||
|
|
||||||
has-flag@4.0.0: {}
|
has-flag@4.0.0: {}
|
||||||
|
|
||||||
has-symbols@1.1.0: {}
|
has-symbols@1.1.0: {}
|
||||||
@@ -8098,10 +7723,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@stencil/core': 4.39.0
|
'@stencil/core': 4.39.0
|
||||||
|
|
||||||
is-binary-path@2.1.0:
|
|
||||||
dependencies:
|
|
||||||
binary-extensions: 2.3.0
|
|
||||||
|
|
||||||
is-builtin-module@5.0.0:
|
is-builtin-module@5.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
builtin-modules: 5.0.0
|
builtin-modules: 5.0.0
|
||||||
@@ -8787,8 +8408,6 @@ snapshots:
|
|||||||
pkg-types: 1.3.1
|
pkg-types: 1.3.1
|
||||||
ufo: 1.6.1
|
ufo: 1.6.1
|
||||||
|
|
||||||
mrmime@2.0.1: {}
|
|
||||||
|
|
||||||
ms@2.1.3: {}
|
ms@2.1.3: {}
|
||||||
|
|
||||||
ms@4.0.0-nightly.202508271359: {}
|
ms@4.0.0-nightly.202508271359: {}
|
||||||
@@ -8821,7 +8440,8 @@ snapshots:
|
|||||||
|
|
||||||
natural-orderby@5.0.0: {}
|
natural-orderby@5.0.0: {}
|
||||||
|
|
||||||
node-fetch-native@1.6.7: {}
|
node-fetch-native@1.6.7:
|
||||||
|
optional: true
|
||||||
|
|
||||||
node-releases@2.0.27: {}
|
node-releases@2.0.27: {}
|
||||||
|
|
||||||
@@ -8829,8 +8449,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
abbrev: 2.0.0
|
abbrev: 2.0.0
|
||||||
|
|
||||||
normalize-path@3.0.0: {}
|
|
||||||
|
|
||||||
npm-run-path@4.0.1:
|
npm-run-path@4.0.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
path-key: 3.1.1
|
path-key: 3.1.1
|
||||||
@@ -8854,12 +8472,6 @@ snapshots:
|
|||||||
|
|
||||||
obug@2.1.1: {}
|
obug@2.1.1: {}
|
||||||
|
|
||||||
ofetch@1.5.1:
|
|
||||||
dependencies:
|
|
||||||
destr: 2.0.5
|
|
||||||
node-fetch-native: 1.6.7
|
|
||||||
ufo: 1.6.1
|
|
||||||
|
|
||||||
ohash@2.0.11:
|
ohash@2.0.11:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -9043,8 +8655,6 @@ snapshots:
|
|||||||
|
|
||||||
quansync@0.2.11: {}
|
quansync@0.2.11: {}
|
||||||
|
|
||||||
quansync@1.0.0: {}
|
|
||||||
|
|
||||||
queue-microtask@1.2.3: {}
|
queue-microtask@1.2.3: {}
|
||||||
|
|
||||||
rc9@2.1.2:
|
rc9@2.1.2:
|
||||||
@@ -9059,10 +8669,6 @@ snapshots:
|
|||||||
string_decoder: 1.3.0
|
string_decoder: 1.3.0
|
||||||
util-deprecate: 1.0.2
|
util-deprecate: 1.0.2
|
||||||
|
|
||||||
readdirp@3.6.0:
|
|
||||||
dependencies:
|
|
||||||
picomatch: 2.3.1
|
|
||||||
|
|
||||||
readdirp@4.1.2: {}
|
readdirp@4.1.2: {}
|
||||||
|
|
||||||
refa@0.12.1:
|
refa@0.12.1:
|
||||||
@@ -9242,12 +8848,6 @@ snapshots:
|
|||||||
|
|
||||||
simple-git-hooks@2.13.1: {}
|
simple-git-hooks@2.13.1: {}
|
||||||
|
|
||||||
sirv@3.0.2:
|
|
||||||
dependencies:
|
|
||||||
'@polka/url': 1.0.0-next.29
|
|
||||||
mrmime: 2.0.1
|
|
||||||
totalist: 3.0.1
|
|
||||||
|
|
||||||
sisteransi@1.0.5: {}
|
sisteransi@1.0.5: {}
|
||||||
|
|
||||||
slice-ansi@3.0.0:
|
slice-ansi@3.0.0:
|
||||||
@@ -9456,8 +9056,6 @@ snapshots:
|
|||||||
|
|
||||||
toposort@2.0.2: {}
|
toposort@2.0.2: {}
|
||||||
|
|
||||||
totalist@3.0.1: {}
|
|
||||||
|
|
||||||
tough-cookie@5.1.2:
|
tough-cookie@5.1.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
tldts: 6.1.86
|
tldts: 6.1.86
|
||||||
@@ -9518,19 +9116,6 @@ snapshots:
|
|||||||
|
|
||||||
uint8array-extras@1.5.0: {}
|
uint8array-extras@1.5.0: {}
|
||||||
|
|
||||||
unconfig-core@7.4.2:
|
|
||||||
dependencies:
|
|
||||||
'@quansync/fs': 1.0.0
|
|
||||||
quansync: 1.0.0
|
|
||||||
|
|
||||||
unconfig@7.4.2:
|
|
||||||
dependencies:
|
|
||||||
'@quansync/fs': 1.0.0
|
|
||||||
defu: 6.1.4
|
|
||||||
jiti: 2.6.1
|
|
||||||
quansync: 1.0.0
|
|
||||||
unconfig-core: 7.4.2
|
|
||||||
|
|
||||||
unctx@2.4.1:
|
unctx@2.4.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.15.0
|
acorn: 8.15.0
|
||||||
@@ -9590,33 +9175,6 @@ snapshots:
|
|||||||
|
|
||||||
universalify@2.0.1: {}
|
universalify@2.0.1: {}
|
||||||
|
|
||||||
unocss@66.5.10(postcss@8.5.6)(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2)):
|
|
||||||
dependencies:
|
|
||||||
'@unocss/astro': 66.5.10(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
|
||||||
'@unocss/cli': 66.5.10
|
|
||||||
'@unocss/core': 66.5.10
|
|
||||||
'@unocss/postcss': 66.5.10(postcss@8.5.6)
|
|
||||||
'@unocss/preset-attributify': 66.5.10
|
|
||||||
'@unocss/preset-icons': 66.5.10
|
|
||||||
'@unocss/preset-mini': 66.5.10
|
|
||||||
'@unocss/preset-tagify': 66.5.10
|
|
||||||
'@unocss/preset-typography': 66.5.10
|
|
||||||
'@unocss/preset-uno': 66.5.10
|
|
||||||
'@unocss/preset-web-fonts': 66.5.10
|
|
||||||
'@unocss/preset-wind': 66.5.10
|
|
||||||
'@unocss/preset-wind3': 66.5.10
|
|
||||||
'@unocss/preset-wind4': 66.5.10
|
|
||||||
'@unocss/transformer-attributify-jsx': 66.5.10
|
|
||||||
'@unocss/transformer-compile-class': 66.5.10
|
|
||||||
'@unocss/transformer-directives': 66.5.10
|
|
||||||
'@unocss/transformer-variant-group': 66.5.10
|
|
||||||
'@unocss/vite': 66.5.10(vite@7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2))
|
|
||||||
optionalDependencies:
|
|
||||||
vite: 7.2.7(@types/node@24.10.2)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.2)
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- postcss
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
unplugin-auto-import@20.3.0(@nuxt/kit@4.2.2)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))):
|
unplugin-auto-import@20.3.0(@nuxt/kit@4.2.2)(@vueuse/core@14.1.0(vue@3.5.25(typescript@5.9.3))):
|
||||||
dependencies:
|
dependencies:
|
||||||
local-pkg: 1.1.2
|
local-pkg: 1.1.2
|
||||||
@@ -9777,8 +9335,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
vue-flow-layout@0.2.0: {}
|
|
||||||
|
|
||||||
vue-i18n@11.2.2(vue@3.5.25(typescript@5.9.3)):
|
vue-i18n@11.2.2(vue@3.5.25(typescript@5.9.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/core-base': 11.2.2
|
'@intlify/core-base': 11.2.2
|
||||||
|
|||||||
Reference in New Issue
Block a user