@coze-arch/cli 0.0.1-alpha.fc5c04 → 0.0.1-alpha.ff3d06
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/lib/__templates__/expo/_npmrc +1 -0
- package/lib/__templates__/expo/client/components/Screen.tsx +2 -2
- package/lib/__templates__/expo/client/eslint.config.mjs +7 -0
- package/lib/__templates__/expo/client/scripts/install-missing-deps.js +10 -10
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/rule.js +112 -0
- package/lib/__templates__/expo/eslint-plugins/forbid-emoji/tech.md +94 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/index.js +9 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/rule.js +120 -0
- package/lib/__templates__/expo/eslint-plugins/restrict-linear-gradient/tech.md +58 -0
- package/lib/__templates__/nextjs/AGENTS.md +54 -0
- package/lib/__templates__/nextjs/README.md +5 -0
- package/lib/__templates__/nextjs/eslint.config.mjs +5 -0
- package/lib/__templates__/nextjs/next.config.ts +1 -2
- package/lib/__templates__/nextjs/package.json +2 -5
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1028 -5
- package/lib/__templates__/nextjs/scripts/build.sh +4 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +8 -2
- package/lib/__templates__/nextjs/scripts/start.sh +7 -1
- package/lib/__templates__/nextjs/src/app/layout.tsx +1 -1
- package/lib/__templates__/nextjs/src/app/page.tsx +1 -2
- package/lib/__templates__/nextjs/src/server.ts +35 -0
- package/lib/__templates__/nextjs/tsconfig.json +1 -1
- package/lib/__templates__/nuxt-vue/AGENTS.md +42 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/nuxt-vue/app/app.vue +6 -0
- package/lib/__templates__/nuxt-vue/app/pages/index.vue +23 -0
- package/lib/__templates__/{vite-vue/src/index.css → nuxt-vue/assets/css/main.css} +6 -11
- package/lib/__templates__/nuxt-vue/nuxt.config.ts +116 -0
- package/lib/__templates__/nuxt-vue/package.json +35 -0
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +8759 -0
- package/lib/__templates__/{vite-vue → nuxt-vue}/postcss.config.mjs +3 -1
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/{vite-vue → nuxt-vue}/scripts/build.sh +2 -2
- package/lib/__templates__/{vite-vue → nuxt-vue}/scripts/dev.sh +9 -2
- package/lib/__templates__/nuxt-vue/scripts/prepare.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/start.sh +21 -0
- package/lib/__templates__/nuxt-vue/server/api/hello.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/middleware/logger.ts +10 -0
- package/lib/__templates__/nuxt-vue/server/routes/health.ts +10 -0
- package/lib/__templates__/nuxt-vue/tailwind.config.js +13 -0
- package/lib/__templates__/nuxt-vue/template.config.js +87 -0
- package/lib/__templates__/nuxt-vue/tsconfig.json +18 -0
- package/lib/__templates__/taro/README.md +57 -45
- package/lib/__templates__/taro/config/index.ts +45 -30
- package/lib/__templates__/taro/eslint.config.mjs +61 -6
- package/lib/__templates__/taro/package.json +8 -3
- package/lib/__templates__/taro/pnpm-lock.yaml +515 -203
- package/lib/__templates__/taro/src/app.css +140 -36
- package/lib/__templates__/taro/src/components/ui/accordion.tsx +159 -0
- package/lib/__templates__/taro/src/components/ui/alert-dialog.tsx +260 -0
- package/lib/__templates__/taro/src/components/ui/alert.tsx +60 -0
- package/lib/__templates__/taro/src/components/ui/aspect-ratio.tsx +36 -0
- package/lib/__templates__/taro/src/components/ui/avatar.tsx +84 -0
- package/lib/__templates__/taro/src/components/ui/badge.tsx +37 -0
- package/lib/__templates__/taro/src/components/ui/breadcrumb.tsx +117 -0
- package/lib/__templates__/taro/src/components/ui/button-group.tsx +83 -0
- package/lib/__templates__/taro/src/components/ui/button.tsx +67 -0
- package/lib/__templates__/taro/src/components/ui/calendar.tsx +394 -0
- package/lib/__templates__/taro/src/components/ui/card.tsx +108 -0
- package/lib/__templates__/taro/src/components/ui/carousel.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/checkbox.tsx +58 -0
- package/lib/__templates__/taro/src/components/ui/code-block.tsx +169 -0
- package/lib/__templates__/taro/src/components/ui/collapsible.tsx +71 -0
- package/lib/__templates__/taro/src/components/ui/command.tsx +385 -0
- package/lib/__templates__/taro/src/components/ui/context-menu.tsx +614 -0
- package/lib/__templates__/taro/src/components/ui/dialog.tsx +256 -0
- package/lib/__templates__/taro/src/components/ui/drawer.tsx +192 -0
- package/lib/__templates__/taro/src/components/ui/dropdown-menu.tsx +561 -0
- package/lib/__templates__/taro/src/components/ui/field.tsx +228 -0
- package/lib/__templates__/taro/src/components/ui/hover-card.tsx +282 -0
- package/lib/__templates__/taro/src/components/ui/input-group.tsx +197 -0
- package/lib/__templates__/taro/src/components/ui/input-otp.tsx +136 -0
- package/lib/__templates__/taro/src/components/ui/input.tsx +56 -0
- package/lib/__templates__/taro/src/components/ui/label.tsx +24 -0
- package/lib/__templates__/taro/src/components/ui/menubar.tsx +595 -0
- package/lib/__templates__/taro/src/components/ui/navigation-menu.tsx +264 -0
- package/lib/__templates__/taro/src/components/ui/pagination.tsx +118 -0
- package/lib/__templates__/taro/src/components/ui/popover.tsx +291 -0
- package/lib/__templates__/taro/src/components/ui/portal.tsx +19 -0
- package/lib/__templates__/taro/src/components/ui/progress.tsx +28 -0
- package/lib/__templates__/taro/src/components/ui/radio-group.tsx +64 -0
- package/lib/__templates__/taro/src/components/ui/resizable.tsx +346 -0
- package/lib/__templates__/taro/src/components/ui/scroll-area.tsx +34 -0
- package/lib/__templates__/taro/src/components/ui/select.tsx +438 -0
- package/lib/__templates__/taro/src/components/ui/separator.tsx +30 -0
- package/lib/__templates__/taro/src/components/ui/sheet.tsx +262 -0
- package/lib/__templates__/taro/src/components/ui/skeleton.tsx +17 -0
- package/lib/__templates__/taro/src/components/ui/slider.tsx +203 -0
- package/lib/__templates__/taro/src/components/ui/sonner.tsx +1 -0
- package/lib/__templates__/taro/src/components/ui/switch.tsx +55 -0
- package/lib/__templates__/taro/src/components/ui/table.tsx +142 -0
- package/lib/__templates__/taro/src/components/ui/tabs.tsx +114 -0
- package/lib/__templates__/taro/src/components/ui/textarea.tsx +54 -0
- package/lib/__templates__/taro/src/components/ui/toast.tsx +517 -0
- package/lib/__templates__/taro/src/components/ui/toggle-group.tsx +120 -0
- package/lib/__templates__/taro/src/components/ui/toggle.tsx +77 -0
- package/lib/__templates__/taro/src/components/ui/tooltip.tsx +455 -0
- package/lib/__templates__/taro/src/lib/hooks/use-keyboard-offset.ts +37 -0
- package/lib/__templates__/taro/src/lib/measure.ts +115 -0
- package/lib/__templates__/taro/src/lib/platform.ts +12 -0
- package/lib/__templates__/taro/src/lib/utils.ts +6 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +49 -12
- package/lib/__templates__/taro/src/presets/h5-styles.ts +78 -0
- package/lib/__templates__/templates.json +17 -17
- package/lib/__templates__/vite/AGENTS.md +41 -0
- package/lib/__templates__/vite/README.md +190 -11
- package/lib/__templates__/vite/_gitignore +1 -0
- package/lib/__templates__/vite/eslint.config.mjs +6 -1
- package/lib/__templates__/vite/package.json +10 -3
- package/lib/__templates__/vite/pnpm-lock.yaml +755 -15
- package/lib/__templates__/vite/scripts/build.sh +4 -1
- package/lib/__templates__/vite/scripts/dev.sh +9 -2
- package/lib/__templates__/vite/scripts/start.sh +9 -3
- package/lib/__templates__/vite/server/routes/index.ts +31 -0
- package/lib/__templates__/vite/server/server.ts +65 -0
- package/lib/__templates__/vite/server/vite.ts +67 -0
- package/lib/__templates__/vite/tsconfig.json +4 -3
- package/lib/__templates__/vite/vite.config.ts +4 -0
- package/lib/cli.js +3251 -768
- package/package.json +9 -3
- package/lib/__templates__/vite-vue/README.md +0 -451
- package/lib/__templates__/vite-vue/_gitignore +0 -66
- package/lib/__templates__/vite-vue/eslint.config.mjs +0 -9
- package/lib/__templates__/vite-vue/index.html +0 -13
- package/lib/__templates__/vite-vue/package.json +0 -38
- package/lib/__templates__/vite-vue/pnpm-lock.yaml +0 -3132
- package/lib/__templates__/vite-vue/scripts/prepare.sh +0 -9
- package/lib/__templates__/vite-vue/scripts/start.sh +0 -15
- package/lib/__templates__/vite-vue/src/App.vue +0 -6
- package/lib/__templates__/vite-vue/src/main.ts +0 -8
- package/lib/__templates__/vite-vue/src/router/index.ts +0 -17
- package/lib/__templates__/vite-vue/src/views/Home.vue +0 -38
- package/lib/__templates__/vite-vue/src/vite-env.d.ts +0 -8
- package/lib/__templates__/vite-vue/tailwind.config.js +0 -9
- package/lib/__templates__/vite-vue/template.config.js +0 -127
- package/lib/__templates__/vite-vue/tsconfig.json +0 -17
- package/lib/__templates__/vite-vue/vite.config.ts +0 -28
- /package/lib/__templates__/{vite-vue → nuxt-vue}/.coze +0 -0
- /package/lib/__templates__/{vite-vue → nuxt-vue}/_npmrc +0 -0
|
@@ -18,16 +18,16 @@ importers:
|
|
|
18
18
|
version: 7.28.4
|
|
19
19
|
'@tarojs/components':
|
|
20
20
|
specifier: 4.1.9
|
|
21
|
-
version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
21
|
+
version: 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
22
22
|
'@tarojs/helper':
|
|
23
23
|
specifier: 4.1.9
|
|
24
24
|
version: 4.1.9
|
|
25
25
|
'@tarojs/plugin-framework-react':
|
|
26
26
|
specifier: 4.1.9
|
|
27
|
-
version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
27
|
+
version: 4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96))
|
|
28
28
|
'@tarojs/plugin-platform-h5':
|
|
29
29
|
specifier: 4.1.9
|
|
30
|
-
version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
30
|
+
version: 4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))
|
|
31
31
|
'@tarojs/plugin-platform-tt':
|
|
32
32
|
specifier: 4.1.9
|
|
33
33
|
version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
|
|
@@ -45,19 +45,31 @@ importers:
|
|
|
45
45
|
version: 4.1.9
|
|
46
46
|
'@tarojs/taro':
|
|
47
47
|
specifier: 4.1.9
|
|
48
|
-
version: 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
49
|
-
|
|
50
|
-
specifier: ^0.
|
|
51
|
-
version: 0.
|
|
48
|
+
version: 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
49
|
+
class-variance-authority:
|
|
50
|
+
specifier: ^0.7.1
|
|
51
|
+
version: 0.7.1
|
|
52
|
+
clsx:
|
|
53
|
+
specifier: ^2.1.1
|
|
54
|
+
version: 2.1.1
|
|
55
|
+
date-fns:
|
|
56
|
+
specifier: ^4.1.0
|
|
57
|
+
version: 4.1.0
|
|
52
58
|
lucide-react-taro:
|
|
53
|
-
specifier: ^1.
|
|
54
|
-
version: 1.
|
|
59
|
+
specifier: ^1.3.0
|
|
60
|
+
version: 1.3.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(react@18.3.1)
|
|
55
61
|
react:
|
|
56
62
|
specifier: ^18.0.0
|
|
57
63
|
version: 18.3.1
|
|
58
64
|
react-dom:
|
|
59
65
|
specifier: ^18.0.0
|
|
60
66
|
version: 18.3.1(react@18.3.1)
|
|
67
|
+
tailwind-merge:
|
|
68
|
+
specifier: ^3.5.0
|
|
69
|
+
version: 3.5.0
|
|
70
|
+
tailwindcss-animate:
|
|
71
|
+
specifier: ^1.0.7
|
|
72
|
+
version: 1.0.7(tailwindcss@4.1.18)
|
|
61
73
|
zustand:
|
|
62
74
|
specifier: ^5.0.9
|
|
63
75
|
version: 5.0.9(@types/react@18.3.27)(react@18.3.1)
|
|
@@ -88,7 +100,7 @@ importers:
|
|
|
88
100
|
version: 4.1.9(patch_hash=j6dgmq33tuqqgowk7tjyyinctm)(miniprogram-ci@2.1.26(eslint@8.57.1))(tt-ide-cli@0.1.31(@types/node@22.19.6))
|
|
89
101
|
'@tarojs/vite-runner':
|
|
90
102
|
specifier: 4.1.9
|
|
91
|
-
version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
103
|
+
version: 4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
|
|
92
104
|
'@types/minimatch':
|
|
93
105
|
specifier: ^5
|
|
94
106
|
version: 5.1.2
|
|
@@ -97,7 +109,7 @@ importers:
|
|
|
97
109
|
version: 18.3.27
|
|
98
110
|
'@vitejs/plugin-react':
|
|
99
111
|
specifier: ^4.3.0
|
|
100
|
-
version: 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
112
|
+
version: 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
|
|
101
113
|
babel-preset-taro:
|
|
102
114
|
specifier: 4.1.9
|
|
103
115
|
version: 4.1.9(@babel/core@7.28.5)(@babel/plugin-transform-typescript@7.28.5(@babel/core@7.28.5))(@babel/preset-react@7.28.5(@babel/core@7.28.5))(react-refresh@0.14.2)
|
|
@@ -119,6 +131,9 @@ importers:
|
|
|
119
131
|
eslint-plugin-react-hooks:
|
|
120
132
|
specifier: ^4.4.0
|
|
121
133
|
version: 4.6.2(eslint@8.57.1)
|
|
134
|
+
eslint-plugin-tailwindcss:
|
|
135
|
+
specifier: ^3.18.2
|
|
136
|
+
version: 3.18.2(tailwindcss@4.1.18)
|
|
122
137
|
less:
|
|
123
138
|
specifier: ^4.2.0
|
|
124
139
|
version: 4.5.1
|
|
@@ -157,10 +172,10 @@ importers:
|
|
|
157
172
|
version: 5.9.3
|
|
158
173
|
vite:
|
|
159
174
|
specifier: ^4.2.0
|
|
160
|
-
version: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
175
|
+
version: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
161
176
|
weapp-tailwindcss:
|
|
162
|
-
specifier: ^4.
|
|
163
|
-
version: 4.
|
|
177
|
+
specifier: ^4.10.3
|
|
178
|
+
version: 4.10.3(tailwindcss@4.1.18)
|
|
164
179
|
|
|
165
180
|
server:
|
|
166
181
|
dependencies:
|
|
@@ -440,6 +455,10 @@ packages:
|
|
|
440
455
|
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
|
|
441
456
|
engines: {node: '>=6.9.0'}
|
|
442
457
|
|
|
458
|
+
'@babel/code-frame@7.29.0':
|
|
459
|
+
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
|
|
460
|
+
engines: {node: '>=6.9.0'}
|
|
461
|
+
|
|
443
462
|
'@babel/compat-data@7.22.9':
|
|
444
463
|
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
|
|
445
464
|
engines: {node: '>=6.9.0'}
|
|
@@ -482,6 +501,10 @@ packages:
|
|
|
482
501
|
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
|
|
483
502
|
engines: {node: '>=6.9.0'}
|
|
484
503
|
|
|
504
|
+
'@babel/generator@7.29.1':
|
|
505
|
+
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
|
|
506
|
+
engines: {node: '>=6.9.0'}
|
|
507
|
+
|
|
485
508
|
'@babel/helper-annotate-as-pure@7.22.5':
|
|
486
509
|
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
|
|
487
510
|
engines: {node: '>=6.9.0'}
|
|
@@ -715,6 +738,11 @@ packages:
|
|
|
715
738
|
engines: {node: '>=6.0.0'}
|
|
716
739
|
hasBin: true
|
|
717
740
|
|
|
741
|
+
'@babel/parser@7.29.0':
|
|
742
|
+
resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
|
|
743
|
+
engines: {node: '>=6.0.0'}
|
|
744
|
+
hasBin: true
|
|
745
|
+
|
|
718
746
|
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
|
|
719
747
|
resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
|
|
720
748
|
engines: {node: '>=6.9.0'}
|
|
@@ -1716,6 +1744,10 @@ packages:
|
|
|
1716
1744
|
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
1717
1745
|
engines: {node: '>=6.9.0'}
|
|
1718
1746
|
|
|
1747
|
+
'@babel/template@7.28.6':
|
|
1748
|
+
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
|
|
1749
|
+
engines: {node: '>=6.9.0'}
|
|
1750
|
+
|
|
1719
1751
|
'@babel/traverse@7.21.4':
|
|
1720
1752
|
resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
|
|
1721
1753
|
engines: {node: '>=6.9.0'}
|
|
@@ -1728,6 +1760,10 @@ packages:
|
|
|
1728
1760
|
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
|
|
1729
1761
|
engines: {node: '>=6.9.0'}
|
|
1730
1762
|
|
|
1763
|
+
'@babel/traverse@7.29.0':
|
|
1764
|
+
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
|
|
1765
|
+
engines: {node: '>=6.9.0'}
|
|
1766
|
+
|
|
1731
1767
|
'@babel/types@7.24.0':
|
|
1732
1768
|
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
|
|
1733
1769
|
engines: {node: '>=6.9.0'}
|
|
@@ -1740,6 +1776,10 @@ packages:
|
|
|
1740
1776
|
resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
|
|
1741
1777
|
engines: {node: '>=6.9.0'}
|
|
1742
1778
|
|
|
1779
|
+
'@babel/types@7.29.0':
|
|
1780
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
1781
|
+
engines: {node: '>=6.9.0'}
|
|
1782
|
+
|
|
1743
1783
|
'@borewit/text-codec@0.2.1':
|
|
1744
1784
|
resolution: {integrity: sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==}
|
|
1745
1785
|
|
|
@@ -3762,15 +3802,18 @@ packages:
|
|
|
3762
3802
|
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
|
|
3763
3803
|
engines: {node: '>=6'}
|
|
3764
3804
|
|
|
3765
|
-
'@tailwindcss-mangle/config@6.1.
|
|
3766
|
-
resolution: {integrity: sha512-
|
|
3805
|
+
'@tailwindcss-mangle/config@6.1.3':
|
|
3806
|
+
resolution: {integrity: sha512-e0wj/R582uyrqMLYDDyfl0BfysybOA1PiP0ChxQVch1JWxkLxM0SB7Nb6Cq0jiSYugX5hGfSV1UEqLhM0Q9PTQ==}
|
|
3767
3807
|
|
|
3768
|
-
'@tailwindcss-mangle/shared@4.1.
|
|
3769
|
-
resolution: {integrity: sha512-
|
|
3808
|
+
'@tailwindcss-mangle/shared@4.1.3':
|
|
3809
|
+
resolution: {integrity: sha512-u7TSrR0PwEHUwP/gEE+yIy8QrkCnyVkN245uyn74aYWK73ksJAY2bb27OStzlMdfQADGf7xpBLshISM9UpDJEQ==}
|
|
3770
3810
|
|
|
3771
3811
|
'@tailwindcss/node@4.1.18':
|
|
3772
3812
|
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
|
|
3773
3813
|
|
|
3814
|
+
'@tailwindcss/node@4.2.1':
|
|
3815
|
+
resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
|
|
3816
|
+
|
|
3774
3817
|
'@tailwindcss/oxide-android-arm64@4.1.18':
|
|
3775
3818
|
resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
|
|
3776
3819
|
engines: {node: '>= 10'}
|
|
@@ -4419,17 +4462,17 @@ packages:
|
|
|
4419
4462
|
peerDependencies:
|
|
4420
4463
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
4421
4464
|
|
|
4422
|
-
'@vue/compiler-core@3.5.
|
|
4423
|
-
resolution: {integrity: sha512-
|
|
4465
|
+
'@vue/compiler-core@3.5.30':
|
|
4466
|
+
resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
|
|
4424
4467
|
|
|
4425
|
-
'@vue/compiler-dom@3.5.
|
|
4426
|
-
resolution: {integrity: sha512-
|
|
4468
|
+
'@vue/compiler-dom@3.5.30':
|
|
4469
|
+
resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
|
|
4427
4470
|
|
|
4428
|
-
'@vue/compiler-sfc@3.5.
|
|
4429
|
-
resolution: {integrity: sha512-
|
|
4471
|
+
'@vue/compiler-sfc@3.5.30':
|
|
4472
|
+
resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
|
|
4430
4473
|
|
|
4431
|
-
'@vue/compiler-ssr@3.5.
|
|
4432
|
-
resolution: {integrity: sha512-
|
|
4474
|
+
'@vue/compiler-ssr@3.5.30':
|
|
4475
|
+
resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
|
|
4433
4476
|
|
|
4434
4477
|
'@vue/reactivity@3.0.5':
|
|
4435
4478
|
resolution: {integrity: sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw==}
|
|
@@ -4437,11 +4480,11 @@ packages:
|
|
|
4437
4480
|
'@vue/shared@3.0.5':
|
|
4438
4481
|
resolution: {integrity: sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==}
|
|
4439
4482
|
|
|
4440
|
-
'@vue/shared@3.5.
|
|
4441
|
-
resolution: {integrity: sha512-
|
|
4483
|
+
'@vue/shared@3.5.30':
|
|
4484
|
+
resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
|
|
4442
4485
|
|
|
4443
|
-
'@weapp-core/escape@
|
|
4444
|
-
resolution: {integrity: sha512-
|
|
4486
|
+
'@weapp-core/escape@7.0.0':
|
|
4487
|
+
resolution: {integrity: sha512-xMiRT/54YCuyXGXC6ozxmoF+wmnnPJNbouRaAhGLl1jBKsLqtkeILYU5/tGDtfJPxwKcQEFeDuaSmnMHaU3myg==}
|
|
4445
4488
|
|
|
4446
4489
|
'@weapp-core/regex@1.0.1':
|
|
4447
4490
|
resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
|
|
@@ -4455,11 +4498,13 @@ packages:
|
|
|
4455
4498
|
peerDependencies:
|
|
4456
4499
|
postcss: ^8.4.38
|
|
4457
4500
|
|
|
4458
|
-
'@weapp-tailwindcss/postcss@2.1.
|
|
4459
|
-
resolution: {integrity: sha512-
|
|
4501
|
+
'@weapp-tailwindcss/postcss@2.1.5':
|
|
4502
|
+
resolution: {integrity: sha512-7ftY2sWXZ/rIk6gl49UqC3FqzmxgLLmv2VfdA7dlM32TxwAlDFSMJggZhsR+CDPCsikIZi3w9rcRhB1aQSmWOQ==}
|
|
4503
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
4460
4504
|
|
|
4461
|
-
'@weapp-tailwindcss/shared@1.1.
|
|
4462
|
-
resolution: {integrity: sha512-
|
|
4505
|
+
'@weapp-tailwindcss/shared@1.1.2':
|
|
4506
|
+
resolution: {integrity: sha512-n3RPB6D4hrKzg7SncNB0POqhdLfYV+qPY5e+cDUCsqr0QrzwDYj6uugA3GhBt72krAzVWmktJUUM5ZM9URCiYw==}
|
|
4507
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
4463
4508
|
|
|
4464
4509
|
'@webassemblyjs/ast@1.14.1':
|
|
4465
4510
|
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
|
|
@@ -5356,6 +5401,9 @@ packages:
|
|
|
5356
5401
|
citty@0.1.6:
|
|
5357
5402
|
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
|
|
5358
5403
|
|
|
5404
|
+
class-variance-authority@0.7.1:
|
|
5405
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
5406
|
+
|
|
5359
5407
|
classnames@2.5.1:
|
|
5360
5408
|
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
|
|
5361
5409
|
|
|
@@ -5431,6 +5479,10 @@ packages:
|
|
|
5431
5479
|
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
|
|
5432
5480
|
engines: {node: '>=0.8'}
|
|
5433
5481
|
|
|
5482
|
+
clsx@2.1.1:
|
|
5483
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
5484
|
+
engines: {node: '>=6'}
|
|
5485
|
+
|
|
5434
5486
|
code-block-writer@13.0.3:
|
|
5435
5487
|
resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
|
|
5436
5488
|
|
|
@@ -5744,6 +5796,9 @@ packages:
|
|
|
5744
5796
|
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
|
|
5745
5797
|
engines: {node: '>= 0.4'}
|
|
5746
5798
|
|
|
5799
|
+
date-fns@4.1.0:
|
|
5800
|
+
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
|
|
5801
|
+
|
|
5747
5802
|
dateformat@2.2.0:
|
|
5748
5803
|
resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
|
|
5749
5804
|
|
|
@@ -6126,6 +6181,10 @@ packages:
|
|
|
6126
6181
|
resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
|
|
6127
6182
|
engines: {node: '>=10.13.0'}
|
|
6128
6183
|
|
|
6184
|
+
enhanced-resolve@5.20.0:
|
|
6185
|
+
resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
|
|
6186
|
+
engines: {node: '>=10.13.0'}
|
|
6187
|
+
|
|
6129
6188
|
entities@2.2.0:
|
|
6130
6189
|
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
|
|
6131
6190
|
|
|
@@ -6133,12 +6192,8 @@ packages:
|
|
|
6133
6192
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
6134
6193
|
engines: {node: '>=0.12'}
|
|
6135
6194
|
|
|
6136
|
-
entities@
|
|
6137
|
-
resolution: {integrity: sha512-
|
|
6138
|
-
engines: {node: '>=0.12'}
|
|
6139
|
-
|
|
6140
|
-
entities@7.0.0:
|
|
6141
|
-
resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
|
|
6195
|
+
entities@7.0.1:
|
|
6196
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
6142
6197
|
engines: {node: '>=0.12'}
|
|
6143
6198
|
|
|
6144
6199
|
env-paths@2.2.1:
|
|
@@ -6296,6 +6351,12 @@ packages:
|
|
|
6296
6351
|
peerDependencies:
|
|
6297
6352
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
|
|
6298
6353
|
|
|
6354
|
+
eslint-plugin-tailwindcss@3.18.2:
|
|
6355
|
+
resolution: {integrity: sha512-QbkMLDC/OkkjFQ1iz/5jkMdHfiMu/uwujUHLAJK5iwNHD8RTxVTlsUezE0toTZ6VhybNBsk+gYGPDq2agfeRNA==}
|
|
6356
|
+
engines: {node: '>=18.12.0'}
|
|
6357
|
+
peerDependencies:
|
|
6358
|
+
tailwindcss: ^3.4.0
|
|
6359
|
+
|
|
6299
6360
|
eslint-scope@5.1.1:
|
|
6300
6361
|
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
|
|
6301
6362
|
engines: {node: '>=8.0.0'}
|
|
@@ -6685,6 +6746,10 @@ packages:
|
|
|
6685
6746
|
functions-have-names@1.2.3:
|
|
6686
6747
|
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
|
6687
6748
|
|
|
6749
|
+
fuse.js@7.1.0:
|
|
6750
|
+
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
|
|
6751
|
+
engines: {node: '>=10'}
|
|
6752
|
+
|
|
6688
6753
|
generator-function@2.0.1:
|
|
6689
6754
|
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
|
|
6690
6755
|
engines: {node: '>= 0.4'}
|
|
@@ -6979,8 +7044,8 @@ packages:
|
|
|
6979
7044
|
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
|
|
6980
7045
|
engines: {node: '>=8'}
|
|
6981
7046
|
|
|
6982
|
-
htmlparser2@10.
|
|
6983
|
-
resolution: {integrity: sha512-
|
|
7047
|
+
htmlparser2@10.1.0:
|
|
7048
|
+
resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
|
|
6984
7049
|
|
|
6985
7050
|
http-cache-semantics@3.8.1:
|
|
6986
7051
|
resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
|
|
@@ -7564,30 +7629,60 @@ packages:
|
|
|
7564
7629
|
cpu: [arm64]
|
|
7565
7630
|
os: [android]
|
|
7566
7631
|
|
|
7632
|
+
lightningcss-android-arm64@1.31.1:
|
|
7633
|
+
resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
|
|
7634
|
+
engines: {node: '>= 12.0.0'}
|
|
7635
|
+
cpu: [arm64]
|
|
7636
|
+
os: [android]
|
|
7637
|
+
|
|
7567
7638
|
lightningcss-darwin-arm64@1.30.2:
|
|
7568
7639
|
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
|
|
7569
7640
|
engines: {node: '>= 12.0.0'}
|
|
7570
7641
|
cpu: [arm64]
|
|
7571
7642
|
os: [darwin]
|
|
7572
7643
|
|
|
7644
|
+
lightningcss-darwin-arm64@1.31.1:
|
|
7645
|
+
resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
|
|
7646
|
+
engines: {node: '>= 12.0.0'}
|
|
7647
|
+
cpu: [arm64]
|
|
7648
|
+
os: [darwin]
|
|
7649
|
+
|
|
7573
7650
|
lightningcss-darwin-x64@1.30.2:
|
|
7574
7651
|
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
|
|
7575
7652
|
engines: {node: '>= 12.0.0'}
|
|
7576
7653
|
cpu: [x64]
|
|
7577
7654
|
os: [darwin]
|
|
7578
7655
|
|
|
7656
|
+
lightningcss-darwin-x64@1.31.1:
|
|
7657
|
+
resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
|
|
7658
|
+
engines: {node: '>= 12.0.0'}
|
|
7659
|
+
cpu: [x64]
|
|
7660
|
+
os: [darwin]
|
|
7661
|
+
|
|
7579
7662
|
lightningcss-freebsd-x64@1.30.2:
|
|
7580
7663
|
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
|
|
7581
7664
|
engines: {node: '>= 12.0.0'}
|
|
7582
7665
|
cpu: [x64]
|
|
7583
7666
|
os: [freebsd]
|
|
7584
7667
|
|
|
7668
|
+
lightningcss-freebsd-x64@1.31.1:
|
|
7669
|
+
resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
|
|
7670
|
+
engines: {node: '>= 12.0.0'}
|
|
7671
|
+
cpu: [x64]
|
|
7672
|
+
os: [freebsd]
|
|
7673
|
+
|
|
7585
7674
|
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
7586
7675
|
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
|
|
7587
7676
|
engines: {node: '>= 12.0.0'}
|
|
7588
7677
|
cpu: [arm]
|
|
7589
7678
|
os: [linux]
|
|
7590
7679
|
|
|
7680
|
+
lightningcss-linux-arm-gnueabihf@1.31.1:
|
|
7681
|
+
resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
|
|
7682
|
+
engines: {node: '>= 12.0.0'}
|
|
7683
|
+
cpu: [arm]
|
|
7684
|
+
os: [linux]
|
|
7685
|
+
|
|
7591
7686
|
lightningcss-linux-arm64-gnu@1.30.2:
|
|
7592
7687
|
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
|
|
7593
7688
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7595,6 +7690,13 @@ packages:
|
|
|
7595
7690
|
os: [linux]
|
|
7596
7691
|
libc: [glibc]
|
|
7597
7692
|
|
|
7693
|
+
lightningcss-linux-arm64-gnu@1.31.1:
|
|
7694
|
+
resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
|
|
7695
|
+
engines: {node: '>= 12.0.0'}
|
|
7696
|
+
cpu: [arm64]
|
|
7697
|
+
os: [linux]
|
|
7698
|
+
libc: [glibc]
|
|
7699
|
+
|
|
7598
7700
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
7599
7701
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
7600
7702
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7602,6 +7704,13 @@ packages:
|
|
|
7602
7704
|
os: [linux]
|
|
7603
7705
|
libc: [musl]
|
|
7604
7706
|
|
|
7707
|
+
lightningcss-linux-arm64-musl@1.31.1:
|
|
7708
|
+
resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
|
|
7709
|
+
engines: {node: '>= 12.0.0'}
|
|
7710
|
+
cpu: [arm64]
|
|
7711
|
+
os: [linux]
|
|
7712
|
+
libc: [musl]
|
|
7713
|
+
|
|
7605
7714
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
7606
7715
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
7607
7716
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7609,6 +7718,13 @@ packages:
|
|
|
7609
7718
|
os: [linux]
|
|
7610
7719
|
libc: [glibc]
|
|
7611
7720
|
|
|
7721
|
+
lightningcss-linux-x64-gnu@1.31.1:
|
|
7722
|
+
resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
|
|
7723
|
+
engines: {node: '>= 12.0.0'}
|
|
7724
|
+
cpu: [x64]
|
|
7725
|
+
os: [linux]
|
|
7726
|
+
libc: [glibc]
|
|
7727
|
+
|
|
7612
7728
|
lightningcss-linux-x64-musl@1.30.2:
|
|
7613
7729
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
7614
7730
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7616,22 +7732,45 @@ packages:
|
|
|
7616
7732
|
os: [linux]
|
|
7617
7733
|
libc: [musl]
|
|
7618
7734
|
|
|
7735
|
+
lightningcss-linux-x64-musl@1.31.1:
|
|
7736
|
+
resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
|
|
7737
|
+
engines: {node: '>= 12.0.0'}
|
|
7738
|
+
cpu: [x64]
|
|
7739
|
+
os: [linux]
|
|
7740
|
+
libc: [musl]
|
|
7741
|
+
|
|
7619
7742
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
7620
7743
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
7621
7744
|
engines: {node: '>= 12.0.0'}
|
|
7622
7745
|
cpu: [arm64]
|
|
7623
7746
|
os: [win32]
|
|
7624
7747
|
|
|
7748
|
+
lightningcss-win32-arm64-msvc@1.31.1:
|
|
7749
|
+
resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
|
|
7750
|
+
engines: {node: '>= 12.0.0'}
|
|
7751
|
+
cpu: [arm64]
|
|
7752
|
+
os: [win32]
|
|
7753
|
+
|
|
7625
7754
|
lightningcss-win32-x64-msvc@1.30.2:
|
|
7626
7755
|
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
|
|
7627
7756
|
engines: {node: '>= 12.0.0'}
|
|
7628
7757
|
cpu: [x64]
|
|
7629
7758
|
os: [win32]
|
|
7630
7759
|
|
|
7760
|
+
lightningcss-win32-x64-msvc@1.31.1:
|
|
7761
|
+
resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
|
|
7762
|
+
engines: {node: '>= 12.0.0'}
|
|
7763
|
+
cpu: [x64]
|
|
7764
|
+
os: [win32]
|
|
7765
|
+
|
|
7631
7766
|
lightningcss@1.30.2:
|
|
7632
7767
|
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
|
|
7633
7768
|
engines: {node: '>= 12.0.0'}
|
|
7634
7769
|
|
|
7770
|
+
lightningcss@1.31.1:
|
|
7771
|
+
resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
|
|
7772
|
+
engines: {node: '>= 12.0.0'}
|
|
7773
|
+
|
|
7635
7774
|
lilconfig@2.1.0:
|
|
7636
7775
|
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
|
7637
7776
|
engines: {node: '>=10'}
|
|
@@ -7827,8 +7966,8 @@ packages:
|
|
|
7827
7966
|
lru-cache@5.1.1:
|
|
7828
7967
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
7829
7968
|
|
|
7830
|
-
lucide-react-taro@1.
|
|
7831
|
-
resolution: {integrity: sha512-
|
|
7969
|
+
lucide-react-taro@1.3.0:
|
|
7970
|
+
resolution: {integrity: sha512-fx3u8ivLkwpdiv6WEARDcd9lK+CAzsyfY0kSwXqi0IxTWbWWChQoJymAMxSI9KtEpBf1LixiLnxmdrtKDoCf5Q==}
|
|
7832
7971
|
hasBin: true
|
|
7833
7972
|
peerDependencies:
|
|
7834
7973
|
'@tarojs/components': '>=3.0.0'
|
|
@@ -8917,8 +9056,8 @@ packages:
|
|
|
8917
9056
|
peerDependencies:
|
|
8918
9057
|
postcss: ^8
|
|
8919
9058
|
|
|
8920
|
-
postcss-plugin-shared@1.
|
|
8921
|
-
resolution: {integrity: sha512-
|
|
9059
|
+
postcss-plugin-shared@1.1.1:
|
|
9060
|
+
resolution: {integrity: sha512-ucByjwfw3SJXo3NFDy6aF264cnSxOL5gFYMfDz9U/CD97+pT2KSryZ8DmVviWnI1ofJL71y2DhParq1zoS4hcw==}
|
|
8922
9061
|
peerDependencies:
|
|
8923
9062
|
postcss: ^8
|
|
8924
9063
|
|
|
@@ -8934,8 +9073,8 @@ packages:
|
|
|
8934
9073
|
peerDependencies:
|
|
8935
9074
|
postcss: ^8.4
|
|
8936
9075
|
|
|
8937
|
-
postcss-pxtrans@1.0.
|
|
8938
|
-
resolution: {integrity: sha512-
|
|
9076
|
+
postcss-pxtrans@1.0.1:
|
|
9077
|
+
resolution: {integrity: sha512-oNxhcSbbhkfhgJP/E0JJHIuQs8asqAuD1FqFT4VFF7xhkBmKKTIM08T7WIRHo9rjod8E4PR/CuOxtcWjftufcg==}
|
|
8939
9078
|
peerDependencies:
|
|
8940
9079
|
postcss: ^8
|
|
8941
9080
|
|
|
@@ -8957,8 +9096,8 @@ packages:
|
|
|
8957
9096
|
peerDependencies:
|
|
8958
9097
|
postcss: ^8.2.15
|
|
8959
9098
|
|
|
8960
|
-
postcss-rem-to-responsive-pixel@7.0.
|
|
8961
|
-
resolution: {integrity: sha512-
|
|
9099
|
+
postcss-rem-to-responsive-pixel@7.0.1:
|
|
9100
|
+
resolution: {integrity: sha512-enzOmpYK8RHTOL7Y9o3AsSRnYqigGu4OZbDmpP7dUsRRIpyqS1h3hKZHHH5B+WJRyw58DRSAFuicM0uc/2GRJQ==}
|
|
8962
9101
|
engines: {node: '>=16.6.0'}
|
|
8963
9102
|
peerDependencies:
|
|
8964
9103
|
postcss: ^8
|
|
@@ -9003,6 +9142,11 @@ packages:
|
|
|
9003
9142
|
peerDependencies:
|
|
9004
9143
|
postcss: ^8.2.15
|
|
9005
9144
|
|
|
9145
|
+
postcss-units-to-px@0.2.0:
|
|
9146
|
+
resolution: {integrity: sha512-IN0zGe3JnOJvbFQRlUeSr1icsjQbFwHuso3IfhzCuILb+z9aj+0Nlzka5Q/A5Ulnh9Cd8mEs1Rfl7NxQdw+6iA==}
|
|
9147
|
+
peerDependencies:
|
|
9148
|
+
postcss: ^8
|
|
9149
|
+
|
|
9006
9150
|
postcss-value-parser@4.2.0:
|
|
9007
9151
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
9008
9152
|
|
|
@@ -9010,6 +9154,10 @@ packages:
|
|
|
9010
9154
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
9011
9155
|
engines: {node: ^10 || ^12 || >=14}
|
|
9012
9156
|
|
|
9157
|
+
postcss@8.5.8:
|
|
9158
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
9159
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
9160
|
+
|
|
9013
9161
|
postgres-array@2.0.0:
|
|
9014
9162
|
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
|
|
9015
9163
|
engines: {node: '>=4'}
|
|
@@ -9494,6 +9642,11 @@ packages:
|
|
|
9494
9642
|
engines: {node: '>=10'}
|
|
9495
9643
|
hasBin: true
|
|
9496
9644
|
|
|
9645
|
+
semver@7.7.4:
|
|
9646
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
9647
|
+
engines: {node: '>=10'}
|
|
9648
|
+
hasBin: true
|
|
9649
|
+
|
|
9497
9650
|
send@0.19.0:
|
|
9498
9651
|
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
|
|
9499
9652
|
engines: {node: '>= 0.8.0'}
|
|
@@ -9929,11 +10082,20 @@ packages:
|
|
|
9929
10082
|
resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
|
|
9930
10083
|
engines: {node: '>=10.0.0'}
|
|
9931
10084
|
|
|
9932
|
-
|
|
9933
|
-
resolution: {integrity: sha512-
|
|
10085
|
+
tailwind-merge@3.5.0:
|
|
10086
|
+
resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
|
|
10087
|
+
|
|
10088
|
+
tailwindcss-animate@1.0.7:
|
|
10089
|
+
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
|
|
10090
|
+
peerDependencies:
|
|
10091
|
+
tailwindcss: '>=3.0.0 || insiders'
|
|
9934
10092
|
|
|
9935
|
-
tailwindcss-
|
|
9936
|
-
resolution: {integrity: sha512-
|
|
10093
|
+
tailwindcss-config@1.1.4:
|
|
10094
|
+
resolution: {integrity: sha512-p3PWbAJAkbO9Jabvr4C5l9X+Am1JmDoPHP9S2rbUNe/gT/I9BDTg4dJjd1Tg1RQ2AyZrslncYCQW9uqvb48irw==}
|
|
10095
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
10096
|
+
|
|
10097
|
+
tailwindcss-patch@8.7.3:
|
|
10098
|
+
resolution: {integrity: sha512-PvQu+wr/JS0y2mx0RzTKbMv+oGhmC/CowR8gN3/4tATK1Wo9MHm6ZMwlNDjbh1ltT7SCwjAEynqoSNYapnLIig==}
|
|
9937
10099
|
hasBin: true
|
|
9938
10100
|
peerDependencies:
|
|
9939
10101
|
tailwindcss: '>=2.0.0'
|
|
@@ -9944,6 +10106,9 @@ packages:
|
|
|
9944
10106
|
tailwindcss@4.1.18:
|
|
9945
10107
|
resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
|
|
9946
10108
|
|
|
10109
|
+
tailwindcss@4.2.1:
|
|
10110
|
+
resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
|
|
10111
|
+
|
|
9947
10112
|
tapable@2.3.0:
|
|
9948
10113
|
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
9949
10114
|
engines: {node: '>=6'}
|
|
@@ -10373,9 +10538,9 @@ packages:
|
|
|
10373
10538
|
wcwidth@1.0.1:
|
|
10374
10539
|
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
|
|
10375
10540
|
|
|
10376
|
-
weapp-tailwindcss@4.
|
|
10377
|
-
resolution: {integrity: sha512-
|
|
10378
|
-
engines: {node: ^
|
|
10541
|
+
weapp-tailwindcss@4.10.3:
|
|
10542
|
+
resolution: {integrity: sha512-G8Em6CGt/9P7r8rV2mIqnC0OCl6UStzR0XV+55y4Z45x7W1Xxy2dj8PICJ8OJaVoJ8VNR8jXYrlNWQxqLRWQKg==}
|
|
10543
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
10379
10544
|
hasBin: true
|
|
10380
10545
|
|
|
10381
10546
|
webidl-conversions@3.0.1:
|
|
@@ -10393,6 +10558,10 @@ packages:
|
|
|
10393
10558
|
resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
|
|
10394
10559
|
engines: {node: '>=10.13.0'}
|
|
10395
10560
|
|
|
10561
|
+
webpack-sources@3.3.4:
|
|
10562
|
+
resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
|
|
10563
|
+
engines: {node: '>=10.13.0'}
|
|
10564
|
+
|
|
10396
10565
|
webpack@5.97.1:
|
|
10397
10566
|
resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
|
|
10398
10567
|
engines: {node: '>=10.13.0'}
|
|
@@ -11136,6 +11305,12 @@ snapshots:
|
|
|
11136
11305
|
js-tokens: 4.0.0
|
|
11137
11306
|
picocolors: 1.1.1
|
|
11138
11307
|
|
|
11308
|
+
'@babel/code-frame@7.29.0':
|
|
11309
|
+
dependencies:
|
|
11310
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11311
|
+
js-tokens: 4.0.0
|
|
11312
|
+
picocolors: 1.1.1
|
|
11313
|
+
|
|
11139
11314
|
'@babel/compat-data@7.22.9': {}
|
|
11140
11315
|
|
|
11141
11316
|
'@babel/compat-data@7.28.5': {}
|
|
@@ -11143,15 +11318,15 @@ snapshots:
|
|
|
11143
11318
|
'@babel/core@7.21.4':
|
|
11144
11319
|
dependencies:
|
|
11145
11320
|
'@ampproject/remapping': 2.3.0
|
|
11146
|
-
'@babel/code-frame': 7.
|
|
11147
|
-
'@babel/generator': 7.
|
|
11321
|
+
'@babel/code-frame': 7.27.1
|
|
11322
|
+
'@babel/generator': 7.28.5
|
|
11148
11323
|
'@babel/helper-compilation-targets': 7.22.10
|
|
11149
11324
|
'@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
|
|
11150
11325
|
'@babel/helpers': 7.21.0
|
|
11151
|
-
'@babel/parser': 7.
|
|
11152
|
-
'@babel/template': 7.
|
|
11153
|
-
'@babel/traverse': 7.
|
|
11154
|
-
'@babel/types': 7.
|
|
11326
|
+
'@babel/parser': 7.28.5
|
|
11327
|
+
'@babel/template': 7.27.2
|
|
11328
|
+
'@babel/traverse': 7.28.5
|
|
11329
|
+
'@babel/types': 7.28.6
|
|
11155
11330
|
convert-source-map: 1.9.0
|
|
11156
11331
|
debug: 4.4.3
|
|
11157
11332
|
gensync: 1.0.0-beta.2
|
|
@@ -11198,7 +11373,7 @@ snapshots:
|
|
|
11198
11373
|
|
|
11199
11374
|
'@babel/generator@7.21.4':
|
|
11200
11375
|
dependencies:
|
|
11201
|
-
'@babel/types': 7.
|
|
11376
|
+
'@babel/types': 7.28.6
|
|
11202
11377
|
'@jridgewell/gen-mapping': 0.3.13
|
|
11203
11378
|
'@jridgewell/trace-mapping': 0.3.31
|
|
11204
11379
|
jsesc: 2.5.2
|
|
@@ -11218,9 +11393,17 @@ snapshots:
|
|
|
11218
11393
|
'@jridgewell/trace-mapping': 0.3.31
|
|
11219
11394
|
jsesc: 3.1.0
|
|
11220
11395
|
|
|
11396
|
+
'@babel/generator@7.29.1':
|
|
11397
|
+
dependencies:
|
|
11398
|
+
'@babel/parser': 7.29.0
|
|
11399
|
+
'@babel/types': 7.29.0
|
|
11400
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
11401
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
11402
|
+
jsesc: 3.1.0
|
|
11403
|
+
|
|
11221
11404
|
'@babel/helper-annotate-as-pure@7.22.5':
|
|
11222
11405
|
dependencies:
|
|
11223
|
-
'@babel/types': 7.
|
|
11406
|
+
'@babel/types': 7.28.6
|
|
11224
11407
|
|
|
11225
11408
|
'@babel/helper-annotate-as-pure@7.27.3':
|
|
11226
11409
|
dependencies:
|
|
@@ -11228,7 +11411,7 @@ snapshots:
|
|
|
11228
11411
|
|
|
11229
11412
|
'@babel/helper-builder-binary-assignment-operator-visitor@7.22.10':
|
|
11230
11413
|
dependencies:
|
|
11231
|
-
'@babel/types': 7.
|
|
11414
|
+
'@babel/types': 7.28.6
|
|
11232
11415
|
|
|
11233
11416
|
'@babel/helper-compilation-targets@7.22.10':
|
|
11234
11417
|
dependencies:
|
|
@@ -11318,7 +11501,7 @@ snapshots:
|
|
|
11318
11501
|
'@babel/helper-function-name@7.22.5':
|
|
11319
11502
|
dependencies:
|
|
11320
11503
|
'@babel/template': 7.27.2
|
|
11321
|
-
'@babel/types': 7.
|
|
11504
|
+
'@babel/types': 7.28.6
|
|
11322
11505
|
|
|
11323
11506
|
'@babel/helper-function-name@7.24.7':
|
|
11324
11507
|
dependencies:
|
|
@@ -11329,7 +11512,7 @@ snapshots:
|
|
|
11329
11512
|
|
|
11330
11513
|
'@babel/helper-hoist-variables@7.22.5':
|
|
11331
11514
|
dependencies:
|
|
11332
|
-
'@babel/types': 7.
|
|
11515
|
+
'@babel/types': 7.28.6
|
|
11333
11516
|
|
|
11334
11517
|
'@babel/helper-hoist-variables@7.24.7':
|
|
11335
11518
|
dependencies:
|
|
@@ -11337,7 +11520,7 @@ snapshots:
|
|
|
11337
11520
|
|
|
11338
11521
|
'@babel/helper-member-expression-to-functions@7.22.5':
|
|
11339
11522
|
dependencies:
|
|
11340
|
-
'@babel/types': 7.
|
|
11523
|
+
'@babel/types': 7.28.6
|
|
11341
11524
|
|
|
11342
11525
|
'@babel/helper-member-expression-to-functions@7.28.5':
|
|
11343
11526
|
dependencies:
|
|
@@ -11352,7 +11535,7 @@ snapshots:
|
|
|
11352
11535
|
|
|
11353
11536
|
'@babel/helper-module-imports@7.21.4':
|
|
11354
11537
|
dependencies:
|
|
11355
|
-
'@babel/types': 7.
|
|
11538
|
+
'@babel/types': 7.28.6
|
|
11356
11539
|
|
|
11357
11540
|
'@babel/helper-module-imports@7.27.1':
|
|
11358
11541
|
dependencies:
|
|
@@ -11368,7 +11551,7 @@ snapshots:
|
|
|
11368
11551
|
'@babel/helper-module-imports': 7.27.1
|
|
11369
11552
|
'@babel/helper-simple-access': 7.22.5
|
|
11370
11553
|
'@babel/helper-split-export-declaration': 7.22.6
|
|
11371
|
-
'@babel/helper-validator-identifier': 7.
|
|
11554
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11372
11555
|
transitivePeerDependencies:
|
|
11373
11556
|
- supports-color
|
|
11374
11557
|
|
|
@@ -11383,7 +11566,7 @@ snapshots:
|
|
|
11383
11566
|
|
|
11384
11567
|
'@babel/helper-optimise-call-expression@7.22.5':
|
|
11385
11568
|
dependencies:
|
|
11386
|
-
'@babel/types': 7.
|
|
11569
|
+
'@babel/types': 7.28.6
|
|
11387
11570
|
|
|
11388
11571
|
'@babel/helper-optimise-call-expression@7.27.1':
|
|
11389
11572
|
dependencies:
|
|
@@ -11427,11 +11610,11 @@ snapshots:
|
|
|
11427
11610
|
|
|
11428
11611
|
'@babel/helper-simple-access@7.22.5':
|
|
11429
11612
|
dependencies:
|
|
11430
|
-
'@babel/types': 7.
|
|
11613
|
+
'@babel/types': 7.28.6
|
|
11431
11614
|
|
|
11432
11615
|
'@babel/helper-skip-transparent-expression-wrappers@7.24.6':
|
|
11433
11616
|
dependencies:
|
|
11434
|
-
'@babel/types': 7.
|
|
11617
|
+
'@babel/types': 7.28.6
|
|
11435
11618
|
|
|
11436
11619
|
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
|
|
11437
11620
|
dependencies:
|
|
@@ -11442,7 +11625,7 @@ snapshots:
|
|
|
11442
11625
|
|
|
11443
11626
|
'@babel/helper-split-export-declaration@7.22.6':
|
|
11444
11627
|
dependencies:
|
|
11445
|
-
'@babel/types': 7.
|
|
11628
|
+
'@babel/types': 7.28.6
|
|
11446
11629
|
|
|
11447
11630
|
'@babel/helper-split-export-declaration@7.24.7':
|
|
11448
11631
|
dependencies:
|
|
@@ -11464,7 +11647,7 @@ snapshots:
|
|
|
11464
11647
|
dependencies:
|
|
11465
11648
|
'@babel/helper-function-name': 7.22.5
|
|
11466
11649
|
'@babel/template': 7.27.2
|
|
11467
|
-
'@babel/types': 7.
|
|
11650
|
+
'@babel/types': 7.28.6
|
|
11468
11651
|
|
|
11469
11652
|
'@babel/helper-wrap-function@7.28.3':
|
|
11470
11653
|
dependencies:
|
|
@@ -11476,9 +11659,9 @@ snapshots:
|
|
|
11476
11659
|
|
|
11477
11660
|
'@babel/helpers@7.21.0':
|
|
11478
11661
|
dependencies:
|
|
11479
|
-
'@babel/template': 7.
|
|
11480
|
-
'@babel/traverse': 7.
|
|
11481
|
-
'@babel/types': 7.
|
|
11662
|
+
'@babel/template': 7.27.2
|
|
11663
|
+
'@babel/traverse': 7.28.5
|
|
11664
|
+
'@babel/types': 7.28.6
|
|
11482
11665
|
transitivePeerDependencies:
|
|
11483
11666
|
- supports-color
|
|
11484
11667
|
|
|
@@ -11489,13 +11672,13 @@ snapshots:
|
|
|
11489
11672
|
|
|
11490
11673
|
'@babel/highlight@7.22.10':
|
|
11491
11674
|
dependencies:
|
|
11492
|
-
'@babel/helper-validator-identifier': 7.
|
|
11675
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11493
11676
|
chalk: 2.4.2
|
|
11494
11677
|
js-tokens: 4.0.0
|
|
11495
11678
|
|
|
11496
11679
|
'@babel/parser@7.21.4':
|
|
11497
11680
|
dependencies:
|
|
11498
|
-
'@babel/types': 7.
|
|
11681
|
+
'@babel/types': 7.28.6
|
|
11499
11682
|
|
|
11500
11683
|
'@babel/parser@7.24.4':
|
|
11501
11684
|
dependencies:
|
|
@@ -11505,6 +11688,10 @@ snapshots:
|
|
|
11505
11688
|
dependencies:
|
|
11506
11689
|
'@babel/types': 7.28.6
|
|
11507
11690
|
|
|
11691
|
+
'@babel/parser@7.29.0':
|
|
11692
|
+
dependencies:
|
|
11693
|
+
'@babel/types': 7.29.0
|
|
11694
|
+
|
|
11508
11695
|
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
|
|
11509
11696
|
dependencies:
|
|
11510
11697
|
'@babel/core': 7.28.5
|
|
@@ -12152,7 +12339,7 @@ snapshots:
|
|
|
12152
12339
|
'@babel/helper-hoist-variables': 7.22.5
|
|
12153
12340
|
'@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
|
|
12154
12341
|
'@babel/helper-plugin-utils': 7.24.6
|
|
12155
|
-
'@babel/helper-validator-identifier': 7.
|
|
12342
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
12156
12343
|
transitivePeerDependencies:
|
|
12157
12344
|
- supports-color
|
|
12158
12345
|
|
|
@@ -12565,7 +12752,7 @@ snapshots:
|
|
|
12565
12752
|
'@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4)
|
|
12566
12753
|
'@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4)
|
|
12567
12754
|
'@babel/preset-modules': 0.1.6(@babel/core@7.21.4)
|
|
12568
|
-
'@babel/types': 7.
|
|
12755
|
+
'@babel/types': 7.28.6
|
|
12569
12756
|
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
|
|
12570
12757
|
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
|
|
12571
12758
|
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
|
|
@@ -12656,7 +12843,7 @@ snapshots:
|
|
|
12656
12843
|
'@babel/helper-plugin-utils': 7.24.6
|
|
12657
12844
|
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
|
|
12658
12845
|
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4)
|
|
12659
|
-
'@babel/types': 7.
|
|
12846
|
+
'@babel/types': 7.28.6
|
|
12660
12847
|
esutils: 2.0.3
|
|
12661
12848
|
|
|
12662
12849
|
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
|
|
@@ -12703,9 +12890,9 @@ snapshots:
|
|
|
12703
12890
|
|
|
12704
12891
|
'@babel/template@7.20.7':
|
|
12705
12892
|
dependencies:
|
|
12706
|
-
'@babel/code-frame': 7.
|
|
12707
|
-
'@babel/parser': 7.
|
|
12708
|
-
'@babel/types': 7.
|
|
12893
|
+
'@babel/code-frame': 7.27.1
|
|
12894
|
+
'@babel/parser': 7.28.5
|
|
12895
|
+
'@babel/types': 7.28.6
|
|
12709
12896
|
|
|
12710
12897
|
'@babel/template@7.27.2':
|
|
12711
12898
|
dependencies:
|
|
@@ -12713,16 +12900,22 @@ snapshots:
|
|
|
12713
12900
|
'@babel/parser': 7.28.5
|
|
12714
12901
|
'@babel/types': 7.28.6
|
|
12715
12902
|
|
|
12903
|
+
'@babel/template@7.28.6':
|
|
12904
|
+
dependencies:
|
|
12905
|
+
'@babel/code-frame': 7.29.0
|
|
12906
|
+
'@babel/parser': 7.29.0
|
|
12907
|
+
'@babel/types': 7.29.0
|
|
12908
|
+
|
|
12716
12909
|
'@babel/traverse@7.21.4':
|
|
12717
12910
|
dependencies:
|
|
12718
|
-
'@babel/code-frame': 7.
|
|
12719
|
-
'@babel/generator': 7.
|
|
12911
|
+
'@babel/code-frame': 7.27.1
|
|
12912
|
+
'@babel/generator': 7.28.5
|
|
12720
12913
|
'@babel/helper-environment-visitor': 7.22.5
|
|
12721
12914
|
'@babel/helper-function-name': 7.22.5
|
|
12722
12915
|
'@babel/helper-hoist-variables': 7.22.5
|
|
12723
12916
|
'@babel/helper-split-export-declaration': 7.22.6
|
|
12724
|
-
'@babel/parser': 7.
|
|
12725
|
-
'@babel/types': 7.
|
|
12917
|
+
'@babel/parser': 7.28.5
|
|
12918
|
+
'@babel/types': 7.28.6
|
|
12726
12919
|
debug: 4.4.3
|
|
12727
12920
|
globals: 11.12.0
|
|
12728
12921
|
transitivePeerDependencies:
|
|
@@ -12755,6 +12948,18 @@ snapshots:
|
|
|
12755
12948
|
transitivePeerDependencies:
|
|
12756
12949
|
- supports-color
|
|
12757
12950
|
|
|
12951
|
+
'@babel/traverse@7.29.0':
|
|
12952
|
+
dependencies:
|
|
12953
|
+
'@babel/code-frame': 7.29.0
|
|
12954
|
+
'@babel/generator': 7.29.1
|
|
12955
|
+
'@babel/helper-globals': 7.28.0
|
|
12956
|
+
'@babel/parser': 7.29.0
|
|
12957
|
+
'@babel/template': 7.28.6
|
|
12958
|
+
'@babel/types': 7.29.0
|
|
12959
|
+
debug: 4.4.3
|
|
12960
|
+
transitivePeerDependencies:
|
|
12961
|
+
- supports-color
|
|
12962
|
+
|
|
12758
12963
|
'@babel/types@7.24.0':
|
|
12759
12964
|
dependencies:
|
|
12760
12965
|
'@babel/helper-string-parser': 7.27.1
|
|
@@ -12763,8 +12968,8 @@ snapshots:
|
|
|
12763
12968
|
|
|
12764
12969
|
'@babel/types@7.24.6':
|
|
12765
12970
|
dependencies:
|
|
12766
|
-
'@babel/helper-string-parser': 7.
|
|
12767
|
-
'@babel/helper-validator-identifier': 7.
|
|
12971
|
+
'@babel/helper-string-parser': 7.27.1
|
|
12972
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
12768
12973
|
to-fast-properties: 2.0.0
|
|
12769
12974
|
|
|
12770
12975
|
'@babel/types@7.28.6':
|
|
@@ -12772,6 +12977,11 @@ snapshots:
|
|
|
12772
12977
|
'@babel/helper-string-parser': 7.27.1
|
|
12773
12978
|
'@babel/helper-validator-identifier': 7.28.5
|
|
12774
12979
|
|
|
12980
|
+
'@babel/types@7.29.0':
|
|
12981
|
+
dependencies:
|
|
12982
|
+
'@babel/helper-string-parser': 7.27.1
|
|
12983
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
12984
|
+
|
|
12775
12985
|
'@borewit/text-codec@0.2.1': {}
|
|
12776
12986
|
|
|
12777
12987
|
'@cacheable/memory@2.0.7':
|
|
@@ -14795,9 +15005,9 @@ snapshots:
|
|
|
14795
15005
|
dependencies:
|
|
14796
15006
|
defer-to-connect: 1.1.3
|
|
14797
15007
|
|
|
14798
|
-
'@tailwindcss-mangle/config@6.1.
|
|
15008
|
+
'@tailwindcss-mangle/config@6.1.3':
|
|
14799
15009
|
dependencies:
|
|
14800
|
-
'@tailwindcss-mangle/shared': 4.1.
|
|
15010
|
+
'@tailwindcss-mangle/shared': 4.1.3
|
|
14801
15011
|
c12: 3.3.3
|
|
14802
15012
|
fs-extra: 11.3.3
|
|
14803
15013
|
is-css-request: 1.0.1
|
|
@@ -14805,7 +15015,7 @@ snapshots:
|
|
|
14805
15015
|
transitivePeerDependencies:
|
|
14806
15016
|
- magicast
|
|
14807
15017
|
|
|
14808
|
-
'@tailwindcss-mangle/shared@4.1.
|
|
15018
|
+
'@tailwindcss-mangle/shared@4.1.3': {}
|
|
14809
15019
|
|
|
14810
15020
|
'@tailwindcss/node@4.1.18':
|
|
14811
15021
|
dependencies:
|
|
@@ -14817,6 +15027,16 @@ snapshots:
|
|
|
14817
15027
|
source-map-js: 1.2.1
|
|
14818
15028
|
tailwindcss: 4.1.18
|
|
14819
15029
|
|
|
15030
|
+
'@tailwindcss/node@4.2.1':
|
|
15031
|
+
dependencies:
|
|
15032
|
+
'@jridgewell/remapping': 2.3.5
|
|
15033
|
+
enhanced-resolve: 5.20.0
|
|
15034
|
+
jiti: 2.6.1
|
|
15035
|
+
lightningcss: 1.31.1
|
|
15036
|
+
magic-string: 0.30.21
|
|
15037
|
+
source-map-js: 1.2.1
|
|
15038
|
+
tailwindcss: 4.2.1
|
|
15039
|
+
|
|
14820
15040
|
'@tailwindcss/oxide-android-arm64@4.1.18':
|
|
14821
15041
|
optional: true
|
|
14822
15042
|
|
|
@@ -14926,12 +15146,12 @@ snapshots:
|
|
|
14926
15146
|
- debug
|
|
14927
15147
|
- supports-color
|
|
14928
15148
|
|
|
14929
|
-
'@tarojs/components-react@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15149
|
+
'@tarojs/components-react@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))':
|
|
14930
15150
|
dependencies:
|
|
14931
15151
|
'@babel/runtime': 7.28.4
|
|
14932
|
-
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15152
|
+
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
14933
15153
|
'@tarojs/shared': 4.1.9
|
|
14934
|
-
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15154
|
+
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
14935
15155
|
classnames: 2.5.1
|
|
14936
15156
|
identity-obj-proxy: 3.0.0
|
|
14937
15157
|
react: 18.3.1
|
|
@@ -14949,12 +15169,12 @@ snapshots:
|
|
|
14949
15169
|
- webpack-chain
|
|
14950
15170
|
- webpack-dev-server
|
|
14951
15171
|
|
|
14952
|
-
'@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15172
|
+
'@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))':
|
|
14953
15173
|
dependencies:
|
|
14954
15174
|
'@stencil/core': 2.22.3
|
|
14955
15175
|
'@tarojs/runtime': 4.1.9
|
|
14956
15176
|
'@tarojs/shared': 4.1.9
|
|
14957
|
-
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15177
|
+
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
14958
15178
|
classnames: 2.5.1
|
|
14959
15179
|
hammerjs: 2.0.8
|
|
14960
15180
|
hls.js: 1.6.15
|
|
@@ -15094,7 +15314,7 @@ snapshots:
|
|
|
15094
15314
|
transitivePeerDependencies:
|
|
15095
15315
|
- supports-color
|
|
15096
15316
|
|
|
15097
|
-
'@tarojs/plugin-framework-react@4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15317
|
+
'@tarojs/plugin-framework-react@4.1.9(@tarojs/helper@4.1.9)(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)))(react@18.3.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))(webpack@5.97.1(@swc/core@1.3.96))':
|
|
15098
15318
|
dependencies:
|
|
15099
15319
|
'@tarojs/helper': 4.1.9
|
|
15100
15320
|
'@tarojs/runtime': 4.1.9
|
|
@@ -15104,10 +15324,10 @@ snapshots:
|
|
|
15104
15324
|
lodash: 4.17.21
|
|
15105
15325
|
tslib: 2.8.1
|
|
15106
15326
|
optionalDependencies:
|
|
15107
|
-
'@vitejs/plugin-react': 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15327
|
+
'@vitejs/plugin-react': 4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
|
|
15108
15328
|
react: 18.3.1
|
|
15109
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15110
|
-
webpack: 5.97.1(@swc/core@1.3.96)
|
|
15329
|
+
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
15330
|
+
webpack: 5.97.1(@swc/core@1.3.96)
|
|
15111
15331
|
|
|
15112
15332
|
'@tarojs/plugin-generator@4.1.9(@types/node@22.19.6)':
|
|
15113
15333
|
dependencies:
|
|
@@ -15142,16 +15362,16 @@ snapshots:
|
|
|
15142
15362
|
- debug
|
|
15143
15363
|
- encoding
|
|
15144
15364
|
|
|
15145
|
-
'@tarojs/plugin-platform-h5@4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15365
|
+
'@tarojs/plugin-platform-h5@4.1.9(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))':
|
|
15146
15366
|
dependencies:
|
|
15147
15367
|
'@babel/core': 7.28.5
|
|
15148
|
-
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15149
|
-
'@tarojs/components-react': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15368
|
+
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
15369
|
+
'@tarojs/components-react': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(react@18.3.1)(rollup@3.29.5)(solid-js@1.9.10)(webpack@5.97.1(@swc/core@1.3.96))
|
|
15150
15370
|
'@tarojs/helper': 4.1.9
|
|
15151
15371
|
'@tarojs/runtime': 4.1.9
|
|
15152
15372
|
'@tarojs/service': 4.1.9
|
|
15153
15373
|
'@tarojs/shared': 4.1.9
|
|
15154
|
-
'@tarojs/taro-h5': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15374
|
+
'@tarojs/taro-h5': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))
|
|
15155
15375
|
babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
|
|
15156
15376
|
change-case: 4.1.2
|
|
15157
15377
|
lodash-es: 4.17.21
|
|
@@ -15189,11 +15409,11 @@ snapshots:
|
|
|
15189
15409
|
react: 18.3.1
|
|
15190
15410
|
react-reconciler: 0.29.0(react@18.3.1)
|
|
15191
15411
|
|
|
15192
|
-
'@tarojs/router@4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15412
|
+
'@tarojs/router@4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))':
|
|
15193
15413
|
dependencies:
|
|
15194
15414
|
'@tarojs/runtime': 4.1.9
|
|
15195
15415
|
'@tarojs/shared': 4.1.9
|
|
15196
|
-
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15416
|
+
'@tarojs/taro': 4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
15197
15417
|
dingtalk-jsapi: 2.15.6
|
|
15198
15418
|
history: 5.3.0
|
|
15199
15419
|
mobile-detect: 1.4.5
|
|
@@ -15232,11 +15452,11 @@ snapshots:
|
|
|
15232
15452
|
|
|
15233
15453
|
'@tarojs/shared@4.1.9': {}
|
|
15234
15454
|
|
|
15235
|
-
'@tarojs/taro-h5@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15455
|
+
'@tarojs/taro-h5@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))':
|
|
15236
15456
|
dependencies:
|
|
15237
15457
|
'@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
|
|
15238
|
-
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15239
|
-
'@tarojs/router': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15458
|
+
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
15459
|
+
'@tarojs/router': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)(@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))
|
|
15240
15460
|
'@tarojs/runtime': 4.1.9
|
|
15241
15461
|
'@tarojs/shared': 4.1.9
|
|
15242
15462
|
abortcontroller-polyfill: 1.7.8
|
|
@@ -15252,10 +15472,10 @@ snapshots:
|
|
|
15252
15472
|
transitivePeerDependencies:
|
|
15253
15473
|
- '@tarojs/taro'
|
|
15254
15474
|
|
|
15255
|
-
'@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15475
|
+
'@tarojs/taro@4.1.9(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(@tarojs/helper@4.1.9)(@tarojs/shared@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))':
|
|
15256
15476
|
dependencies:
|
|
15257
15477
|
'@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
|
|
15258
|
-
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
15478
|
+
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
15259
15479
|
'@tarojs/helper': 4.1.9
|
|
15260
15480
|
'@tarojs/runtime': 4.1.9
|
|
15261
15481
|
'@tarojs/shared': 4.1.9
|
|
@@ -15264,9 +15484,9 @@ snapshots:
|
|
|
15264
15484
|
optionalDependencies:
|
|
15265
15485
|
'@types/react': 18.3.27
|
|
15266
15486
|
rollup: 3.29.5
|
|
15267
|
-
webpack: 5.97.1(@swc/core@1.3.96)
|
|
15487
|
+
webpack: 5.97.1(@swc/core@1.3.96)
|
|
15268
15488
|
|
|
15269
|
-
'@tarojs/vite-runner@4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15489
|
+
'@tarojs/vite-runner@4.1.9(@tarojs/runtime@4.1.9)(@types/babel__core@7.20.5)(jiti@2.6.1)(postcss@8.5.6)(rollup@3.29.5)(terser@5.44.1)(typescript@5.9.3)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
|
|
15270
15490
|
dependencies:
|
|
15271
15491
|
'@ampproject/remapping': 2.3.0
|
|
15272
15492
|
'@babel/core': 7.28.5
|
|
@@ -15279,7 +15499,7 @@ snapshots:
|
|
|
15279
15499
|
'@tarojs/runner-utils': 4.1.9
|
|
15280
15500
|
'@tarojs/runtime': 4.1.9
|
|
15281
15501
|
'@tarojs/shared': 4.1.9
|
|
15282
|
-
'@vitejs/plugin-legacy': 4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15502
|
+
'@vitejs/plugin-legacy': 4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
|
|
15283
15503
|
acorn-walk: 8.3.4
|
|
15284
15504
|
autoprefixer: 10.4.23(postcss@8.5.6)
|
|
15285
15505
|
babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
|
|
@@ -15302,8 +15522,8 @@ snapshots:
|
|
|
15302
15522
|
regenerator-runtime: 0.11.1
|
|
15303
15523
|
sax: 1.2.4
|
|
15304
15524
|
stylelint: 16.26.1(typescript@5.9.3)
|
|
15305
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15306
|
-
vite-plugin-static-copy: 0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15525
|
+
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
15526
|
+
vite-plugin-static-copy: 0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))
|
|
15307
15527
|
transitivePeerDependencies:
|
|
15308
15528
|
- '@swc/helpers'
|
|
15309
15529
|
- '@types/babel__core'
|
|
@@ -15498,7 +15718,7 @@ snapshots:
|
|
|
15498
15718
|
graphemer: 1.4.0
|
|
15499
15719
|
ignore: 5.3.2
|
|
15500
15720
|
natural-compare: 1.4.0
|
|
15501
|
-
semver: 7.7.
|
|
15721
|
+
semver: 7.7.4
|
|
15502
15722
|
ts-api-utils: 1.4.3(typescript@5.9.3)
|
|
15503
15723
|
optionalDependencies:
|
|
15504
15724
|
typescript: 5.9.3
|
|
@@ -15545,7 +15765,7 @@ snapshots:
|
|
|
15545
15765
|
globby: 11.1.0
|
|
15546
15766
|
is-glob: 4.0.3
|
|
15547
15767
|
minimatch: 9.0.3
|
|
15548
|
-
semver: 7.7.
|
|
15768
|
+
semver: 7.7.4
|
|
15549
15769
|
ts-api-utils: 1.4.3(typescript@5.9.3)
|
|
15550
15770
|
optionalDependencies:
|
|
15551
15771
|
typescript: 5.9.3
|
|
@@ -15561,7 +15781,7 @@ snapshots:
|
|
|
15561
15781
|
'@typescript-eslint/types': 6.21.0
|
|
15562
15782
|
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
|
|
15563
15783
|
eslint: 8.57.1
|
|
15564
|
-
semver: 7.7.
|
|
15784
|
+
semver: 7.7.4
|
|
15565
15785
|
transitivePeerDependencies:
|
|
15566
15786
|
- supports-color
|
|
15567
15787
|
- typescript
|
|
@@ -15573,7 +15793,7 @@ snapshots:
|
|
|
15573
15793
|
|
|
15574
15794
|
'@ungap/structured-clone@1.3.0': {}
|
|
15575
15795
|
|
|
15576
|
-
'@vitejs/plugin-legacy@4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15796
|
+
'@vitejs/plugin-legacy@4.1.1(terser@5.44.1)(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
|
|
15577
15797
|
dependencies:
|
|
15578
15798
|
'@babel/core': 7.28.5
|
|
15579
15799
|
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
|
|
@@ -15583,11 +15803,11 @@ snapshots:
|
|
|
15583
15803
|
regenerator-runtime: 0.13.11
|
|
15584
15804
|
systemjs: 6.15.1
|
|
15585
15805
|
terser: 5.44.1
|
|
15586
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15806
|
+
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
15587
15807
|
transitivePeerDependencies:
|
|
15588
15808
|
- supports-color
|
|
15589
15809
|
|
|
15590
|
-
'@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15810
|
+
'@vitejs/plugin-react@4.7.0(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1))':
|
|
15591
15811
|
dependencies:
|
|
15592
15812
|
'@babel/core': 7.28.5
|
|
15593
15813
|
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
|
|
@@ -15595,39 +15815,39 @@ snapshots:
|
|
|
15595
15815
|
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
15596
15816
|
'@types/babel__core': 7.20.5
|
|
15597
15817
|
react-refresh: 0.17.0
|
|
15598
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
15818
|
+
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
15599
15819
|
transitivePeerDependencies:
|
|
15600
15820
|
- supports-color
|
|
15601
15821
|
|
|
15602
|
-
'@vue/compiler-core@3.5.
|
|
15822
|
+
'@vue/compiler-core@3.5.30':
|
|
15603
15823
|
dependencies:
|
|
15604
|
-
'@babel/parser': 7.
|
|
15605
|
-
'@vue/shared': 3.5.
|
|
15606
|
-
entities: 7.0.
|
|
15824
|
+
'@babel/parser': 7.29.0
|
|
15825
|
+
'@vue/shared': 3.5.30
|
|
15826
|
+
entities: 7.0.1
|
|
15607
15827
|
estree-walker: 2.0.2
|
|
15608
15828
|
source-map-js: 1.2.1
|
|
15609
15829
|
|
|
15610
|
-
'@vue/compiler-dom@3.5.
|
|
15830
|
+
'@vue/compiler-dom@3.5.30':
|
|
15611
15831
|
dependencies:
|
|
15612
|
-
'@vue/compiler-core': 3.5.
|
|
15613
|
-
'@vue/shared': 3.5.
|
|
15832
|
+
'@vue/compiler-core': 3.5.30
|
|
15833
|
+
'@vue/shared': 3.5.30
|
|
15614
15834
|
|
|
15615
|
-
'@vue/compiler-sfc@3.5.
|
|
15835
|
+
'@vue/compiler-sfc@3.5.30':
|
|
15616
15836
|
dependencies:
|
|
15617
|
-
'@babel/parser': 7.
|
|
15618
|
-
'@vue/compiler-core': 3.5.
|
|
15619
|
-
'@vue/compiler-dom': 3.5.
|
|
15620
|
-
'@vue/compiler-ssr': 3.5.
|
|
15621
|
-
'@vue/shared': 3.5.
|
|
15837
|
+
'@babel/parser': 7.29.0
|
|
15838
|
+
'@vue/compiler-core': 3.5.30
|
|
15839
|
+
'@vue/compiler-dom': 3.5.30
|
|
15840
|
+
'@vue/compiler-ssr': 3.5.30
|
|
15841
|
+
'@vue/shared': 3.5.30
|
|
15622
15842
|
estree-walker: 2.0.2
|
|
15623
15843
|
magic-string: 0.30.21
|
|
15624
|
-
postcss: 8.5.
|
|
15844
|
+
postcss: 8.5.8
|
|
15625
15845
|
source-map-js: 1.2.1
|
|
15626
15846
|
|
|
15627
|
-
'@vue/compiler-ssr@3.5.
|
|
15847
|
+
'@vue/compiler-ssr@3.5.30':
|
|
15628
15848
|
dependencies:
|
|
15629
|
-
'@vue/compiler-dom': 3.5.
|
|
15630
|
-
'@vue/shared': 3.5.
|
|
15849
|
+
'@vue/compiler-dom': 3.5.30
|
|
15850
|
+
'@vue/shared': 3.5.30
|
|
15631
15851
|
|
|
15632
15852
|
'@vue/reactivity@3.0.5':
|
|
15633
15853
|
dependencies:
|
|
@@ -15635,9 +15855,9 @@ snapshots:
|
|
|
15635
15855
|
|
|
15636
15856
|
'@vue/shared@3.0.5': {}
|
|
15637
15857
|
|
|
15638
|
-
'@vue/shared@3.5.
|
|
15858
|
+
'@vue/shared@3.5.30': {}
|
|
15639
15859
|
|
|
15640
|
-
'@weapp-core/escape@
|
|
15860
|
+
'@weapp-core/escape@7.0.0': {}
|
|
15641
15861
|
|
|
15642
15862
|
'@weapp-core/regex@1.0.1': {}
|
|
15643
15863
|
|
|
@@ -15652,19 +15872,20 @@ snapshots:
|
|
|
15652
15872
|
postcss-selector-parser: 7.1.1
|
|
15653
15873
|
postcss-value-parser: 4.2.0
|
|
15654
15874
|
|
|
15655
|
-
'@weapp-tailwindcss/postcss@2.1.
|
|
15875
|
+
'@weapp-tailwindcss/postcss@2.1.5':
|
|
15656
15876
|
dependencies:
|
|
15657
|
-
'@weapp-core/escape':
|
|
15877
|
+
'@weapp-core/escape': 7.0.0
|
|
15658
15878
|
'@weapp-tailwindcss/postcss-calc': 1.0.0(postcss@8.5.6)
|
|
15659
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
15879
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
15660
15880
|
postcss: 8.5.6
|
|
15661
15881
|
postcss-preset-env: 10.6.1(postcss@8.5.6)
|
|
15662
|
-
postcss-pxtrans: 1.0.
|
|
15663
|
-
postcss-rem-to-responsive-pixel: 7.0.
|
|
15882
|
+
postcss-pxtrans: 1.0.1(postcss@8.5.6)
|
|
15883
|
+
postcss-rem-to-responsive-pixel: 7.0.1(postcss@8.5.6)
|
|
15664
15884
|
postcss-selector-parser: 7.1.1
|
|
15885
|
+
postcss-units-to-px: 0.2.0(postcss@8.5.6)
|
|
15665
15886
|
postcss-value-parser: 4.2.0
|
|
15666
15887
|
|
|
15667
|
-
'@weapp-tailwindcss/shared@1.1.
|
|
15888
|
+
'@weapp-tailwindcss/shared@1.1.2':
|
|
15668
15889
|
dependencies:
|
|
15669
15890
|
pathe: 2.0.3
|
|
15670
15891
|
|
|
@@ -17028,6 +17249,10 @@ snapshots:
|
|
|
17028
17249
|
dependencies:
|
|
17029
17250
|
consola: 3.4.2
|
|
17030
17251
|
|
|
17252
|
+
class-variance-authority@0.7.1:
|
|
17253
|
+
dependencies:
|
|
17254
|
+
clsx: 2.1.1
|
|
17255
|
+
|
|
17031
17256
|
classnames@2.5.1: {}
|
|
17032
17257
|
|
|
17033
17258
|
clean-css@4.2.4:
|
|
@@ -17114,6 +17339,8 @@ snapshots:
|
|
|
17114
17339
|
|
|
17115
17340
|
clone@1.0.4: {}
|
|
17116
17341
|
|
|
17342
|
+
clsx@2.1.1: {}
|
|
17343
|
+
|
|
17117
17344
|
code-block-writer@13.0.3: {}
|
|
17118
17345
|
|
|
17119
17346
|
color-convert@1.9.3:
|
|
@@ -17207,7 +17434,7 @@ snapshots:
|
|
|
17207
17434
|
make-dir: 3.1.0
|
|
17208
17435
|
onetime: 5.1.2
|
|
17209
17436
|
pkg-up: 3.1.0
|
|
17210
|
-
semver: 7.7.
|
|
17437
|
+
semver: 7.7.4
|
|
17211
17438
|
|
|
17212
17439
|
confbox@0.1.8: {}
|
|
17213
17440
|
|
|
@@ -17469,6 +17696,8 @@ snapshots:
|
|
|
17469
17696
|
es-errors: 1.3.0
|
|
17470
17697
|
is-data-view: 1.0.2
|
|
17471
17698
|
|
|
17699
|
+
date-fns@4.1.0: {}
|
|
17700
|
+
|
|
17472
17701
|
dateformat@2.2.0: {}
|
|
17473
17702
|
|
|
17474
17703
|
debounce-fn@4.0.0:
|
|
@@ -17774,13 +18003,16 @@ snapshots:
|
|
|
17774
18003
|
graceful-fs: 4.2.11
|
|
17775
18004
|
tapable: 2.3.0
|
|
17776
18005
|
|
|
18006
|
+
enhanced-resolve@5.20.0:
|
|
18007
|
+
dependencies:
|
|
18008
|
+
graceful-fs: 4.2.11
|
|
18009
|
+
tapable: 2.3.0
|
|
18010
|
+
|
|
17777
18011
|
entities@2.2.0: {}
|
|
17778
18012
|
|
|
17779
18013
|
entities@4.5.0: {}
|
|
17780
18014
|
|
|
17781
|
-
entities@
|
|
17782
|
-
|
|
17783
|
-
entities@7.0.0: {}
|
|
18015
|
+
entities@7.0.1: {}
|
|
17784
18016
|
|
|
17785
18017
|
env-paths@2.2.1: {}
|
|
17786
18018
|
|
|
@@ -18086,6 +18318,12 @@ snapshots:
|
|
|
18086
18318
|
string.prototype.matchall: 4.0.12
|
|
18087
18319
|
string.prototype.repeat: 1.0.0
|
|
18088
18320
|
|
|
18321
|
+
eslint-plugin-tailwindcss@3.18.2(tailwindcss@4.1.18):
|
|
18322
|
+
dependencies:
|
|
18323
|
+
fast-glob: 3.3.3
|
|
18324
|
+
postcss: 8.5.6
|
|
18325
|
+
tailwindcss: 4.1.18
|
|
18326
|
+
|
|
18089
18327
|
eslint-scope@5.1.1:
|
|
18090
18328
|
dependencies:
|
|
18091
18329
|
esrecurse: 4.3.0
|
|
@@ -18637,6 +18875,8 @@ snapshots:
|
|
|
18637
18875
|
|
|
18638
18876
|
functions-have-names@1.2.3: {}
|
|
18639
18877
|
|
|
18878
|
+
fuse.js@7.1.0: {}
|
|
18879
|
+
|
|
18640
18880
|
generator-function@2.0.1: {}
|
|
18641
18881
|
|
|
18642
18882
|
generic-names@4.0.0:
|
|
@@ -18995,12 +19235,12 @@ snapshots:
|
|
|
18995
19235
|
|
|
18996
19236
|
html-tags@3.3.1: {}
|
|
18997
19237
|
|
|
18998
|
-
htmlparser2@10.
|
|
19238
|
+
htmlparser2@10.1.0:
|
|
18999
19239
|
dependencies:
|
|
19000
19240
|
domelementtype: 2.3.0
|
|
19001
19241
|
domhandler: 5.0.3
|
|
19002
19242
|
domutils: 3.2.2
|
|
19003
|
-
entities:
|
|
19243
|
+
entities: 7.0.1
|
|
19004
19244
|
|
|
19005
19245
|
http-cache-semantics@3.8.1: {}
|
|
19006
19246
|
|
|
@@ -19553,7 +19793,7 @@ snapshots:
|
|
|
19553
19793
|
chalk: 4.1.2
|
|
19554
19794
|
console-table-printer: 2.15.0
|
|
19555
19795
|
p-queue: 6.6.2
|
|
19556
|
-
semver: 7.7.
|
|
19796
|
+
semver: 7.7.4
|
|
19557
19797
|
uuid: 10.0.0
|
|
19558
19798
|
optionalDependencies:
|
|
19559
19799
|
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
@@ -19596,36 +19836,69 @@ snapshots:
|
|
|
19596
19836
|
lightningcss-android-arm64@1.30.2:
|
|
19597
19837
|
optional: true
|
|
19598
19838
|
|
|
19839
|
+
lightningcss-android-arm64@1.31.1:
|
|
19840
|
+
optional: true
|
|
19841
|
+
|
|
19599
19842
|
lightningcss-darwin-arm64@1.30.2:
|
|
19600
19843
|
optional: true
|
|
19601
19844
|
|
|
19845
|
+
lightningcss-darwin-arm64@1.31.1:
|
|
19846
|
+
optional: true
|
|
19847
|
+
|
|
19602
19848
|
lightningcss-darwin-x64@1.30.2:
|
|
19603
19849
|
optional: true
|
|
19604
19850
|
|
|
19851
|
+
lightningcss-darwin-x64@1.31.1:
|
|
19852
|
+
optional: true
|
|
19853
|
+
|
|
19605
19854
|
lightningcss-freebsd-x64@1.30.2:
|
|
19606
19855
|
optional: true
|
|
19607
19856
|
|
|
19857
|
+
lightningcss-freebsd-x64@1.31.1:
|
|
19858
|
+
optional: true
|
|
19859
|
+
|
|
19608
19860
|
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
19609
19861
|
optional: true
|
|
19610
19862
|
|
|
19863
|
+
lightningcss-linux-arm-gnueabihf@1.31.1:
|
|
19864
|
+
optional: true
|
|
19865
|
+
|
|
19611
19866
|
lightningcss-linux-arm64-gnu@1.30.2:
|
|
19612
19867
|
optional: true
|
|
19613
19868
|
|
|
19869
|
+
lightningcss-linux-arm64-gnu@1.31.1:
|
|
19870
|
+
optional: true
|
|
19871
|
+
|
|
19614
19872
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
19615
19873
|
optional: true
|
|
19616
19874
|
|
|
19875
|
+
lightningcss-linux-arm64-musl@1.31.1:
|
|
19876
|
+
optional: true
|
|
19877
|
+
|
|
19617
19878
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
19618
19879
|
optional: true
|
|
19619
19880
|
|
|
19881
|
+
lightningcss-linux-x64-gnu@1.31.1:
|
|
19882
|
+
optional: true
|
|
19883
|
+
|
|
19620
19884
|
lightningcss-linux-x64-musl@1.30.2:
|
|
19621
19885
|
optional: true
|
|
19622
19886
|
|
|
19887
|
+
lightningcss-linux-x64-musl@1.31.1:
|
|
19888
|
+
optional: true
|
|
19889
|
+
|
|
19623
19890
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
19624
19891
|
optional: true
|
|
19625
19892
|
|
|
19893
|
+
lightningcss-win32-arm64-msvc@1.31.1:
|
|
19894
|
+
optional: true
|
|
19895
|
+
|
|
19626
19896
|
lightningcss-win32-x64-msvc@1.30.2:
|
|
19627
19897
|
optional: true
|
|
19628
19898
|
|
|
19899
|
+
lightningcss-win32-x64-msvc@1.31.1:
|
|
19900
|
+
optional: true
|
|
19901
|
+
|
|
19629
19902
|
lightningcss@1.30.2:
|
|
19630
19903
|
dependencies:
|
|
19631
19904
|
detect-libc: 2.1.2
|
|
@@ -19642,6 +19915,22 @@ snapshots:
|
|
|
19642
19915
|
lightningcss-win32-arm64-msvc: 1.30.2
|
|
19643
19916
|
lightningcss-win32-x64-msvc: 1.30.2
|
|
19644
19917
|
|
|
19918
|
+
lightningcss@1.31.1:
|
|
19919
|
+
dependencies:
|
|
19920
|
+
detect-libc: 2.1.2
|
|
19921
|
+
optionalDependencies:
|
|
19922
|
+
lightningcss-android-arm64: 1.31.1
|
|
19923
|
+
lightningcss-darwin-arm64: 1.31.1
|
|
19924
|
+
lightningcss-darwin-x64: 1.31.1
|
|
19925
|
+
lightningcss-freebsd-x64: 1.31.1
|
|
19926
|
+
lightningcss-linux-arm-gnueabihf: 1.31.1
|
|
19927
|
+
lightningcss-linux-arm64-gnu: 1.31.1
|
|
19928
|
+
lightningcss-linux-arm64-musl: 1.31.1
|
|
19929
|
+
lightningcss-linux-x64-gnu: 1.31.1
|
|
19930
|
+
lightningcss-linux-x64-musl: 1.31.1
|
|
19931
|
+
lightningcss-win32-arm64-msvc: 1.31.1
|
|
19932
|
+
lightningcss-win32-x64-msvc: 1.31.1
|
|
19933
|
+
|
|
19645
19934
|
lilconfig@2.1.0: {}
|
|
19646
19935
|
|
|
19647
19936
|
lilconfig@3.1.3: {}
|
|
@@ -19836,10 +20125,11 @@ snapshots:
|
|
|
19836
20125
|
dependencies:
|
|
19837
20126
|
yallist: 3.1.1
|
|
19838
20127
|
|
|
19839
|
-
lucide-react-taro@1.
|
|
20128
|
+
lucide-react-taro@1.3.0(@tarojs/components@4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)))(react@18.3.1):
|
|
19840
20129
|
dependencies:
|
|
19841
|
-
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96)
|
|
20130
|
+
'@tarojs/components': 4.1.9(@tarojs/helper@4.1.9)(@types/react@18.3.27)(postcss@8.5.6)(rollup@3.29.5)(webpack@5.97.1(@swc/core@1.3.96))
|
|
19842
20131
|
commander: 14.0.2
|
|
20132
|
+
fuse.js: 7.1.0
|
|
19843
20133
|
react: 18.3.1
|
|
19844
20134
|
sharp: 0.33.5
|
|
19845
20135
|
|
|
@@ -20254,7 +20544,7 @@ snapshots:
|
|
|
20254
20544
|
|
|
20255
20545
|
node-abi@3.87.0:
|
|
20256
20546
|
dependencies:
|
|
20257
|
-
semver: 7.7.
|
|
20547
|
+
semver: 7.7.4
|
|
20258
20548
|
|
|
20259
20549
|
node-abort-controller@3.1.1: {}
|
|
20260
20550
|
|
|
@@ -21026,7 +21316,7 @@ snapshots:
|
|
|
21026
21316
|
dependencies:
|
|
21027
21317
|
postcss: 8.5.6
|
|
21028
21318
|
|
|
21029
|
-
postcss-plugin-shared@1.
|
|
21319
|
+
postcss-plugin-shared@1.1.1(postcss@8.5.6):
|
|
21030
21320
|
dependencies:
|
|
21031
21321
|
defu: 6.1.4
|
|
21032
21322
|
postcss: 8.5.6
|
|
@@ -21111,10 +21401,10 @@ snapshots:
|
|
|
21111
21401
|
postcss: 8.5.6
|
|
21112
21402
|
postcss-selector-parser: 7.1.1
|
|
21113
21403
|
|
|
21114
|
-
postcss-pxtrans@1.0.
|
|
21404
|
+
postcss-pxtrans@1.0.1(postcss@8.5.6):
|
|
21115
21405
|
dependencies:
|
|
21116
21406
|
postcss: 8.5.6
|
|
21117
|
-
postcss-plugin-shared: 1.
|
|
21407
|
+
postcss-plugin-shared: 1.1.1(postcss@8.5.6)
|
|
21118
21408
|
|
|
21119
21409
|
postcss-pxtransform@4.1.9(postcss@8.5.6):
|
|
21120
21410
|
dependencies:
|
|
@@ -21131,10 +21421,10 @@ snapshots:
|
|
|
21131
21421
|
postcss: 8.5.6
|
|
21132
21422
|
postcss-value-parser: 4.2.0
|
|
21133
21423
|
|
|
21134
|
-
postcss-rem-to-responsive-pixel@7.0.
|
|
21424
|
+
postcss-rem-to-responsive-pixel@7.0.1(postcss@8.5.6):
|
|
21135
21425
|
dependencies:
|
|
21136
21426
|
postcss: 8.5.6
|
|
21137
|
-
postcss-plugin-shared: 1.
|
|
21427
|
+
postcss-plugin-shared: 1.1.1(postcss@8.5.6)
|
|
21138
21428
|
|
|
21139
21429
|
postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
|
|
21140
21430
|
dependencies:
|
|
@@ -21172,6 +21462,11 @@ snapshots:
|
|
|
21172
21462
|
postcss: 8.5.6
|
|
21173
21463
|
postcss-selector-parser: 6.1.2
|
|
21174
21464
|
|
|
21465
|
+
postcss-units-to-px@0.2.0(postcss@8.5.6):
|
|
21466
|
+
dependencies:
|
|
21467
|
+
postcss: 8.5.6
|
|
21468
|
+
postcss-plugin-shared: 1.1.1(postcss@8.5.6)
|
|
21469
|
+
|
|
21175
21470
|
postcss-value-parser@4.2.0: {}
|
|
21176
21471
|
|
|
21177
21472
|
postcss@8.5.6:
|
|
@@ -21180,6 +21475,12 @@ snapshots:
|
|
|
21180
21475
|
picocolors: 1.1.1
|
|
21181
21476
|
source-map-js: 1.2.1
|
|
21182
21477
|
|
|
21478
|
+
postcss@8.5.8:
|
|
21479
|
+
dependencies:
|
|
21480
|
+
nanoid: 3.3.11
|
|
21481
|
+
picocolors: 1.1.1
|
|
21482
|
+
source-map-js: 1.2.1
|
|
21483
|
+
|
|
21183
21484
|
postgres-array@2.0.0: {}
|
|
21184
21485
|
|
|
21185
21486
|
postgres-bytea@1.0.1: {}
|
|
@@ -21747,6 +22048,8 @@ snapshots:
|
|
|
21747
22048
|
|
|
21748
22049
|
semver@7.7.3: {}
|
|
21749
22050
|
|
|
22051
|
+
semver@7.7.4: {}
|
|
22052
|
+
|
|
21750
22053
|
send@0.19.0:
|
|
21751
22054
|
dependencies:
|
|
21752
22055
|
debug: 2.6.9
|
|
@@ -21855,7 +22158,7 @@ snapshots:
|
|
|
21855
22158
|
dependencies:
|
|
21856
22159
|
color: 4.2.3
|
|
21857
22160
|
detect-libc: 2.1.2
|
|
21858
|
-
semver: 7.7.
|
|
22161
|
+
semver: 7.7.4
|
|
21859
22162
|
optionalDependencies:
|
|
21860
22163
|
'@img/sharp-darwin-arm64': 0.33.5
|
|
21861
22164
|
'@img/sharp-darwin-x64': 0.33.5
|
|
@@ -22301,28 +22604,34 @@ snapshots:
|
|
|
22301
22604
|
string-width: 4.2.3
|
|
22302
22605
|
strip-ansi: 6.0.1
|
|
22303
22606
|
|
|
22304
|
-
|
|
22607
|
+
tailwind-merge@3.5.0: {}
|
|
22608
|
+
|
|
22609
|
+
tailwindcss-animate@1.0.7(tailwindcss@4.1.18):
|
|
22610
|
+
dependencies:
|
|
22611
|
+
tailwindcss: 4.1.18
|
|
22612
|
+
|
|
22613
|
+
tailwindcss-config@1.1.4:
|
|
22305
22614
|
dependencies:
|
|
22306
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
22615
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
22307
22616
|
jiti: 2.6.1
|
|
22308
22617
|
lilconfig: 3.1.3
|
|
22309
22618
|
|
|
22310
|
-
tailwindcss-patch@8.
|
|
22619
|
+
tailwindcss-patch@8.7.3(tailwindcss@4.1.18):
|
|
22311
22620
|
dependencies:
|
|
22312
|
-
'@babel/generator': 7.
|
|
22313
|
-
'@babel/parser': 7.
|
|
22314
|
-
'@babel/traverse': 7.
|
|
22315
|
-
'@babel/types': 7.
|
|
22316
|
-
'@tailwindcss-mangle/config': 6.1.
|
|
22317
|
-
'@tailwindcss/node': 4.1
|
|
22621
|
+
'@babel/generator': 7.29.1
|
|
22622
|
+
'@babel/parser': 7.29.0
|
|
22623
|
+
'@babel/traverse': 7.29.0
|
|
22624
|
+
'@babel/types': 7.29.0
|
|
22625
|
+
'@tailwindcss-mangle/config': 6.1.3
|
|
22626
|
+
'@tailwindcss/node': 4.2.1
|
|
22318
22627
|
cac: 6.7.14
|
|
22319
22628
|
consola: 3.4.2
|
|
22320
22629
|
fs-extra: 11.3.3
|
|
22321
22630
|
local-pkg: 1.1.2
|
|
22322
22631
|
pathe: 2.0.3
|
|
22323
22632
|
postcss: 8.5.6
|
|
22324
|
-
semver: 7.7.
|
|
22325
|
-
tailwindcss-config: 1.1.
|
|
22633
|
+
semver: 7.7.4
|
|
22634
|
+
tailwindcss-config: 1.1.4
|
|
22326
22635
|
optionalDependencies:
|
|
22327
22636
|
tailwindcss: 4.1.18
|
|
22328
22637
|
transitivePeerDependencies:
|
|
@@ -22331,6 +22640,8 @@ snapshots:
|
|
|
22331
22640
|
|
|
22332
22641
|
tailwindcss@4.1.18: {}
|
|
22333
22642
|
|
|
22643
|
+
tailwindcss@4.2.1: {}
|
|
22644
|
+
|
|
22334
22645
|
tapable@2.3.0: {}
|
|
22335
22646
|
|
|
22336
22647
|
tar-fs@2.1.4:
|
|
@@ -22369,17 +22680,16 @@ snapshots:
|
|
|
22369
22680
|
string-kit: 0.17.10
|
|
22370
22681
|
tree-kit: 0.7.5
|
|
22371
22682
|
|
|
22372
|
-
terser-webpack-plugin@5.3.16(@swc/core@1.3.96)(
|
|
22683
|
+
terser-webpack-plugin@5.3.16(@swc/core@1.3.96)(webpack@5.97.1(@swc/core@1.3.96)):
|
|
22373
22684
|
dependencies:
|
|
22374
22685
|
'@jridgewell/trace-mapping': 0.3.31
|
|
22375
22686
|
jest-worker: 27.5.1
|
|
22376
22687
|
schema-utils: 4.3.3
|
|
22377
22688
|
serialize-javascript: 6.0.2
|
|
22378
22689
|
terser: 5.44.1
|
|
22379
|
-
webpack: 5.97.1(@swc/core@1.3.96)
|
|
22690
|
+
webpack: 5.97.1(@swc/core@1.3.96)
|
|
22380
22691
|
optionalDependencies:
|
|
22381
22692
|
'@swc/core': 1.3.96
|
|
22382
|
-
esbuild: 0.25.12
|
|
22383
22693
|
optional: true
|
|
22384
22694
|
|
|
22385
22695
|
terser-webpack-plugin@5.3.16(@swc/core@1.4.14)(esbuild@0.25.12)(webpack@5.97.1(@swc/core@1.4.14)(esbuild@0.25.12)):
|
|
@@ -22764,15 +23074,15 @@ snapshots:
|
|
|
22764
23074
|
clone-stats: 0.0.1
|
|
22765
23075
|
replace-ext: 0.0.1
|
|
22766
23076
|
|
|
22767
|
-
vite-plugin-static-copy@0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
23077
|
+
vite-plugin-static-copy@0.17.1(vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)):
|
|
22768
23078
|
dependencies:
|
|
22769
23079
|
chokidar: 3.6.0
|
|
22770
23080
|
fast-glob: 3.3.3
|
|
22771
23081
|
fs-extra: 11.3.3
|
|
22772
23082
|
picocolors: 1.1.1
|
|
22773
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
23083
|
+
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1)
|
|
22774
23084
|
|
|
22775
|
-
vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
23085
|
+
vite@4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.31.1)(sass@1.97.2)(terser@5.44.1):
|
|
22776
23086
|
dependencies:
|
|
22777
23087
|
esbuild: 0.18.20
|
|
22778
23088
|
postcss: 8.5.6
|
|
@@ -22781,7 +23091,7 @@ snapshots:
|
|
|
22781
23091
|
'@types/node': 22.19.6
|
|
22782
23092
|
fsevents: 2.3.3
|
|
22783
23093
|
less: 4.5.1
|
|
22784
|
-
lightningcss: 1.
|
|
23094
|
+
lightningcss: 1.31.1
|
|
22785
23095
|
sass: 1.97.2
|
|
22786
23096
|
terser: 5.44.1
|
|
22787
23097
|
|
|
@@ -22794,31 +23104,31 @@ snapshots:
|
|
|
22794
23104
|
dependencies:
|
|
22795
23105
|
defaults: 1.0.4
|
|
22796
23106
|
|
|
22797
|
-
weapp-tailwindcss@4.
|
|
23107
|
+
weapp-tailwindcss@4.10.3(tailwindcss@4.1.18):
|
|
22798
23108
|
dependencies:
|
|
22799
23109
|
'@ast-core/escape': 1.0.1
|
|
22800
|
-
'@babel/parser': 7.
|
|
22801
|
-
'@babel/traverse': 7.
|
|
22802
|
-
'@babel/types': 7.
|
|
22803
|
-
'@tailwindcss-mangle/config': 6.1.
|
|
22804
|
-
'@vue/compiler-dom': 3.5.
|
|
22805
|
-
'@vue/compiler-sfc': 3.5.
|
|
22806
|
-
'@weapp-core/escape':
|
|
23110
|
+
'@babel/parser': 7.29.0
|
|
23111
|
+
'@babel/traverse': 7.29.0
|
|
23112
|
+
'@babel/types': 7.29.0
|
|
23113
|
+
'@tailwindcss-mangle/config': 6.1.3
|
|
23114
|
+
'@vue/compiler-dom': 3.5.30
|
|
23115
|
+
'@vue/compiler-sfc': 3.5.30
|
|
23116
|
+
'@weapp-core/escape': 7.0.0
|
|
22807
23117
|
'@weapp-core/regex': 1.0.1
|
|
22808
23118
|
'@weapp-tailwindcss/logger': 1.1.0
|
|
22809
|
-
'@weapp-tailwindcss/postcss': 2.1.
|
|
22810
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
23119
|
+
'@weapp-tailwindcss/postcss': 2.1.5
|
|
23120
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
22811
23121
|
cac: 6.7.14
|
|
22812
23122
|
debug: 4.4.3
|
|
22813
23123
|
fast-glob: 3.3.3
|
|
22814
|
-
htmlparser2: 10.
|
|
23124
|
+
htmlparser2: 10.1.0
|
|
22815
23125
|
loader-utils: 2.0.4
|
|
22816
23126
|
local-pkg: 1.1.2
|
|
22817
23127
|
lru-cache: 10.4.3
|
|
22818
23128
|
magic-string: 0.30.21
|
|
22819
|
-
semver: 7.7.
|
|
22820
|
-
tailwindcss-patch: 8.
|
|
22821
|
-
webpack-sources: 3.3.
|
|
23129
|
+
semver: 7.7.4
|
|
23130
|
+
tailwindcss-patch: 8.7.3(tailwindcss@4.1.18)
|
|
23131
|
+
webpack-sources: 3.3.4
|
|
22822
23132
|
yaml: 2.8.2
|
|
22823
23133
|
transitivePeerDependencies:
|
|
22824
23134
|
- magicast
|
|
@@ -22837,7 +23147,9 @@ snapshots:
|
|
|
22837
23147
|
|
|
22838
23148
|
webpack-sources@3.3.3: {}
|
|
22839
23149
|
|
|
22840
|
-
webpack@
|
|
23150
|
+
webpack-sources@3.3.4: {}
|
|
23151
|
+
|
|
23152
|
+
webpack@5.97.1(@swc/core@1.3.96):
|
|
22841
23153
|
dependencies:
|
|
22842
23154
|
'@types/eslint-scope': 3.7.7
|
|
22843
23155
|
'@types/estree': 1.0.8
|
|
@@ -22859,7 +23171,7 @@ snapshots:
|
|
|
22859
23171
|
neo-async: 2.6.2
|
|
22860
23172
|
schema-utils: 3.3.0
|
|
22861
23173
|
tapable: 2.3.0
|
|
22862
|
-
terser-webpack-plugin: 5.3.16(@swc/core@1.3.96)(
|
|
23174
|
+
terser-webpack-plugin: 5.3.16(@swc/core@1.3.96)(webpack@5.97.1(@swc/core@1.3.96))
|
|
22863
23175
|
watchpack: 2.5.0
|
|
22864
23176
|
webpack-sources: 3.3.3
|
|
22865
23177
|
transitivePeerDependencies:
|