@coze-arch/cli 0.0.1-alpha.de5a13 → 0.0.1-alpha.deaedf
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/.cozeproj/scripts/server_dev_run.sh +1 -1
- 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/metro.config.js +3 -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__/expo/pnpm-lock.yaml +8 -5
- package/lib/__templates__/expo/server/package.json +1 -1
- package/lib/__templates__/native-static/.coze +11 -0
- package/lib/__templates__/native-static/index.html +33 -0
- package/lib/__templates__/native-static/styles/main.css +136 -0
- package/lib/__templates__/native-static/template.config.js +22 -0
- package/lib/__templates__/nextjs/.babelrc +3 -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 +3 -6
- package/lib/__templates__/nextjs/pnpm-lock.yaml +1036 -10
- 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/.coze +12 -0
- package/lib/__templates__/nuxt-vue/README.md +73 -0
- package/lib/__templates__/nuxt-vue/_gitignore +24 -0
- package/lib/__templates__/nuxt-vue/_npmrc +23 -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__/nuxt-vue/assets/css/main.css +24 -0
- 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__/nuxt-vue/postcss.config.mjs +8 -0
- package/lib/__templates__/nuxt-vue/public/favicon.ico +0 -0
- package/lib/__templates__/nuxt-vue/public/robots.txt +2 -0
- package/lib/__templates__/nuxt-vue/scripts/build.sh +14 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +39 -0
- 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/.cozeproj/scripts/dev_run.sh +107 -37
- package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -1
- package/lib/__templates__/taro/README.md +138 -62
- package/lib/__templates__/taro/config/index.ts +105 -41
- package/lib/__templates__/taro/config/prod.ts +4 -5
- package/lib/__templates__/taro/eslint.config.mjs +82 -4
- package/lib/__templates__/taro/package.json +23 -7
- package/lib/__templates__/taro/patches/@tarojs__plugin-mini-ci@4.1.9.patch +30 -0
- package/lib/__templates__/taro/pnpm-lock.yaml +1198 -214
- package/lib/__templates__/taro/server/package.json +3 -1
- package/lib/__templates__/taro/src/app.css +140 -47
- package/lib/__templates__/taro/src/app.tsx +9 -0
- 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/dev-debug.ts +23 -0
- package/lib/__templates__/taro/src/presets/h5-container.tsx +15 -0
- package/lib/__templates__/taro/src/presets/h5-navbar.tsx +238 -0
- package/lib/__templates__/taro/src/presets/h5-styles.ts +220 -0
- package/lib/__templates__/taro/src/presets/index.tsx +18 -0
- package/lib/__templates__/templates.json +43 -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 +14 -5
- package/lib/__templates__/vite/pnpm-lock.yaml +768 -24
- 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 +5 -0
- package/lib/cli.js +124 -103
- package/package.json +7 -3
- package/lib/__templates__/taro/src/app.ts +0 -14
- package/lib/__templates__/taro/src/utils/h5-styles.ts +0 -22
- package/lib/__templates__/taro/src/utils/wx-debug.ts +0 -23
|
@@ -4,6 +4,11 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
patchedDependencies:
|
|
8
|
+
'@tarojs/plugin-mini-ci@4.1.9':
|
|
9
|
+
hash: j6dgmq33tuqqgowk7tjyyinctm
|
|
10
|
+
path: patches/@tarojs__plugin-mini-ci@4.1.9.patch
|
|
11
|
+
|
|
7
12
|
importers:
|
|
8
13
|
|
|
9
14
|
.:
|
|
@@ -13,16 +18,19 @@ importers:
|
|
|
13
18
|
version: 7.28.4
|
|
14
19
|
'@tarojs/components':
|
|
15
20
|
specifier: 4.1.9
|
|
16
|
-
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))
|
|
17
22
|
'@tarojs/helper':
|
|
18
23
|
specifier: 4.1.9
|
|
19
24
|
version: 4.1.9
|
|
20
25
|
'@tarojs/plugin-framework-react':
|
|
21
26
|
specifier: 4.1.9
|
|
22
|
-
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))
|
|
23
28
|
'@tarojs/plugin-platform-h5':
|
|
24
29
|
specifier: 4.1.9
|
|
25
|
-
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
|
+
'@tarojs/plugin-platform-tt':
|
|
32
|
+
specifier: 4.1.9
|
|
33
|
+
version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
|
|
26
34
|
'@tarojs/plugin-platform-weapp':
|
|
27
35
|
specifier: 4.1.9
|
|
28
36
|
version: 4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)
|
|
@@ -37,19 +45,31 @@ importers:
|
|
|
37
45
|
version: 4.1.9
|
|
38
46
|
'@tarojs/taro':
|
|
39
47
|
specifier: 4.1.9
|
|
40
|
-
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)
|
|
41
|
-
|
|
42
|
-
specifier: ^0.
|
|
43
|
-
version: 0.
|
|
44
|
-
|
|
45
|
-
specifier: ^
|
|
46
|
-
version:
|
|
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
|
|
58
|
+
lucide-react-taro:
|
|
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)
|
|
47
61
|
react:
|
|
48
62
|
specifier: ^18.0.0
|
|
49
63
|
version: 18.3.1
|
|
50
64
|
react-dom:
|
|
51
65
|
specifier: ^18.0.0
|
|
52
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)
|
|
53
73
|
zustand:
|
|
54
74
|
specifier: ^5.0.9
|
|
55
75
|
version: 5.0.9(@types/react@18.3.27)(react@18.3.1)
|
|
@@ -66,9 +86,6 @@ importers:
|
|
|
66
86
|
'@eslint/eslintrc':
|
|
67
87
|
specifier: ^3.3.1
|
|
68
88
|
version: 3.3.3
|
|
69
|
-
'@supabase/supabase-js':
|
|
70
|
-
specifier: 2.95.3
|
|
71
|
-
version: 2.95.3
|
|
72
89
|
'@tailwindcss/postcss':
|
|
73
90
|
specifier: ^4.1.18
|
|
74
91
|
version: 4.1.18
|
|
@@ -80,10 +97,10 @@ importers:
|
|
|
80
97
|
version: 4.1.9(@types/node@22.19.6)
|
|
81
98
|
'@tarojs/plugin-mini-ci':
|
|
82
99
|
specifier: ^4.1.9
|
|
83
|
-
version: 4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))
|
|
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))
|
|
84
101
|
'@tarojs/vite-runner':
|
|
85
102
|
specifier: 4.1.9
|
|
86
|
-
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))
|
|
87
104
|
'@types/minimatch':
|
|
88
105
|
specifier: ^5
|
|
89
106
|
version: 5.1.2
|
|
@@ -92,7 +109,7 @@ importers:
|
|
|
92
109
|
version: 18.3.27
|
|
93
110
|
'@vitejs/plugin-react':
|
|
94
111
|
specifier: ^4.3.0
|
|
95
|
-
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))
|
|
96
113
|
babel-preset-taro:
|
|
97
114
|
specifier: 4.1.9
|
|
98
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)
|
|
@@ -114,6 +131,9 @@ importers:
|
|
|
114
131
|
eslint-plugin-react-hooks:
|
|
115
132
|
specifier: ^4.4.0
|
|
116
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)
|
|
117
137
|
less:
|
|
118
138
|
specifier: ^4.2.0
|
|
119
139
|
version: 4.5.1
|
|
@@ -144,15 +164,18 @@ importers:
|
|
|
144
164
|
terser:
|
|
145
165
|
specifier: ^5.30.4
|
|
146
166
|
version: 5.44.1
|
|
167
|
+
tt-ide-cli:
|
|
168
|
+
specifier: ^0.1.31
|
|
169
|
+
version: 0.1.31(@types/node@22.19.6)
|
|
147
170
|
typescript:
|
|
148
171
|
specifier: ^5.4.5
|
|
149
172
|
version: 5.9.3
|
|
150
173
|
vite:
|
|
151
174
|
specifier: ^4.2.0
|
|
152
|
-
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)
|
|
153
176
|
weapp-tailwindcss:
|
|
154
|
-
specifier: ^4.
|
|
155
|
-
version: 4.
|
|
177
|
+
specifier: ^4.10.3
|
|
178
|
+
version: 4.10.3(tailwindcss@4.1.18)
|
|
156
179
|
|
|
157
180
|
server:
|
|
158
181
|
dependencies:
|
|
@@ -171,12 +194,18 @@ importers:
|
|
|
171
194
|
'@nestjs/platform-express':
|
|
172
195
|
specifier: ^10.4.15
|
|
173
196
|
version: 10.4.20(@nestjs/common@10.4.20(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.20)
|
|
197
|
+
'@supabase/supabase-js':
|
|
198
|
+
specifier: 2.95.3
|
|
199
|
+
version: 2.95.3
|
|
174
200
|
better-sqlite3:
|
|
175
201
|
specifier: ^11.9.1
|
|
176
202
|
version: 11.10.0
|
|
177
203
|
coze-coding-dev-sdk:
|
|
178
|
-
specifier: ^0.7.
|
|
179
|
-
version: 0.7.
|
|
204
|
+
specifier: ^0.7.16
|
|
205
|
+
version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
|
|
206
|
+
dotenv:
|
|
207
|
+
specifier: ^17.2.3
|
|
208
|
+
version: 17.2.3
|
|
180
209
|
drizzle-kit:
|
|
181
210
|
specifier: ^0.31.8
|
|
182
211
|
version: 0.31.8
|
|
@@ -426,6 +455,10 @@ packages:
|
|
|
426
455
|
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
|
|
427
456
|
engines: {node: '>=6.9.0'}
|
|
428
457
|
|
|
458
|
+
'@babel/code-frame@7.29.0':
|
|
459
|
+
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
|
|
460
|
+
engines: {node: '>=6.9.0'}
|
|
461
|
+
|
|
429
462
|
'@babel/compat-data@7.22.9':
|
|
430
463
|
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
|
|
431
464
|
engines: {node: '>=6.9.0'}
|
|
@@ -468,6 +501,10 @@ packages:
|
|
|
468
501
|
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
|
|
469
502
|
engines: {node: '>=6.9.0'}
|
|
470
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
|
+
|
|
471
508
|
'@babel/helper-annotate-as-pure@7.22.5':
|
|
472
509
|
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
|
|
473
510
|
engines: {node: '>=6.9.0'}
|
|
@@ -701,6 +738,11 @@ packages:
|
|
|
701
738
|
engines: {node: '>=6.0.0'}
|
|
702
739
|
hasBin: true
|
|
703
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
|
+
|
|
704
746
|
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
|
|
705
747
|
resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
|
|
706
748
|
engines: {node: '>=6.9.0'}
|
|
@@ -1702,6 +1744,10 @@ packages:
|
|
|
1702
1744
|
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
1703
1745
|
engines: {node: '>=6.9.0'}
|
|
1704
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
|
+
|
|
1705
1751
|
'@babel/traverse@7.21.4':
|
|
1706
1752
|
resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
|
|
1707
1753
|
engines: {node: '>=6.9.0'}
|
|
@@ -1714,6 +1760,10 @@ packages:
|
|
|
1714
1760
|
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
|
|
1715
1761
|
engines: {node: '>=6.9.0'}
|
|
1716
1762
|
|
|
1763
|
+
'@babel/traverse@7.29.0':
|
|
1764
|
+
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
|
|
1765
|
+
engines: {node: '>=6.9.0'}
|
|
1766
|
+
|
|
1717
1767
|
'@babel/types@7.24.0':
|
|
1718
1768
|
resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
|
|
1719
1769
|
engines: {node: '>=6.9.0'}
|
|
@@ -1726,6 +1776,10 @@ packages:
|
|
|
1726
1776
|
resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
|
|
1727
1777
|
engines: {node: '>=6.9.0'}
|
|
1728
1778
|
|
|
1779
|
+
'@babel/types@7.29.0':
|
|
1780
|
+
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
|
|
1781
|
+
engines: {node: '>=6.9.0'}
|
|
1782
|
+
|
|
1729
1783
|
'@borewit/text-codec@0.2.1':
|
|
1730
1784
|
resolution: {integrity: sha512-k7vvKPbf7J2fZ5klGRD9AeKfUvojuZIQ3BT5u7Jfv+puwXkUBUT5PVyMDfJZpy30CBDXGMgw7fguK/lpOMBvgw==}
|
|
1731
1785
|
|
|
@@ -2055,6 +2109,9 @@ packages:
|
|
|
2055
2109
|
'@dual-bundle/import-meta-resolve@4.2.1':
|
|
2056
2110
|
resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
|
|
2057
2111
|
|
|
2112
|
+
'@emnapi/runtime@1.8.1':
|
|
2113
|
+
resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
|
|
2114
|
+
|
|
2058
2115
|
'@esbuild-kit/core-utils@3.3.2':
|
|
2059
2116
|
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
|
|
2060
2117
|
deprecated: 'Merged into tsx: https://tsx.is'
|
|
@@ -2539,6 +2596,123 @@ packages:
|
|
|
2539
2596
|
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
|
|
2540
2597
|
deprecated: Use @eslint/object-schema instead
|
|
2541
2598
|
|
|
2599
|
+
'@img/sharp-darwin-arm64@0.33.5':
|
|
2600
|
+
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
|
|
2601
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2602
|
+
cpu: [arm64]
|
|
2603
|
+
os: [darwin]
|
|
2604
|
+
|
|
2605
|
+
'@img/sharp-darwin-x64@0.33.5':
|
|
2606
|
+
resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
|
|
2607
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2608
|
+
cpu: [x64]
|
|
2609
|
+
os: [darwin]
|
|
2610
|
+
|
|
2611
|
+
'@img/sharp-libvips-darwin-arm64@1.0.4':
|
|
2612
|
+
resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
|
|
2613
|
+
cpu: [arm64]
|
|
2614
|
+
os: [darwin]
|
|
2615
|
+
|
|
2616
|
+
'@img/sharp-libvips-darwin-x64@1.0.4':
|
|
2617
|
+
resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
|
|
2618
|
+
cpu: [x64]
|
|
2619
|
+
os: [darwin]
|
|
2620
|
+
|
|
2621
|
+
'@img/sharp-libvips-linux-arm64@1.0.4':
|
|
2622
|
+
resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
|
|
2623
|
+
cpu: [arm64]
|
|
2624
|
+
os: [linux]
|
|
2625
|
+
libc: [glibc]
|
|
2626
|
+
|
|
2627
|
+
'@img/sharp-libvips-linux-arm@1.0.5':
|
|
2628
|
+
resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
|
|
2629
|
+
cpu: [arm]
|
|
2630
|
+
os: [linux]
|
|
2631
|
+
libc: [glibc]
|
|
2632
|
+
|
|
2633
|
+
'@img/sharp-libvips-linux-s390x@1.0.4':
|
|
2634
|
+
resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
|
|
2635
|
+
cpu: [s390x]
|
|
2636
|
+
os: [linux]
|
|
2637
|
+
libc: [glibc]
|
|
2638
|
+
|
|
2639
|
+
'@img/sharp-libvips-linux-x64@1.0.4':
|
|
2640
|
+
resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
|
|
2641
|
+
cpu: [x64]
|
|
2642
|
+
os: [linux]
|
|
2643
|
+
libc: [glibc]
|
|
2644
|
+
|
|
2645
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.0.4':
|
|
2646
|
+
resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
|
|
2647
|
+
cpu: [arm64]
|
|
2648
|
+
os: [linux]
|
|
2649
|
+
libc: [musl]
|
|
2650
|
+
|
|
2651
|
+
'@img/sharp-libvips-linuxmusl-x64@1.0.4':
|
|
2652
|
+
resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
|
|
2653
|
+
cpu: [x64]
|
|
2654
|
+
os: [linux]
|
|
2655
|
+
libc: [musl]
|
|
2656
|
+
|
|
2657
|
+
'@img/sharp-linux-arm64@0.33.5':
|
|
2658
|
+
resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
|
|
2659
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2660
|
+
cpu: [arm64]
|
|
2661
|
+
os: [linux]
|
|
2662
|
+
libc: [glibc]
|
|
2663
|
+
|
|
2664
|
+
'@img/sharp-linux-arm@0.33.5':
|
|
2665
|
+
resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
|
|
2666
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2667
|
+
cpu: [arm]
|
|
2668
|
+
os: [linux]
|
|
2669
|
+
libc: [glibc]
|
|
2670
|
+
|
|
2671
|
+
'@img/sharp-linux-s390x@0.33.5':
|
|
2672
|
+
resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
|
|
2673
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2674
|
+
cpu: [s390x]
|
|
2675
|
+
os: [linux]
|
|
2676
|
+
libc: [glibc]
|
|
2677
|
+
|
|
2678
|
+
'@img/sharp-linux-x64@0.33.5':
|
|
2679
|
+
resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
|
|
2680
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2681
|
+
cpu: [x64]
|
|
2682
|
+
os: [linux]
|
|
2683
|
+
libc: [glibc]
|
|
2684
|
+
|
|
2685
|
+
'@img/sharp-linuxmusl-arm64@0.33.5':
|
|
2686
|
+
resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
|
|
2687
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2688
|
+
cpu: [arm64]
|
|
2689
|
+
os: [linux]
|
|
2690
|
+
libc: [musl]
|
|
2691
|
+
|
|
2692
|
+
'@img/sharp-linuxmusl-x64@0.33.5':
|
|
2693
|
+
resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
|
|
2694
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2695
|
+
cpu: [x64]
|
|
2696
|
+
os: [linux]
|
|
2697
|
+
libc: [musl]
|
|
2698
|
+
|
|
2699
|
+
'@img/sharp-wasm32@0.33.5':
|
|
2700
|
+
resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
|
|
2701
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2702
|
+
cpu: [wasm32]
|
|
2703
|
+
|
|
2704
|
+
'@img/sharp-win32-ia32@0.33.5':
|
|
2705
|
+
resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
|
|
2706
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2707
|
+
cpu: [ia32]
|
|
2708
|
+
os: [win32]
|
|
2709
|
+
|
|
2710
|
+
'@img/sharp-win32-x64@0.33.5':
|
|
2711
|
+
resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
|
|
2712
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2713
|
+
cpu: [x64]
|
|
2714
|
+
os: [win32]
|
|
2715
|
+
|
|
2542
2716
|
'@inquirer/external-editor@1.0.3':
|
|
2543
2717
|
resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
|
|
2544
2718
|
engines: {node: '>=18'}
|
|
@@ -3628,15 +3802,18 @@ packages:
|
|
|
3628
3802
|
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
|
|
3629
3803
|
engines: {node: '>=6'}
|
|
3630
3804
|
|
|
3631
|
-
'@tailwindcss-mangle/config@6.1.
|
|
3632
|
-
resolution: {integrity: sha512-
|
|
3805
|
+
'@tailwindcss-mangle/config@6.1.3':
|
|
3806
|
+
resolution: {integrity: sha512-e0wj/R582uyrqMLYDDyfl0BfysybOA1PiP0ChxQVch1JWxkLxM0SB7Nb6Cq0jiSYugX5hGfSV1UEqLhM0Q9PTQ==}
|
|
3633
3807
|
|
|
3634
|
-
'@tailwindcss-mangle/shared@4.1.
|
|
3635
|
-
resolution: {integrity: sha512-
|
|
3808
|
+
'@tailwindcss-mangle/shared@4.1.3':
|
|
3809
|
+
resolution: {integrity: sha512-u7TSrR0PwEHUwP/gEE+yIy8QrkCnyVkN245uyn74aYWK73ksJAY2bb27OStzlMdfQADGf7xpBLshISM9UpDJEQ==}
|
|
3636
3810
|
|
|
3637
3811
|
'@tailwindcss/node@4.1.18':
|
|
3638
3812
|
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
|
|
3639
3813
|
|
|
3814
|
+
'@tailwindcss/node@4.2.1':
|
|
3815
|
+
resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
|
|
3816
|
+
|
|
3640
3817
|
'@tailwindcss/oxide-android-arm64@4.1.18':
|
|
3641
3818
|
resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
|
|
3642
3819
|
engines: {node: '>= 10'}
|
|
@@ -3986,6 +4163,13 @@ packages:
|
|
|
3986
4163
|
'@tarojs/plugin-platform-h5@4.1.9':
|
|
3987
4164
|
resolution: {integrity: sha512-qrxJY7fiknzcBWI/bEQxAksi8fB5/ciYIbrF/hFbsH7Zc0VzQGA0IpdeOl8gya/mzmF9ieyr28/hObNjNnMyUw==}
|
|
3988
4165
|
|
|
4166
|
+
'@tarojs/plugin-platform-tt@4.1.9':
|
|
4167
|
+
resolution: {integrity: sha512-qkz0VKx7tflj6MHJgR7wrEXxn0oS+ph0S+HdqulJpev7k2bWWSMUcVHiDHL1ZI01PSMVavX/+WCgYcX8CPEcGQ==}
|
|
4168
|
+
engines: {node: '>= 18'}
|
|
4169
|
+
peerDependencies:
|
|
4170
|
+
'@tarojs/service': 4.1.9
|
|
4171
|
+
'@tarojs/shared': 4.1.9
|
|
4172
|
+
|
|
3989
4173
|
'@tarojs/plugin-platform-weapp@4.1.9':
|
|
3990
4174
|
resolution: {integrity: sha512-a3pHm2j4dksvuium6rMZwDmLazA/COAnwYNcbU3/vFkMA6MwTbra5JDL8Ari4op7HqeP72RZlEoYB5hp56jsXQ==}
|
|
3991
4175
|
engines: {node: '>= 18'}
|
|
@@ -4080,6 +4264,9 @@ packages:
|
|
|
4080
4264
|
'@ts-morph/common@0.27.0':
|
|
4081
4265
|
resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
|
|
4082
4266
|
|
|
4267
|
+
'@tt-miniprogram/ext-pack@1.2.4':
|
|
4268
|
+
resolution: {integrity: sha512-pIXzF6YcCtJdlIGNByUIZr8OArdhi15ybS+N5Rr8x2YNQqFg/asacWqOSTnlOAOk2d5K6HA79sjdKodkrql7yQ==}
|
|
4269
|
+
|
|
4083
4270
|
'@types/archy@0.0.31':
|
|
4084
4271
|
resolution: {integrity: sha512-v+dxizsFVyXgD3EpFuqT9YjdEjbJmPxNf1QIX9ohZOhxh1ZF2yhqv3vYaeum9lg3VghhxS5S0a6yldN9J9lPEQ==}
|
|
4085
4272
|
|
|
@@ -4275,17 +4462,17 @@ packages:
|
|
|
4275
4462
|
peerDependencies:
|
|
4276
4463
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
4277
4464
|
|
|
4278
|
-
'@vue/compiler-core@3.5.
|
|
4279
|
-
resolution: {integrity: sha512-
|
|
4465
|
+
'@vue/compiler-core@3.5.30':
|
|
4466
|
+
resolution: {integrity: sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==}
|
|
4280
4467
|
|
|
4281
|
-
'@vue/compiler-dom@3.5.
|
|
4282
|
-
resolution: {integrity: sha512-
|
|
4468
|
+
'@vue/compiler-dom@3.5.30':
|
|
4469
|
+
resolution: {integrity: sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==}
|
|
4283
4470
|
|
|
4284
|
-
'@vue/compiler-sfc@3.5.
|
|
4285
|
-
resolution: {integrity: sha512-
|
|
4471
|
+
'@vue/compiler-sfc@3.5.30':
|
|
4472
|
+
resolution: {integrity: sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==}
|
|
4286
4473
|
|
|
4287
|
-
'@vue/compiler-ssr@3.5.
|
|
4288
|
-
resolution: {integrity: sha512-
|
|
4474
|
+
'@vue/compiler-ssr@3.5.30':
|
|
4475
|
+
resolution: {integrity: sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==}
|
|
4289
4476
|
|
|
4290
4477
|
'@vue/reactivity@3.0.5':
|
|
4291
4478
|
resolution: {integrity: sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw==}
|
|
@@ -4293,11 +4480,11 @@ packages:
|
|
|
4293
4480
|
'@vue/shared@3.0.5':
|
|
4294
4481
|
resolution: {integrity: sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw==}
|
|
4295
4482
|
|
|
4296
|
-
'@vue/shared@3.5.
|
|
4297
|
-
resolution: {integrity: sha512-
|
|
4483
|
+
'@vue/shared@3.5.30':
|
|
4484
|
+
resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==}
|
|
4298
4485
|
|
|
4299
|
-
'@weapp-core/escape@
|
|
4300
|
-
resolution: {integrity: sha512-
|
|
4486
|
+
'@weapp-core/escape@7.0.0':
|
|
4487
|
+
resolution: {integrity: sha512-xMiRT/54YCuyXGXC6ozxmoF+wmnnPJNbouRaAhGLl1jBKsLqtkeILYU5/tGDtfJPxwKcQEFeDuaSmnMHaU3myg==}
|
|
4301
4488
|
|
|
4302
4489
|
'@weapp-core/regex@1.0.1':
|
|
4303
4490
|
resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
|
|
@@ -4311,11 +4498,13 @@ packages:
|
|
|
4311
4498
|
peerDependencies:
|
|
4312
4499
|
postcss: ^8.4.38
|
|
4313
4500
|
|
|
4314
|
-
'@weapp-tailwindcss/postcss@2.1.
|
|
4315
|
-
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}
|
|
4316
4504
|
|
|
4317
|
-
'@weapp-tailwindcss/shared@1.1.
|
|
4318
|
-
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}
|
|
4319
4508
|
|
|
4320
4509
|
'@webassemblyjs/ast@1.14.1':
|
|
4321
4510
|
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
|
|
@@ -4517,6 +4706,9 @@ packages:
|
|
|
4517
4706
|
append-field@1.0.0:
|
|
4518
4707
|
resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==}
|
|
4519
4708
|
|
|
4709
|
+
arch@2.2.0:
|
|
4710
|
+
resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
|
|
4711
|
+
|
|
4520
4712
|
archive-type@4.0.0:
|
|
4521
4713
|
resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
|
|
4522
4714
|
engines: {node: '>=4'}
|
|
@@ -4581,6 +4773,10 @@ packages:
|
|
|
4581
4773
|
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
|
|
4582
4774
|
engines: {node: '>= 0.4'}
|
|
4583
4775
|
|
|
4776
|
+
array.prototype.reduce@1.0.8:
|
|
4777
|
+
resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==}
|
|
4778
|
+
engines: {node: '>= 0.4'}
|
|
4779
|
+
|
|
4584
4780
|
array.prototype.tosorted@1.1.4:
|
|
4585
4781
|
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
|
|
4586
4782
|
engines: {node: '>= 0.4'}
|
|
@@ -4976,6 +5172,9 @@ packages:
|
|
|
4976
5172
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
4977
5173
|
engines: {node: '>=8'}
|
|
4978
5174
|
|
|
5175
|
+
binary@0.3.0:
|
|
5176
|
+
resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
|
|
5177
|
+
|
|
4979
5178
|
bindings@1.5.0:
|
|
4980
5179
|
resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
|
|
4981
5180
|
|
|
@@ -4988,6 +5187,9 @@ packages:
|
|
|
4988
5187
|
bl@5.1.0:
|
|
4989
5188
|
resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
|
|
4990
5189
|
|
|
5190
|
+
bluebird@3.4.7:
|
|
5191
|
+
resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
|
|
5192
|
+
|
|
4991
5193
|
bmp-js@0.1.0:
|
|
4992
5194
|
resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
|
|
4993
5195
|
|
|
@@ -5046,6 +5248,10 @@ packages:
|
|
|
5046
5248
|
buffer-from@1.1.2:
|
|
5047
5249
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
5048
5250
|
|
|
5251
|
+
buffer-indexof-polyfill@1.0.2:
|
|
5252
|
+
resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
|
|
5253
|
+
engines: {node: '>=0.10'}
|
|
5254
|
+
|
|
5049
5255
|
buffer@5.6.0:
|
|
5050
5256
|
resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
|
|
5051
5257
|
|
|
@@ -5055,6 +5261,10 @@ packages:
|
|
|
5055
5261
|
buffer@6.0.3:
|
|
5056
5262
|
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
|
5057
5263
|
|
|
5264
|
+
buffers@0.1.1:
|
|
5265
|
+
resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
|
|
5266
|
+
engines: {node: '>=0.2.0'}
|
|
5267
|
+
|
|
5058
5268
|
busboy@1.6.0:
|
|
5059
5269
|
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
|
5060
5270
|
engines: {node: '>=10.16.0'}
|
|
@@ -5134,6 +5344,9 @@ packages:
|
|
|
5134
5344
|
centra@2.7.0:
|
|
5135
5345
|
resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
|
|
5136
5346
|
|
|
5347
|
+
chainsaw@0.1.0:
|
|
5348
|
+
resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
|
|
5349
|
+
|
|
5137
5350
|
chalk@1.1.3:
|
|
5138
5351
|
resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
|
|
5139
5352
|
engines: {node: '>=0.10.0'}
|
|
@@ -5188,6 +5401,9 @@ packages:
|
|
|
5188
5401
|
citty@0.1.6:
|
|
5189
5402
|
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
|
|
5190
5403
|
|
|
5404
|
+
class-variance-authority@0.7.1:
|
|
5405
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
5406
|
+
|
|
5191
5407
|
classnames@2.5.1:
|
|
5192
5408
|
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
|
|
5193
5409
|
|
|
@@ -5232,6 +5448,10 @@ packages:
|
|
|
5232
5448
|
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
|
|
5233
5449
|
engines: {node: '>= 12'}
|
|
5234
5450
|
|
|
5451
|
+
clipboardy@2.3.0:
|
|
5452
|
+
resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==}
|
|
5453
|
+
engines: {node: '>=8'}
|
|
5454
|
+
|
|
5235
5455
|
cliui@6.0.0:
|
|
5236
5456
|
resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
|
|
5237
5457
|
|
|
@@ -5259,6 +5479,10 @@ packages:
|
|
|
5259
5479
|
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
|
|
5260
5480
|
engines: {node: '>=0.8'}
|
|
5261
5481
|
|
|
5482
|
+
clsx@2.1.1:
|
|
5483
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
5484
|
+
engines: {node: '>=6'}
|
|
5485
|
+
|
|
5262
5486
|
code-block-writer@13.0.3:
|
|
5263
5487
|
resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
|
|
5264
5488
|
|
|
@@ -5275,10 +5499,17 @@ packages:
|
|
|
5275
5499
|
color-name@1.1.4:
|
|
5276
5500
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
5277
5501
|
|
|
5502
|
+
color-string@1.9.1:
|
|
5503
|
+
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
|
|
5504
|
+
|
|
5278
5505
|
color-support@1.1.3:
|
|
5279
5506
|
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
|
5280
5507
|
hasBin: true
|
|
5281
5508
|
|
|
5509
|
+
color@4.2.3:
|
|
5510
|
+
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
|
|
5511
|
+
engines: {node: '>=12.5.0'}
|
|
5512
|
+
|
|
5282
5513
|
colord@2.9.3:
|
|
5283
5514
|
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
|
|
5284
5515
|
|
|
@@ -5303,6 +5534,10 @@ packages:
|
|
|
5303
5534
|
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
5304
5535
|
engines: {node: '>= 6'}
|
|
5305
5536
|
|
|
5537
|
+
commander@5.1.0:
|
|
5538
|
+
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
|
|
5539
|
+
engines: {node: '>= 6'}
|
|
5540
|
+
|
|
5306
5541
|
commander@7.2.0:
|
|
5307
5542
|
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
|
|
5308
5543
|
engines: {node: '>= 10'}
|
|
@@ -5444,8 +5679,8 @@ packages:
|
|
|
5444
5679
|
typescript:
|
|
5445
5680
|
optional: true
|
|
5446
5681
|
|
|
5447
|
-
coze-coding-dev-sdk@0.7.
|
|
5448
|
-
resolution: {integrity: sha512-
|
|
5682
|
+
coze-coding-dev-sdk@0.7.16:
|
|
5683
|
+
resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
|
|
5449
5684
|
engines: {node: '>=18.0.0'}
|
|
5450
5685
|
hasBin: true
|
|
5451
5686
|
|
|
@@ -5458,6 +5693,10 @@ packages:
|
|
|
5458
5693
|
resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
|
|
5459
5694
|
engines: {node: '>= 10'}
|
|
5460
5695
|
|
|
5696
|
+
cross-spawn@6.0.6:
|
|
5697
|
+
resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
|
|
5698
|
+
engines: {node: '>=4.8'}
|
|
5699
|
+
|
|
5461
5700
|
cross-spawn@7.0.6:
|
|
5462
5701
|
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
5463
5702
|
engines: {node: '>= 8'}
|
|
@@ -5557,6 +5796,9 @@ packages:
|
|
|
5557
5796
|
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
|
|
5558
5797
|
engines: {node: '>= 0.4'}
|
|
5559
5798
|
|
|
5799
|
+
date-fns@4.1.0:
|
|
5800
|
+
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
|
|
5801
|
+
|
|
5560
5802
|
dateformat@2.2.0:
|
|
5561
5803
|
resolution: {integrity: sha512-GODcnWq3YGoTnygPfi02ygEiRxqUxpJwuRHjdhJYuxpcZmDq4rjBiXYmbCCzStxo176ixfLT6i4NPwQooRySnw==}
|
|
5562
5804
|
|
|
@@ -5580,6 +5822,15 @@ packages:
|
|
|
5580
5822
|
supports-color:
|
|
5581
5823
|
optional: true
|
|
5582
5824
|
|
|
5825
|
+
debug@4.4.0:
|
|
5826
|
+
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
|
|
5827
|
+
engines: {node: '>=6.0'}
|
|
5828
|
+
peerDependencies:
|
|
5829
|
+
supports-color: '*'
|
|
5830
|
+
peerDependenciesMeta:
|
|
5831
|
+
supports-color:
|
|
5832
|
+
optional: true
|
|
5833
|
+
|
|
5583
5834
|
debug@4.4.3:
|
|
5584
5835
|
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
5585
5836
|
engines: {node: '>=6.0'}
|
|
@@ -5641,6 +5892,9 @@ packages:
|
|
|
5641
5892
|
babel-plugin-macros:
|
|
5642
5893
|
optional: true
|
|
5643
5894
|
|
|
5895
|
+
deep-clone@3.0.3:
|
|
5896
|
+
resolution: {integrity: sha512-6jtXIlCBAwr3GP/7Il52clbIFIKAxg/pnNkL4/sE6+Oqb10MXMtm9LDZV2IAuwdaKV9VBm8hlxAFk9r6pF8XRw==}
|
|
5897
|
+
|
|
5644
5898
|
deep-extend@0.6.0:
|
|
5645
5899
|
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
|
5646
5900
|
engines: {node: '>=4.0.0'}
|
|
@@ -5878,12 +6132,18 @@ packages:
|
|
|
5878
6132
|
duplexer2@0.0.2:
|
|
5879
6133
|
resolution: {integrity: sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g==}
|
|
5880
6134
|
|
|
6135
|
+
duplexer2@0.1.4:
|
|
6136
|
+
resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
|
|
6137
|
+
|
|
5881
6138
|
duplexer3@0.1.5:
|
|
5882
6139
|
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
|
|
5883
6140
|
|
|
5884
6141
|
eastasianwidth@0.2.0:
|
|
5885
6142
|
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
|
5886
6143
|
|
|
6144
|
+
easy-table@1.2.0:
|
|
6145
|
+
resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==}
|
|
6146
|
+
|
|
5887
6147
|
ecc-jsbn@0.1.2:
|
|
5888
6148
|
resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
|
|
5889
6149
|
|
|
@@ -5921,6 +6181,10 @@ packages:
|
|
|
5921
6181
|
resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
|
|
5922
6182
|
engines: {node: '>=10.13.0'}
|
|
5923
6183
|
|
|
6184
|
+
enhanced-resolve@5.20.0:
|
|
6185
|
+
resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
|
|
6186
|
+
engines: {node: '>=10.13.0'}
|
|
6187
|
+
|
|
5924
6188
|
entities@2.2.0:
|
|
5925
6189
|
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
|
|
5926
6190
|
|
|
@@ -5928,12 +6192,8 @@ packages:
|
|
|
5928
6192
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
5929
6193
|
engines: {node: '>=0.12'}
|
|
5930
6194
|
|
|
5931
|
-
entities@
|
|
5932
|
-
resolution: {integrity: sha512-
|
|
5933
|
-
engines: {node: '>=0.12'}
|
|
5934
|
-
|
|
5935
|
-
entities@7.0.0:
|
|
5936
|
-
resolution: {integrity: sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==}
|
|
6195
|
+
entities@7.0.1:
|
|
6196
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
5937
6197
|
engines: {node: '>=0.12'}
|
|
5938
6198
|
|
|
5939
6199
|
env-paths@2.2.1:
|
|
@@ -5960,6 +6220,9 @@ packages:
|
|
|
5960
6220
|
resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
|
|
5961
6221
|
engines: {node: '>= 0.4'}
|
|
5962
6222
|
|
|
6223
|
+
es-array-method-boxes-properly@1.0.0:
|
|
6224
|
+
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
|
|
6225
|
+
|
|
5963
6226
|
es-define-property@1.0.1:
|
|
5964
6227
|
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
5965
6228
|
engines: {node: '>= 0.4'}
|
|
@@ -6088,6 +6351,12 @@ packages:
|
|
|
6088
6351
|
peerDependencies:
|
|
6089
6352
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
|
|
6090
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
|
+
|
|
6091
6360
|
eslint-scope@5.1.1:
|
|
6092
6361
|
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
|
|
6093
6362
|
engines: {node: '>=8.0.0'}
|
|
@@ -6174,6 +6443,10 @@ packages:
|
|
|
6174
6443
|
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
6175
6444
|
engines: {node: '>=0.8.x'}
|
|
6176
6445
|
|
|
6446
|
+
execa@1.0.0:
|
|
6447
|
+
resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
|
|
6448
|
+
engines: {node: '>=6'}
|
|
6449
|
+
|
|
6177
6450
|
execa@5.1.1:
|
|
6178
6451
|
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
|
|
6179
6452
|
engines: {node: '>=10'}
|
|
@@ -6222,6 +6495,10 @@ packages:
|
|
|
6222
6495
|
fast-deep-equal@3.1.3:
|
|
6223
6496
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
6224
6497
|
|
|
6498
|
+
fast-glob@3.3.2:
|
|
6499
|
+
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
|
|
6500
|
+
engines: {node: '>=8.6.0'}
|
|
6501
|
+
|
|
6225
6502
|
fast-glob@3.3.3:
|
|
6226
6503
|
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
6227
6504
|
engines: {node: '>=8.6.0'}
|
|
@@ -6366,6 +6643,11 @@ packages:
|
|
|
6366
6643
|
flatted@3.3.3:
|
|
6367
6644
|
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
6368
6645
|
|
|
6646
|
+
folder-hash@4.1.1:
|
|
6647
|
+
resolution: {integrity: sha512-1ZSlKJSbET3XpglnEXC9g+QF4QRZhqHIjpFfa4pAMfO4tu/XYPafpeHEX6zOFS2EolOIXr0lPh1eSjmdWItX2w==}
|
|
6648
|
+
engines: {node: '>=10.10.0'}
|
|
6649
|
+
hasBin: true
|
|
6650
|
+
|
|
6369
6651
|
follow-redirects@1.15.11:
|
|
6370
6652
|
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
|
|
6371
6653
|
engines: {node: '>=4.0'}
|
|
@@ -6426,6 +6708,10 @@ packages:
|
|
|
6426
6708
|
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
|
|
6427
6709
|
engines: {node: '>=12'}
|
|
6428
6710
|
|
|
6711
|
+
fs-extra@11.2.0:
|
|
6712
|
+
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
|
|
6713
|
+
engines: {node: '>=14.14'}
|
|
6714
|
+
|
|
6429
6715
|
fs-extra@11.3.3:
|
|
6430
6716
|
resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
|
|
6431
6717
|
engines: {node: '>=14.14'}
|
|
@@ -6445,6 +6731,11 @@ packages:
|
|
|
6445
6731
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
6446
6732
|
os: [darwin]
|
|
6447
6733
|
|
|
6734
|
+
fstream@1.0.12:
|
|
6735
|
+
resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
|
|
6736
|
+
engines: {node: '>=0.6'}
|
|
6737
|
+
deprecated: This package is no longer supported.
|
|
6738
|
+
|
|
6448
6739
|
function-bind@1.1.2:
|
|
6449
6740
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
6450
6741
|
|
|
@@ -6455,6 +6746,10 @@ packages:
|
|
|
6455
6746
|
functions-have-names@1.2.3:
|
|
6456
6747
|
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
|
6457
6748
|
|
|
6749
|
+
fuse.js@7.1.0:
|
|
6750
|
+
resolution: {integrity: sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==}
|
|
6751
|
+
engines: {node: '>=10'}
|
|
6752
|
+
|
|
6458
6753
|
generator-function@2.0.1:
|
|
6459
6754
|
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
|
|
6460
6755
|
engines: {node: '>= 0.4'}
|
|
@@ -6749,8 +7044,8 @@ packages:
|
|
|
6749
7044
|
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
|
|
6750
7045
|
engines: {node: '>=8'}
|
|
6751
7046
|
|
|
6752
|
-
htmlparser2@10.
|
|
6753
|
-
resolution: {integrity: sha512-
|
|
7047
|
+
htmlparser2@10.1.0:
|
|
7048
|
+
resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==}
|
|
6754
7049
|
|
|
6755
7050
|
http-cache-semantics@3.8.1:
|
|
6756
7051
|
resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
|
|
@@ -6892,6 +7187,9 @@ packages:
|
|
|
6892
7187
|
is-arrayish@0.2.1:
|
|
6893
7188
|
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
|
6894
7189
|
|
|
7190
|
+
is-arrayish@0.3.4:
|
|
7191
|
+
resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
|
|
7192
|
+
|
|
6895
7193
|
is-async-function@2.1.1:
|
|
6896
7194
|
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
|
|
6897
7195
|
engines: {node: '>= 0.4'}
|
|
@@ -6930,6 +7228,11 @@ packages:
|
|
|
6930
7228
|
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
|
|
6931
7229
|
engines: {node: '>= 0.4'}
|
|
6932
7230
|
|
|
7231
|
+
is-docker@2.2.1:
|
|
7232
|
+
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
|
|
7233
|
+
engines: {node: '>=8'}
|
|
7234
|
+
hasBin: true
|
|
7235
|
+
|
|
6933
7236
|
is-extglob@2.1.1:
|
|
6934
7237
|
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
6935
7238
|
engines: {node: '>=0.10.0'}
|
|
@@ -7083,6 +7386,10 @@ packages:
|
|
|
7083
7386
|
is-what@3.14.1:
|
|
7084
7387
|
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
|
|
7085
7388
|
|
|
7389
|
+
is-wsl@2.2.0:
|
|
7390
|
+
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
|
|
7391
|
+
engines: {node: '>=8'}
|
|
7392
|
+
|
|
7086
7393
|
isarray@0.0.1:
|
|
7087
7394
|
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
|
|
7088
7395
|
|
|
@@ -7322,30 +7629,60 @@ packages:
|
|
|
7322
7629
|
cpu: [arm64]
|
|
7323
7630
|
os: [android]
|
|
7324
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
|
+
|
|
7325
7638
|
lightningcss-darwin-arm64@1.30.2:
|
|
7326
7639
|
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
|
|
7327
7640
|
engines: {node: '>= 12.0.0'}
|
|
7328
7641
|
cpu: [arm64]
|
|
7329
7642
|
os: [darwin]
|
|
7330
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
|
+
|
|
7331
7650
|
lightningcss-darwin-x64@1.30.2:
|
|
7332
7651
|
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
|
|
7333
7652
|
engines: {node: '>= 12.0.0'}
|
|
7334
7653
|
cpu: [x64]
|
|
7335
7654
|
os: [darwin]
|
|
7336
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
|
+
|
|
7337
7662
|
lightningcss-freebsd-x64@1.30.2:
|
|
7338
7663
|
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
|
|
7339
7664
|
engines: {node: '>= 12.0.0'}
|
|
7340
7665
|
cpu: [x64]
|
|
7341
7666
|
os: [freebsd]
|
|
7342
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
|
+
|
|
7343
7674
|
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
7344
7675
|
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
|
|
7345
7676
|
engines: {node: '>= 12.0.0'}
|
|
7346
7677
|
cpu: [arm]
|
|
7347
7678
|
os: [linux]
|
|
7348
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
|
+
|
|
7349
7686
|
lightningcss-linux-arm64-gnu@1.30.2:
|
|
7350
7687
|
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
|
|
7351
7688
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7353,6 +7690,13 @@ packages:
|
|
|
7353
7690
|
os: [linux]
|
|
7354
7691
|
libc: [glibc]
|
|
7355
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
|
+
|
|
7356
7700
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
7357
7701
|
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
7358
7702
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7360,6 +7704,13 @@ packages:
|
|
|
7360
7704
|
os: [linux]
|
|
7361
7705
|
libc: [musl]
|
|
7362
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
|
+
|
|
7363
7714
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
7364
7715
|
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
7365
7716
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7367,6 +7718,13 @@ packages:
|
|
|
7367
7718
|
os: [linux]
|
|
7368
7719
|
libc: [glibc]
|
|
7369
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
|
+
|
|
7370
7728
|
lightningcss-linux-x64-musl@1.30.2:
|
|
7371
7729
|
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
7372
7730
|
engines: {node: '>= 12.0.0'}
|
|
@@ -7374,22 +7732,45 @@ packages:
|
|
|
7374
7732
|
os: [linux]
|
|
7375
7733
|
libc: [musl]
|
|
7376
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
|
+
|
|
7377
7742
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
7378
7743
|
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
7379
7744
|
engines: {node: '>= 12.0.0'}
|
|
7380
7745
|
cpu: [arm64]
|
|
7381
7746
|
os: [win32]
|
|
7382
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
|
+
|
|
7383
7754
|
lightningcss-win32-x64-msvc@1.30.2:
|
|
7384
7755
|
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
|
|
7385
7756
|
engines: {node: '>= 12.0.0'}
|
|
7386
7757
|
cpu: [x64]
|
|
7387
7758
|
os: [win32]
|
|
7388
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
|
+
|
|
7389
7766
|
lightningcss@1.30.2:
|
|
7390
7767
|
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
|
|
7391
7768
|
engines: {node: '>= 12.0.0'}
|
|
7392
7769
|
|
|
7770
|
+
lightningcss@1.31.1:
|
|
7771
|
+
resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
|
|
7772
|
+
engines: {node: '>= 12.0.0'}
|
|
7773
|
+
|
|
7393
7774
|
lilconfig@2.1.0:
|
|
7394
7775
|
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
|
7395
7776
|
engines: {node: '>=10'}
|
|
@@ -7406,6 +7787,9 @@ packages:
|
|
|
7406
7787
|
engines: {node: '>=20.17'}
|
|
7407
7788
|
hasBin: true
|
|
7408
7789
|
|
|
7790
|
+
listenercount@1.0.1:
|
|
7791
|
+
resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
|
|
7792
|
+
|
|
7409
7793
|
listr2@9.0.5:
|
|
7410
7794
|
resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
|
|
7411
7795
|
engines: {node: '>=20.0.0'}
|
|
@@ -7582,10 +7966,12 @@ packages:
|
|
|
7582
7966
|
lru-cache@5.1.1:
|
|
7583
7967
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
7584
7968
|
|
|
7585
|
-
lucide-react@
|
|
7586
|
-
resolution: {integrity: sha512-
|
|
7969
|
+
lucide-react-taro@1.3.0:
|
|
7970
|
+
resolution: {integrity: sha512-fx3u8ivLkwpdiv6WEARDcd9lK+CAzsyfY0kSwXqi0IxTWbWWChQoJymAMxSI9KtEpBf1LixiLnxmdrtKDoCf5Q==}
|
|
7971
|
+
hasBin: true
|
|
7587
7972
|
peerDependencies:
|
|
7588
|
-
|
|
7973
|
+
'@tarojs/components': '>=3.0.0'
|
|
7974
|
+
react: '>=16.8.0'
|
|
7589
7975
|
|
|
7590
7976
|
magic-string@0.30.21:
|
|
7591
7977
|
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
@@ -7719,6 +8105,10 @@ packages:
|
|
|
7719
8105
|
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
|
|
7720
8106
|
engines: {node: '>=10'}
|
|
7721
8107
|
|
|
8108
|
+
minimatch@7.4.6:
|
|
8109
|
+
resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
|
|
8110
|
+
engines: {node: '>=10'}
|
|
8111
|
+
|
|
7722
8112
|
minimatch@9.0.3:
|
|
7723
8113
|
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
|
|
7724
8114
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
@@ -7837,6 +8227,9 @@ packages:
|
|
|
7837
8227
|
resolution: {integrity: sha512-P6qw6kenNXP+J9XlKJNi/MNHUQ+Lx5K8FEcSfX7/w8KJdZan5+BB5MKzuNgL2RTjHG1Svg8SehfseVEp8zAqwA==}
|
|
7838
8228
|
engines: {node: '>=6.0.0'}
|
|
7839
8229
|
|
|
8230
|
+
nice-try@1.0.5:
|
|
8231
|
+
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
|
|
8232
|
+
|
|
7840
8233
|
no-case@2.3.2:
|
|
7841
8234
|
resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
|
|
7842
8235
|
|
|
@@ -7872,6 +8265,9 @@ packages:
|
|
|
7872
8265
|
encoding:
|
|
7873
8266
|
optional: true
|
|
7874
8267
|
|
|
8268
|
+
node-machine-id@1.1.12:
|
|
8269
|
+
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
|
|
8270
|
+
|
|
7875
8271
|
node-releases@2.0.27:
|
|
7876
8272
|
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
7877
8273
|
|
|
@@ -7901,6 +8297,10 @@ packages:
|
|
|
7901
8297
|
npm-normalize-package-bin@1.0.1:
|
|
7902
8298
|
resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
|
|
7903
8299
|
|
|
8300
|
+
npm-run-path@2.0.2:
|
|
8301
|
+
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
|
|
8302
|
+
engines: {node: '>=4'}
|
|
8303
|
+
|
|
7904
8304
|
npm-run-path@4.0.1:
|
|
7905
8305
|
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
|
7906
8306
|
engines: {node: '>=8'}
|
|
@@ -7944,6 +8344,10 @@ packages:
|
|
|
7944
8344
|
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
|
|
7945
8345
|
engines: {node: '>= 0.4'}
|
|
7946
8346
|
|
|
8347
|
+
object.getownpropertydescriptors@2.1.9:
|
|
8348
|
+
resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==}
|
|
8349
|
+
engines: {node: '>= 0.4'}
|
|
8350
|
+
|
|
7947
8351
|
object.groupby@1.0.3:
|
|
7948
8352
|
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
|
|
7949
8353
|
engines: {node: '>= 0.4'}
|
|
@@ -8143,6 +8547,10 @@ packages:
|
|
|
8143
8547
|
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
8144
8548
|
engines: {node: '>=0.10.0'}
|
|
8145
8549
|
|
|
8550
|
+
path-key@2.0.1:
|
|
8551
|
+
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
|
|
8552
|
+
engines: {node: '>=4'}
|
|
8553
|
+
|
|
8146
8554
|
path-key@3.1.1:
|
|
8147
8555
|
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
8148
8556
|
engines: {node: '>=8'}
|
|
@@ -8186,6 +8594,9 @@ packages:
|
|
|
8186
8594
|
performance-now@2.1.0:
|
|
8187
8595
|
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
|
|
8188
8596
|
|
|
8597
|
+
pg-cloudflare@1.3.0:
|
|
8598
|
+
resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
|
|
8599
|
+
|
|
8189
8600
|
pg-connection-string@2.10.1:
|
|
8190
8601
|
resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
|
|
8191
8602
|
|
|
@@ -8645,8 +9056,8 @@ packages:
|
|
|
8645
9056
|
peerDependencies:
|
|
8646
9057
|
postcss: ^8
|
|
8647
9058
|
|
|
8648
|
-
postcss-plugin-shared@1.
|
|
8649
|
-
resolution: {integrity: sha512-
|
|
9059
|
+
postcss-plugin-shared@1.1.1:
|
|
9060
|
+
resolution: {integrity: sha512-ucByjwfw3SJXo3NFDy6aF264cnSxOL5gFYMfDz9U/CD97+pT2KSryZ8DmVviWnI1ofJL71y2DhParq1zoS4hcw==}
|
|
8650
9061
|
peerDependencies:
|
|
8651
9062
|
postcss: ^8
|
|
8652
9063
|
|
|
@@ -8662,8 +9073,8 @@ packages:
|
|
|
8662
9073
|
peerDependencies:
|
|
8663
9074
|
postcss: ^8.4
|
|
8664
9075
|
|
|
8665
|
-
postcss-pxtrans@1.0.
|
|
8666
|
-
resolution: {integrity: sha512-
|
|
9076
|
+
postcss-pxtrans@1.0.1:
|
|
9077
|
+
resolution: {integrity: sha512-oNxhcSbbhkfhgJP/E0JJHIuQs8asqAuD1FqFT4VFF7xhkBmKKTIM08T7WIRHo9rjod8E4PR/CuOxtcWjftufcg==}
|
|
8667
9078
|
peerDependencies:
|
|
8668
9079
|
postcss: ^8
|
|
8669
9080
|
|
|
@@ -8685,8 +9096,8 @@ packages:
|
|
|
8685
9096
|
peerDependencies:
|
|
8686
9097
|
postcss: ^8.2.15
|
|
8687
9098
|
|
|
8688
|
-
postcss-rem-to-responsive-pixel@7.0.
|
|
8689
|
-
resolution: {integrity: sha512-
|
|
9099
|
+
postcss-rem-to-responsive-pixel@7.0.1:
|
|
9100
|
+
resolution: {integrity: sha512-enzOmpYK8RHTOL7Y9o3AsSRnYqigGu4OZbDmpP7dUsRRIpyqS1h3hKZHHH5B+WJRyw58DRSAFuicM0uc/2GRJQ==}
|
|
8690
9101
|
engines: {node: '>=16.6.0'}
|
|
8691
9102
|
peerDependencies:
|
|
8692
9103
|
postcss: ^8
|
|
@@ -8731,6 +9142,11 @@ packages:
|
|
|
8731
9142
|
peerDependencies:
|
|
8732
9143
|
postcss: ^8.2.15
|
|
8733
9144
|
|
|
9145
|
+
postcss-units-to-px@0.2.0:
|
|
9146
|
+
resolution: {integrity: sha512-IN0zGe3JnOJvbFQRlUeSr1icsjQbFwHuso3IfhzCuILb+z9aj+0Nlzka5Q/A5Ulnh9Cd8mEs1Rfl7NxQdw+6iA==}
|
|
9147
|
+
peerDependencies:
|
|
9148
|
+
postcss: ^8
|
|
9149
|
+
|
|
8734
9150
|
postcss-value-parser@4.2.0:
|
|
8735
9151
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
8736
9152
|
|
|
@@ -8738,6 +9154,10 @@ packages:
|
|
|
8738
9154
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
8739
9155
|
engines: {node: ^10 || ^12 || >=14}
|
|
8740
9156
|
|
|
9157
|
+
postcss@8.5.8:
|
|
9158
|
+
resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
|
|
9159
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
9160
|
+
|
|
8741
9161
|
postgres-array@2.0.0:
|
|
8742
9162
|
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
|
|
8743
9163
|
engines: {node: '>=4'}
|
|
@@ -8927,6 +9347,10 @@ packages:
|
|
|
8927
9347
|
resolution: {integrity: sha512-2CNoRoh95LxY47LvqrehIAfUVda2JbuFE/HaGYs42bNrGG+ojbw1h3zOcPcQ+1GQ3+rkzNndZn85u1XyZ3UsIA==}
|
|
8928
9348
|
deprecated: The functionality that this package provided is now in @npmcli/arborist
|
|
8929
9349
|
|
|
9350
|
+
read-package-tree@5.3.1:
|
|
9351
|
+
resolution: {integrity: sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw==}
|
|
9352
|
+
deprecated: The functionality that this package provided is now in @npmcli/arborist
|
|
9353
|
+
|
|
8930
9354
|
readable-stream@1.1.14:
|
|
8931
9355
|
resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
|
|
8932
9356
|
|
|
@@ -9112,6 +9536,11 @@ packages:
|
|
|
9112
9536
|
rfdc@1.4.1:
|
|
9113
9537
|
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
9114
9538
|
|
|
9539
|
+
rimraf@2.7.1:
|
|
9540
|
+
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
|
|
9541
|
+
deprecated: Rimraf versions prior to v4 are no longer supported
|
|
9542
|
+
hasBin: true
|
|
9543
|
+
|
|
9115
9544
|
rimraf@3.0.2:
|
|
9116
9545
|
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
|
9117
9546
|
deprecated: Rimraf versions prior to v4 are no longer supported
|
|
@@ -9197,6 +9626,9 @@ packages:
|
|
|
9197
9626
|
resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
|
|
9198
9627
|
hasBin: true
|
|
9199
9628
|
|
|
9629
|
+
semver-compare@1.0.0:
|
|
9630
|
+
resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
|
|
9631
|
+
|
|
9200
9632
|
semver@5.7.2:
|
|
9201
9633
|
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
|
|
9202
9634
|
hasBin: true
|
|
@@ -9210,6 +9642,11 @@ packages:
|
|
|
9210
9642
|
engines: {node: '>=10'}
|
|
9211
9643
|
hasBin: true
|
|
9212
9644
|
|
|
9645
|
+
semver@7.7.4:
|
|
9646
|
+
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
9647
|
+
engines: {node: '>=10'}
|
|
9648
|
+
hasBin: true
|
|
9649
|
+
|
|
9213
9650
|
send@0.19.0:
|
|
9214
9651
|
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
|
|
9215
9652
|
engines: {node: '>= 0.8.0'}
|
|
@@ -9271,10 +9708,22 @@ packages:
|
|
|
9271
9708
|
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
|
|
9272
9709
|
engines: {node: '>=8'}
|
|
9273
9710
|
|
|
9711
|
+
sharp@0.33.5:
|
|
9712
|
+
resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
|
|
9713
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
9714
|
+
|
|
9715
|
+
shebang-command@1.2.0:
|
|
9716
|
+
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
|
|
9717
|
+
engines: {node: '>=0.10.0'}
|
|
9718
|
+
|
|
9274
9719
|
shebang-command@2.0.0:
|
|
9275
9720
|
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
9276
9721
|
engines: {node: '>=8'}
|
|
9277
9722
|
|
|
9723
|
+
shebang-regex@1.0.0:
|
|
9724
|
+
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
|
|
9725
|
+
engines: {node: '>=0.10.0'}
|
|
9726
|
+
|
|
9278
9727
|
shebang-regex@3.0.0:
|
|
9279
9728
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
9280
9729
|
engines: {node: '>=8'}
|
|
@@ -9320,6 +9769,9 @@ packages:
|
|
|
9320
9769
|
simple-plist@1.3.1:
|
|
9321
9770
|
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
|
|
9322
9771
|
|
|
9772
|
+
simple-swizzle@0.2.4:
|
|
9773
|
+
resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
|
|
9774
|
+
|
|
9323
9775
|
simple-wcswidth@1.1.2:
|
|
9324
9776
|
resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
|
|
9325
9777
|
|
|
@@ -9523,6 +9975,10 @@ packages:
|
|
|
9523
9975
|
strip-dirs@2.1.0:
|
|
9524
9976
|
resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
|
|
9525
9977
|
|
|
9978
|
+
strip-eof@1.0.0:
|
|
9979
|
+
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
|
|
9980
|
+
engines: {node: '>=0.10.0'}
|
|
9981
|
+
|
|
9526
9982
|
strip-final-newline@2.0.0:
|
|
9527
9983
|
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
|
9528
9984
|
engines: {node: '>=6'}
|
|
@@ -9626,11 +10082,20 @@ packages:
|
|
|
9626
10082
|
resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
|
|
9627
10083
|
engines: {node: '>=10.0.0'}
|
|
9628
10084
|
|
|
9629
|
-
|
|
9630
|
-
resolution: {integrity: sha512-
|
|
10085
|
+
tailwind-merge@3.5.0:
|
|
10086
|
+
resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
|
|
9631
10087
|
|
|
9632
|
-
tailwindcss-
|
|
9633
|
-
resolution: {integrity: sha512-
|
|
10088
|
+
tailwindcss-animate@1.0.7:
|
|
10089
|
+
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
|
|
10090
|
+
peerDependencies:
|
|
10091
|
+
tailwindcss: '>=3.0.0 || insiders'
|
|
10092
|
+
|
|
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==}
|
|
9634
10099
|
hasBin: true
|
|
9635
10100
|
peerDependencies:
|
|
9636
10101
|
tailwindcss: '>=2.0.0'
|
|
@@ -9641,6 +10106,9 @@ packages:
|
|
|
9641
10106
|
tailwindcss@4.1.18:
|
|
9642
10107
|
resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
|
|
9643
10108
|
|
|
10109
|
+
tailwindcss@4.2.1:
|
|
10110
|
+
resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
|
|
10111
|
+
|
|
9644
10112
|
tapable@2.3.0:
|
|
9645
10113
|
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
9646
10114
|
engines: {node: '>=6'}
|
|
@@ -9681,6 +10149,11 @@ packages:
|
|
|
9681
10149
|
engines: {node: '>=6.0.0'}
|
|
9682
10150
|
hasBin: true
|
|
9683
10151
|
|
|
10152
|
+
terser@5.26.0:
|
|
10153
|
+
resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
|
|
10154
|
+
engines: {node: '>=10'}
|
|
10155
|
+
hasBin: true
|
|
10156
|
+
|
|
9684
10157
|
terser@5.44.1:
|
|
9685
10158
|
resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
|
|
9686
10159
|
engines: {node: '>=10'}
|
|
@@ -9776,6 +10249,9 @@ packages:
|
|
|
9776
10249
|
tr46@0.0.3:
|
|
9777
10250
|
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
|
|
9778
10251
|
|
|
10252
|
+
traverse@0.3.9:
|
|
10253
|
+
resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
|
|
10254
|
+
|
|
9779
10255
|
tree-kill@1.2.2:
|
|
9780
10256
|
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
|
9781
10257
|
hasBin: true
|
|
@@ -9817,6 +10293,10 @@ packages:
|
|
|
9817
10293
|
tslib@2.8.1:
|
|
9818
10294
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
9819
10295
|
|
|
10296
|
+
tt-ide-cli@0.1.31:
|
|
10297
|
+
resolution: {integrity: sha512-1MTL9cG2EYwPWzv6JY+quNHhcjbtV/gfp760zsKWsZZ/19qGGu0eJI6jBrO/rlzr8BWf3QPzGjLsH3oA2WJrdQ==}
|
|
10298
|
+
hasBin: true
|
|
10299
|
+
|
|
9820
10300
|
tunnel-agent@0.6.0:
|
|
9821
10301
|
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
|
|
9822
10302
|
|
|
@@ -9941,6 +10421,9 @@ packages:
|
|
|
9941
10421
|
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
|
|
9942
10422
|
engines: {node: '>= 0.8'}
|
|
9943
10423
|
|
|
10424
|
+
unzipper@0.10.14:
|
|
10425
|
+
resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
|
|
10426
|
+
|
|
9944
10427
|
update-browserslist-db@1.2.3:
|
|
9945
10428
|
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
9946
10429
|
hasBin: true
|
|
@@ -9976,6 +10459,9 @@ packages:
|
|
|
9976
10459
|
util-deprecate@1.0.2:
|
|
9977
10460
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
9978
10461
|
|
|
10462
|
+
util-promisify@2.1.0:
|
|
10463
|
+
resolution: {integrity: sha512-K+5eQPYs14b3+E+hmE2J6gCZ4JmMl9DbYS6BeP2CHq6WMuNxErxf5B/n0fz85L8zUuoO6rIzNNmIQDu/j+1OcA==}
|
|
10464
|
+
|
|
9979
10465
|
utils-merge@1.0.1:
|
|
9980
10466
|
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
|
|
9981
10467
|
engines: {node: '>= 0.4.0'}
|
|
@@ -10052,9 +10538,9 @@ packages:
|
|
|
10052
10538
|
wcwidth@1.0.1:
|
|
10053
10539
|
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
|
|
10054
10540
|
|
|
10055
|
-
weapp-tailwindcss@4.
|
|
10056
|
-
resolution: {integrity: sha512-
|
|
10057
|
-
engines: {node: ^
|
|
10541
|
+
weapp-tailwindcss@4.10.3:
|
|
10542
|
+
resolution: {integrity: sha512-G8Em6CGt/9P7r8rV2mIqnC0OCl6UStzR0XV+55y4Z45x7W1Xxy2dj8PICJ8OJaVoJ8VNR8jXYrlNWQxqLRWQKg==}
|
|
10543
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
10058
10544
|
hasBin: true
|
|
10059
10545
|
|
|
10060
10546
|
webidl-conversions@3.0.1:
|
|
@@ -10072,6 +10558,10 @@ packages:
|
|
|
10072
10558
|
resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
|
|
10073
10559
|
engines: {node: '>=10.13.0'}
|
|
10074
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
|
+
|
|
10075
10565
|
webpack@5.97.1:
|
|
10076
10566
|
resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
|
|
10077
10567
|
engines: {node: '>=10.13.0'}
|
|
@@ -10815,6 +11305,12 @@ snapshots:
|
|
|
10815
11305
|
js-tokens: 4.0.0
|
|
10816
11306
|
picocolors: 1.1.1
|
|
10817
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
|
+
|
|
10818
11314
|
'@babel/compat-data@7.22.9': {}
|
|
10819
11315
|
|
|
10820
11316
|
'@babel/compat-data@7.28.5': {}
|
|
@@ -10822,15 +11318,15 @@ snapshots:
|
|
|
10822
11318
|
'@babel/core@7.21.4':
|
|
10823
11319
|
dependencies:
|
|
10824
11320
|
'@ampproject/remapping': 2.3.0
|
|
10825
|
-
'@babel/code-frame': 7.
|
|
10826
|
-
'@babel/generator': 7.
|
|
11321
|
+
'@babel/code-frame': 7.27.1
|
|
11322
|
+
'@babel/generator': 7.28.5
|
|
10827
11323
|
'@babel/helper-compilation-targets': 7.22.10
|
|
10828
11324
|
'@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
|
|
10829
11325
|
'@babel/helpers': 7.21.0
|
|
10830
|
-
'@babel/parser': 7.
|
|
10831
|
-
'@babel/template': 7.
|
|
10832
|
-
'@babel/traverse': 7.
|
|
10833
|
-
'@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
|
|
10834
11330
|
convert-source-map: 1.9.0
|
|
10835
11331
|
debug: 4.4.3
|
|
10836
11332
|
gensync: 1.0.0-beta.2
|
|
@@ -10877,7 +11373,7 @@ snapshots:
|
|
|
10877
11373
|
|
|
10878
11374
|
'@babel/generator@7.21.4':
|
|
10879
11375
|
dependencies:
|
|
10880
|
-
'@babel/types': 7.
|
|
11376
|
+
'@babel/types': 7.28.6
|
|
10881
11377
|
'@jridgewell/gen-mapping': 0.3.13
|
|
10882
11378
|
'@jridgewell/trace-mapping': 0.3.31
|
|
10883
11379
|
jsesc: 2.5.2
|
|
@@ -10897,9 +11393,17 @@ snapshots:
|
|
|
10897
11393
|
'@jridgewell/trace-mapping': 0.3.31
|
|
10898
11394
|
jsesc: 3.1.0
|
|
10899
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
|
+
|
|
10900
11404
|
'@babel/helper-annotate-as-pure@7.22.5':
|
|
10901
11405
|
dependencies:
|
|
10902
|
-
'@babel/types': 7.
|
|
11406
|
+
'@babel/types': 7.28.6
|
|
10903
11407
|
|
|
10904
11408
|
'@babel/helper-annotate-as-pure@7.27.3':
|
|
10905
11409
|
dependencies:
|
|
@@ -10907,7 +11411,7 @@ snapshots:
|
|
|
10907
11411
|
|
|
10908
11412
|
'@babel/helper-builder-binary-assignment-operator-visitor@7.22.10':
|
|
10909
11413
|
dependencies:
|
|
10910
|
-
'@babel/types': 7.
|
|
11414
|
+
'@babel/types': 7.28.6
|
|
10911
11415
|
|
|
10912
11416
|
'@babel/helper-compilation-targets@7.22.10':
|
|
10913
11417
|
dependencies:
|
|
@@ -10997,7 +11501,7 @@ snapshots:
|
|
|
10997
11501
|
'@babel/helper-function-name@7.22.5':
|
|
10998
11502
|
dependencies:
|
|
10999
11503
|
'@babel/template': 7.27.2
|
|
11000
|
-
'@babel/types': 7.
|
|
11504
|
+
'@babel/types': 7.28.6
|
|
11001
11505
|
|
|
11002
11506
|
'@babel/helper-function-name@7.24.7':
|
|
11003
11507
|
dependencies:
|
|
@@ -11008,7 +11512,7 @@ snapshots:
|
|
|
11008
11512
|
|
|
11009
11513
|
'@babel/helper-hoist-variables@7.22.5':
|
|
11010
11514
|
dependencies:
|
|
11011
|
-
'@babel/types': 7.
|
|
11515
|
+
'@babel/types': 7.28.6
|
|
11012
11516
|
|
|
11013
11517
|
'@babel/helper-hoist-variables@7.24.7':
|
|
11014
11518
|
dependencies:
|
|
@@ -11016,7 +11520,7 @@ snapshots:
|
|
|
11016
11520
|
|
|
11017
11521
|
'@babel/helper-member-expression-to-functions@7.22.5':
|
|
11018
11522
|
dependencies:
|
|
11019
|
-
'@babel/types': 7.
|
|
11523
|
+
'@babel/types': 7.28.6
|
|
11020
11524
|
|
|
11021
11525
|
'@babel/helper-member-expression-to-functions@7.28.5':
|
|
11022
11526
|
dependencies:
|
|
@@ -11031,7 +11535,7 @@ snapshots:
|
|
|
11031
11535
|
|
|
11032
11536
|
'@babel/helper-module-imports@7.21.4':
|
|
11033
11537
|
dependencies:
|
|
11034
|
-
'@babel/types': 7.
|
|
11538
|
+
'@babel/types': 7.28.6
|
|
11035
11539
|
|
|
11036
11540
|
'@babel/helper-module-imports@7.27.1':
|
|
11037
11541
|
dependencies:
|
|
@@ -11047,7 +11551,7 @@ snapshots:
|
|
|
11047
11551
|
'@babel/helper-module-imports': 7.27.1
|
|
11048
11552
|
'@babel/helper-simple-access': 7.22.5
|
|
11049
11553
|
'@babel/helper-split-export-declaration': 7.22.6
|
|
11050
|
-
'@babel/helper-validator-identifier': 7.
|
|
11554
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11051
11555
|
transitivePeerDependencies:
|
|
11052
11556
|
- supports-color
|
|
11053
11557
|
|
|
@@ -11062,7 +11566,7 @@ snapshots:
|
|
|
11062
11566
|
|
|
11063
11567
|
'@babel/helper-optimise-call-expression@7.22.5':
|
|
11064
11568
|
dependencies:
|
|
11065
|
-
'@babel/types': 7.
|
|
11569
|
+
'@babel/types': 7.28.6
|
|
11066
11570
|
|
|
11067
11571
|
'@babel/helper-optimise-call-expression@7.27.1':
|
|
11068
11572
|
dependencies:
|
|
@@ -11106,11 +11610,11 @@ snapshots:
|
|
|
11106
11610
|
|
|
11107
11611
|
'@babel/helper-simple-access@7.22.5':
|
|
11108
11612
|
dependencies:
|
|
11109
|
-
'@babel/types': 7.
|
|
11613
|
+
'@babel/types': 7.28.6
|
|
11110
11614
|
|
|
11111
11615
|
'@babel/helper-skip-transparent-expression-wrappers@7.24.6':
|
|
11112
11616
|
dependencies:
|
|
11113
|
-
'@babel/types': 7.
|
|
11617
|
+
'@babel/types': 7.28.6
|
|
11114
11618
|
|
|
11115
11619
|
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
|
|
11116
11620
|
dependencies:
|
|
@@ -11121,7 +11625,7 @@ snapshots:
|
|
|
11121
11625
|
|
|
11122
11626
|
'@babel/helper-split-export-declaration@7.22.6':
|
|
11123
11627
|
dependencies:
|
|
11124
|
-
'@babel/types': 7.
|
|
11628
|
+
'@babel/types': 7.28.6
|
|
11125
11629
|
|
|
11126
11630
|
'@babel/helper-split-export-declaration@7.24.7':
|
|
11127
11631
|
dependencies:
|
|
@@ -11143,7 +11647,7 @@ snapshots:
|
|
|
11143
11647
|
dependencies:
|
|
11144
11648
|
'@babel/helper-function-name': 7.22.5
|
|
11145
11649
|
'@babel/template': 7.27.2
|
|
11146
|
-
'@babel/types': 7.
|
|
11650
|
+
'@babel/types': 7.28.6
|
|
11147
11651
|
|
|
11148
11652
|
'@babel/helper-wrap-function@7.28.3':
|
|
11149
11653
|
dependencies:
|
|
@@ -11155,9 +11659,9 @@ snapshots:
|
|
|
11155
11659
|
|
|
11156
11660
|
'@babel/helpers@7.21.0':
|
|
11157
11661
|
dependencies:
|
|
11158
|
-
'@babel/template': 7.
|
|
11159
|
-
'@babel/traverse': 7.
|
|
11160
|
-
'@babel/types': 7.
|
|
11662
|
+
'@babel/template': 7.27.2
|
|
11663
|
+
'@babel/traverse': 7.28.5
|
|
11664
|
+
'@babel/types': 7.28.6
|
|
11161
11665
|
transitivePeerDependencies:
|
|
11162
11666
|
- supports-color
|
|
11163
11667
|
|
|
@@ -11168,13 +11672,13 @@ snapshots:
|
|
|
11168
11672
|
|
|
11169
11673
|
'@babel/highlight@7.22.10':
|
|
11170
11674
|
dependencies:
|
|
11171
|
-
'@babel/helper-validator-identifier': 7.
|
|
11675
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11172
11676
|
chalk: 2.4.2
|
|
11173
11677
|
js-tokens: 4.0.0
|
|
11174
11678
|
|
|
11175
11679
|
'@babel/parser@7.21.4':
|
|
11176
11680
|
dependencies:
|
|
11177
|
-
'@babel/types': 7.
|
|
11681
|
+
'@babel/types': 7.28.6
|
|
11178
11682
|
|
|
11179
11683
|
'@babel/parser@7.24.4':
|
|
11180
11684
|
dependencies:
|
|
@@ -11184,6 +11688,10 @@ snapshots:
|
|
|
11184
11688
|
dependencies:
|
|
11185
11689
|
'@babel/types': 7.28.6
|
|
11186
11690
|
|
|
11691
|
+
'@babel/parser@7.29.0':
|
|
11692
|
+
dependencies:
|
|
11693
|
+
'@babel/types': 7.29.0
|
|
11694
|
+
|
|
11187
11695
|
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.5)':
|
|
11188
11696
|
dependencies:
|
|
11189
11697
|
'@babel/core': 7.28.5
|
|
@@ -11831,7 +12339,7 @@ snapshots:
|
|
|
11831
12339
|
'@babel/helper-hoist-variables': 7.22.5
|
|
11832
12340
|
'@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4)
|
|
11833
12341
|
'@babel/helper-plugin-utils': 7.24.6
|
|
11834
|
-
'@babel/helper-validator-identifier': 7.
|
|
12342
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
11835
12343
|
transitivePeerDependencies:
|
|
11836
12344
|
- supports-color
|
|
11837
12345
|
|
|
@@ -12244,7 +12752,7 @@ snapshots:
|
|
|
12244
12752
|
'@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4)
|
|
12245
12753
|
'@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4)
|
|
12246
12754
|
'@babel/preset-modules': 0.1.6(@babel/core@7.21.4)
|
|
12247
|
-
'@babel/types': 7.
|
|
12755
|
+
'@babel/types': 7.28.6
|
|
12248
12756
|
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4)
|
|
12249
12757
|
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4)
|
|
12250
12758
|
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4)
|
|
@@ -12335,7 +12843,7 @@ snapshots:
|
|
|
12335
12843
|
'@babel/helper-plugin-utils': 7.24.6
|
|
12336
12844
|
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4)
|
|
12337
12845
|
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4)
|
|
12338
|
-
'@babel/types': 7.
|
|
12846
|
+
'@babel/types': 7.28.6
|
|
12339
12847
|
esutils: 2.0.3
|
|
12340
12848
|
|
|
12341
12849
|
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.5)':
|
|
@@ -12382,9 +12890,9 @@ snapshots:
|
|
|
12382
12890
|
|
|
12383
12891
|
'@babel/template@7.20.7':
|
|
12384
12892
|
dependencies:
|
|
12385
|
-
'@babel/code-frame': 7.
|
|
12386
|
-
'@babel/parser': 7.
|
|
12387
|
-
'@babel/types': 7.
|
|
12893
|
+
'@babel/code-frame': 7.27.1
|
|
12894
|
+
'@babel/parser': 7.28.5
|
|
12895
|
+
'@babel/types': 7.28.6
|
|
12388
12896
|
|
|
12389
12897
|
'@babel/template@7.27.2':
|
|
12390
12898
|
dependencies:
|
|
@@ -12392,16 +12900,22 @@ snapshots:
|
|
|
12392
12900
|
'@babel/parser': 7.28.5
|
|
12393
12901
|
'@babel/types': 7.28.6
|
|
12394
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
|
+
|
|
12395
12909
|
'@babel/traverse@7.21.4':
|
|
12396
12910
|
dependencies:
|
|
12397
|
-
'@babel/code-frame': 7.
|
|
12398
|
-
'@babel/generator': 7.
|
|
12911
|
+
'@babel/code-frame': 7.27.1
|
|
12912
|
+
'@babel/generator': 7.28.5
|
|
12399
12913
|
'@babel/helper-environment-visitor': 7.22.5
|
|
12400
12914
|
'@babel/helper-function-name': 7.22.5
|
|
12401
12915
|
'@babel/helper-hoist-variables': 7.22.5
|
|
12402
12916
|
'@babel/helper-split-export-declaration': 7.22.6
|
|
12403
|
-
'@babel/parser': 7.
|
|
12404
|
-
'@babel/types': 7.
|
|
12917
|
+
'@babel/parser': 7.28.5
|
|
12918
|
+
'@babel/types': 7.28.6
|
|
12405
12919
|
debug: 4.4.3
|
|
12406
12920
|
globals: 11.12.0
|
|
12407
12921
|
transitivePeerDependencies:
|
|
@@ -12434,6 +12948,18 @@ snapshots:
|
|
|
12434
12948
|
transitivePeerDependencies:
|
|
12435
12949
|
- supports-color
|
|
12436
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
|
+
|
|
12437
12963
|
'@babel/types@7.24.0':
|
|
12438
12964
|
dependencies:
|
|
12439
12965
|
'@babel/helper-string-parser': 7.27.1
|
|
@@ -12442,8 +12968,8 @@ snapshots:
|
|
|
12442
12968
|
|
|
12443
12969
|
'@babel/types@7.24.6':
|
|
12444
12970
|
dependencies:
|
|
12445
|
-
'@babel/helper-string-parser': 7.
|
|
12446
|
-
'@babel/helper-validator-identifier': 7.
|
|
12971
|
+
'@babel/helper-string-parser': 7.27.1
|
|
12972
|
+
'@babel/helper-validator-identifier': 7.28.5
|
|
12447
12973
|
to-fast-properties: 2.0.0
|
|
12448
12974
|
|
|
12449
12975
|
'@babel/types@7.28.6':
|
|
@@ -12451,6 +12977,11 @@ snapshots:
|
|
|
12451
12977
|
'@babel/helper-string-parser': 7.27.1
|
|
12452
12978
|
'@babel/helper-validator-identifier': 7.28.5
|
|
12453
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
|
+
|
|
12454
12985
|
'@borewit/text-codec@0.2.1': {}
|
|
12455
12986
|
|
|
12456
12987
|
'@cacheable/memory@2.0.7':
|
|
@@ -12794,6 +13325,11 @@ snapshots:
|
|
|
12794
13325
|
|
|
12795
13326
|
'@dual-bundle/import-meta-resolve@4.2.1': {}
|
|
12796
13327
|
|
|
13328
|
+
'@emnapi/runtime@1.8.1':
|
|
13329
|
+
dependencies:
|
|
13330
|
+
tslib: 2.8.1
|
|
13331
|
+
optional: true
|
|
13332
|
+
|
|
12797
13333
|
'@esbuild-kit/core-utils@3.3.2':
|
|
12798
13334
|
dependencies:
|
|
12799
13335
|
esbuild: 0.18.20
|
|
@@ -13087,6 +13623,81 @@ snapshots:
|
|
|
13087
13623
|
|
|
13088
13624
|
'@humanwhocodes/object-schema@2.0.3': {}
|
|
13089
13625
|
|
|
13626
|
+
'@img/sharp-darwin-arm64@0.33.5':
|
|
13627
|
+
optionalDependencies:
|
|
13628
|
+
'@img/sharp-libvips-darwin-arm64': 1.0.4
|
|
13629
|
+
optional: true
|
|
13630
|
+
|
|
13631
|
+
'@img/sharp-darwin-x64@0.33.5':
|
|
13632
|
+
optionalDependencies:
|
|
13633
|
+
'@img/sharp-libvips-darwin-x64': 1.0.4
|
|
13634
|
+
optional: true
|
|
13635
|
+
|
|
13636
|
+
'@img/sharp-libvips-darwin-arm64@1.0.4':
|
|
13637
|
+
optional: true
|
|
13638
|
+
|
|
13639
|
+
'@img/sharp-libvips-darwin-x64@1.0.4':
|
|
13640
|
+
optional: true
|
|
13641
|
+
|
|
13642
|
+
'@img/sharp-libvips-linux-arm64@1.0.4':
|
|
13643
|
+
optional: true
|
|
13644
|
+
|
|
13645
|
+
'@img/sharp-libvips-linux-arm@1.0.5':
|
|
13646
|
+
optional: true
|
|
13647
|
+
|
|
13648
|
+
'@img/sharp-libvips-linux-s390x@1.0.4':
|
|
13649
|
+
optional: true
|
|
13650
|
+
|
|
13651
|
+
'@img/sharp-libvips-linux-x64@1.0.4':
|
|
13652
|
+
optional: true
|
|
13653
|
+
|
|
13654
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.0.4':
|
|
13655
|
+
optional: true
|
|
13656
|
+
|
|
13657
|
+
'@img/sharp-libvips-linuxmusl-x64@1.0.4':
|
|
13658
|
+
optional: true
|
|
13659
|
+
|
|
13660
|
+
'@img/sharp-linux-arm64@0.33.5':
|
|
13661
|
+
optionalDependencies:
|
|
13662
|
+
'@img/sharp-libvips-linux-arm64': 1.0.4
|
|
13663
|
+
optional: true
|
|
13664
|
+
|
|
13665
|
+
'@img/sharp-linux-arm@0.33.5':
|
|
13666
|
+
optionalDependencies:
|
|
13667
|
+
'@img/sharp-libvips-linux-arm': 1.0.5
|
|
13668
|
+
optional: true
|
|
13669
|
+
|
|
13670
|
+
'@img/sharp-linux-s390x@0.33.5':
|
|
13671
|
+
optionalDependencies:
|
|
13672
|
+
'@img/sharp-libvips-linux-s390x': 1.0.4
|
|
13673
|
+
optional: true
|
|
13674
|
+
|
|
13675
|
+
'@img/sharp-linux-x64@0.33.5':
|
|
13676
|
+
optionalDependencies:
|
|
13677
|
+
'@img/sharp-libvips-linux-x64': 1.0.4
|
|
13678
|
+
optional: true
|
|
13679
|
+
|
|
13680
|
+
'@img/sharp-linuxmusl-arm64@0.33.5':
|
|
13681
|
+
optionalDependencies:
|
|
13682
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.0.4
|
|
13683
|
+
optional: true
|
|
13684
|
+
|
|
13685
|
+
'@img/sharp-linuxmusl-x64@0.33.5':
|
|
13686
|
+
optionalDependencies:
|
|
13687
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.0.4
|
|
13688
|
+
optional: true
|
|
13689
|
+
|
|
13690
|
+
'@img/sharp-wasm32@0.33.5':
|
|
13691
|
+
dependencies:
|
|
13692
|
+
'@emnapi/runtime': 1.8.1
|
|
13693
|
+
optional: true
|
|
13694
|
+
|
|
13695
|
+
'@img/sharp-win32-ia32@0.33.5':
|
|
13696
|
+
optional: true
|
|
13697
|
+
|
|
13698
|
+
'@img/sharp-win32-x64@0.33.5':
|
|
13699
|
+
optional: true
|
|
13700
|
+
|
|
13090
13701
|
'@inquirer/external-editor@1.0.3(@types/node@22.19.6)':
|
|
13091
13702
|
dependencies:
|
|
13092
13703
|
chardet: 2.1.1
|
|
@@ -14394,9 +15005,9 @@ snapshots:
|
|
|
14394
15005
|
dependencies:
|
|
14395
15006
|
defer-to-connect: 1.1.3
|
|
14396
15007
|
|
|
14397
|
-
'@tailwindcss-mangle/config@6.1.
|
|
15008
|
+
'@tailwindcss-mangle/config@6.1.3':
|
|
14398
15009
|
dependencies:
|
|
14399
|
-
'@tailwindcss-mangle/shared': 4.1.
|
|
15010
|
+
'@tailwindcss-mangle/shared': 4.1.3
|
|
14400
15011
|
c12: 3.3.3
|
|
14401
15012
|
fs-extra: 11.3.3
|
|
14402
15013
|
is-css-request: 1.0.1
|
|
@@ -14404,7 +15015,7 @@ snapshots:
|
|
|
14404
15015
|
transitivePeerDependencies:
|
|
14405
15016
|
- magicast
|
|
14406
15017
|
|
|
14407
|
-
'@tailwindcss-mangle/shared@4.1.
|
|
15018
|
+
'@tailwindcss-mangle/shared@4.1.3': {}
|
|
14408
15019
|
|
|
14409
15020
|
'@tailwindcss/node@4.1.18':
|
|
14410
15021
|
dependencies:
|
|
@@ -14416,6 +15027,16 @@ snapshots:
|
|
|
14416
15027
|
source-map-js: 1.2.1
|
|
14417
15028
|
tailwindcss: 4.1.18
|
|
14418
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
|
+
|
|
14419
15040
|
'@tailwindcss/oxide-android-arm64@4.1.18':
|
|
14420
15041
|
optional: true
|
|
14421
15042
|
|
|
@@ -14525,12 +15146,12 @@ snapshots:
|
|
|
14525
15146
|
- debug
|
|
14526
15147
|
- supports-color
|
|
14527
15148
|
|
|
14528
|
-
'@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))':
|
|
14529
15150
|
dependencies:
|
|
14530
15151
|
'@babel/runtime': 7.28.4
|
|
14531
|
-
'@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))
|
|
14532
15153
|
'@tarojs/shared': 4.1.9
|
|
14533
|
-
'@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))
|
|
14534
15155
|
classnames: 2.5.1
|
|
14535
15156
|
identity-obj-proxy: 3.0.0
|
|
14536
15157
|
react: 18.3.1
|
|
@@ -14548,12 +15169,12 @@ snapshots:
|
|
|
14548
15169
|
- webpack-chain
|
|
14549
15170
|
- webpack-dev-server
|
|
14550
15171
|
|
|
14551
|
-
'@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))':
|
|
14552
15173
|
dependencies:
|
|
14553
15174
|
'@stencil/core': 2.22.3
|
|
14554
15175
|
'@tarojs/runtime': 4.1.9
|
|
14555
15176
|
'@tarojs/shared': 4.1.9
|
|
14556
|
-
'@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))
|
|
14557
15178
|
classnames: 2.5.1
|
|
14558
15179
|
hammerjs: 2.0.8
|
|
14559
15180
|
hls.js: 1.6.15
|
|
@@ -14693,7 +15314,7 @@ snapshots:
|
|
|
14693
15314
|
transitivePeerDependencies:
|
|
14694
15315
|
- supports-color
|
|
14695
15316
|
|
|
14696
|
-
'@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))':
|
|
14697
15318
|
dependencies:
|
|
14698
15319
|
'@tarojs/helper': 4.1.9
|
|
14699
15320
|
'@tarojs/runtime': 4.1.9
|
|
@@ -14703,10 +15324,10 @@ snapshots:
|
|
|
14703
15324
|
lodash: 4.17.21
|
|
14704
15325
|
tslib: 2.8.1
|
|
14705
15326
|
optionalDependencies:
|
|
14706
|
-
'@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))
|
|
14707
15328
|
react: 18.3.1
|
|
14708
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
14709
|
-
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)
|
|
14710
15331
|
|
|
14711
15332
|
'@tarojs/plugin-generator@4.1.9(@types/node@22.19.6)':
|
|
14712
15333
|
dependencies:
|
|
@@ -14725,7 +15346,7 @@ snapshots:
|
|
|
14725
15346
|
- babel-plugin-macros
|
|
14726
15347
|
- supports-color
|
|
14727
15348
|
|
|
14728
|
-
'@tarojs/plugin-mini-ci@4.1.9(miniprogram-ci@2.1.26(eslint@8.57.1))':
|
|
15349
|
+
'@tarojs/plugin-mini-ci@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))':
|
|
14729
15350
|
dependencies:
|
|
14730
15351
|
axios: 1.13.2
|
|
14731
15352
|
jimp: 0.22.12
|
|
@@ -14735,20 +15356,22 @@ snapshots:
|
|
|
14735
15356
|
qrcode: 1.5.4
|
|
14736
15357
|
resolve: 1.22.11
|
|
14737
15358
|
shelljs: 0.8.5
|
|
15359
|
+
optionalDependencies:
|
|
15360
|
+
tt-ide-cli: 0.1.31(@types/node@22.19.6)
|
|
14738
15361
|
transitivePeerDependencies:
|
|
14739
15362
|
- debug
|
|
14740
15363
|
- encoding
|
|
14741
15364
|
|
|
14742
|
-
'@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))':
|
|
14743
15366
|
dependencies:
|
|
14744
15367
|
'@babel/core': 7.28.5
|
|
14745
|
-
'@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)
|
|
14746
|
-
'@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))
|
|
14747
15370
|
'@tarojs/helper': 4.1.9
|
|
14748
15371
|
'@tarojs/runtime': 4.1.9
|
|
14749
15372
|
'@tarojs/service': 4.1.9
|
|
14750
15373
|
'@tarojs/shared': 4.1.9
|
|
14751
|
-
'@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)))
|
|
14752
15375
|
babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
|
|
14753
15376
|
change-case: 4.1.2
|
|
14754
15377
|
lodash-es: 4.17.21
|
|
@@ -14768,6 +15391,12 @@ snapshots:
|
|
|
14768
15391
|
- webpack-chain
|
|
14769
15392
|
- webpack-dev-server
|
|
14770
15393
|
|
|
15394
|
+
'@tarojs/plugin-platform-tt@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
|
|
15395
|
+
dependencies:
|
|
15396
|
+
'@tarojs/service': 4.1.9
|
|
15397
|
+
'@tarojs/shared': 4.1.9
|
|
15398
|
+
webpack-sources: 3.3.3
|
|
15399
|
+
|
|
14771
15400
|
'@tarojs/plugin-platform-weapp@4.1.9(@tarojs/service@4.1.9)(@tarojs/shared@4.1.9)':
|
|
14772
15401
|
dependencies:
|
|
14773
15402
|
'@tarojs/service': 4.1.9
|
|
@@ -14780,11 +15409,11 @@ snapshots:
|
|
|
14780
15409
|
react: 18.3.1
|
|
14781
15410
|
react-reconciler: 0.29.0(react@18.3.1)
|
|
14782
15411
|
|
|
14783
|
-
'@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)))':
|
|
14784
15413
|
dependencies:
|
|
14785
15414
|
'@tarojs/runtime': 4.1.9
|
|
14786
15415
|
'@tarojs/shared': 4.1.9
|
|
14787
|
-
'@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))
|
|
14788
15417
|
dingtalk-jsapi: 2.15.6
|
|
14789
15418
|
history: 5.3.0
|
|
14790
15419
|
mobile-detect: 1.4.5
|
|
@@ -14823,11 +15452,11 @@ snapshots:
|
|
|
14823
15452
|
|
|
14824
15453
|
'@tarojs/shared@4.1.9': {}
|
|
14825
15454
|
|
|
14826
|
-
'@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)))':
|
|
14827
15456
|
dependencies:
|
|
14828
15457
|
'@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
|
|
14829
|
-
'@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)
|
|
14830
|
-
'@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)))
|
|
14831
15460
|
'@tarojs/runtime': 4.1.9
|
|
14832
15461
|
'@tarojs/shared': 4.1.9
|
|
14833
15462
|
abortcontroller-polyfill: 1.7.8
|
|
@@ -14843,10 +15472,10 @@ snapshots:
|
|
|
14843
15472
|
transitivePeerDependencies:
|
|
14844
15473
|
- '@tarojs/taro'
|
|
14845
15474
|
|
|
14846
|
-
'@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))':
|
|
14847
15476
|
dependencies:
|
|
14848
15477
|
'@tarojs/api': 4.1.9(@tarojs/runtime@4.1.9)(@tarojs/shared@4.1.9)
|
|
14849
|
-
'@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))
|
|
14850
15479
|
'@tarojs/helper': 4.1.9
|
|
14851
15480
|
'@tarojs/runtime': 4.1.9
|
|
14852
15481
|
'@tarojs/shared': 4.1.9
|
|
@@ -14855,9 +15484,9 @@ snapshots:
|
|
|
14855
15484
|
optionalDependencies:
|
|
14856
15485
|
'@types/react': 18.3.27
|
|
14857
15486
|
rollup: 3.29.5
|
|
14858
|
-
webpack: 5.97.1(@swc/core@1.3.96)
|
|
15487
|
+
webpack: 5.97.1(@swc/core@1.3.96)
|
|
14859
15488
|
|
|
14860
|
-
'@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))':
|
|
14861
15490
|
dependencies:
|
|
14862
15491
|
'@ampproject/remapping': 2.3.0
|
|
14863
15492
|
'@babel/core': 7.28.5
|
|
@@ -14870,7 +15499,7 @@ snapshots:
|
|
|
14870
15499
|
'@tarojs/runner-utils': 4.1.9
|
|
14871
15500
|
'@tarojs/runtime': 4.1.9
|
|
14872
15501
|
'@tarojs/shared': 4.1.9
|
|
14873
|
-
'@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))
|
|
14874
15503
|
acorn-walk: 8.3.4
|
|
14875
15504
|
autoprefixer: 10.4.23(postcss@8.5.6)
|
|
14876
15505
|
babel-plugin-transform-taroapi: 4.1.9(@babel/core@7.28.5)
|
|
@@ -14893,8 +15522,8 @@ snapshots:
|
|
|
14893
15522
|
regenerator-runtime: 0.11.1
|
|
14894
15523
|
sax: 1.2.4
|
|
14895
15524
|
stylelint: 16.26.1(typescript@5.9.3)
|
|
14896
|
-
vite: 4.5.14(@types/node@22.19.6)(less@4.5.1)(lightningcss@1.
|
|
14897
|
-
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))
|
|
14898
15527
|
transitivePeerDependencies:
|
|
14899
15528
|
- '@swc/helpers'
|
|
14900
15529
|
- '@types/babel__core'
|
|
@@ -14923,6 +15552,14 @@ snapshots:
|
|
|
14923
15552
|
minimatch: 10.1.1
|
|
14924
15553
|
path-browserify: 1.0.1
|
|
14925
15554
|
|
|
15555
|
+
'@tt-miniprogram/ext-pack@1.2.4':
|
|
15556
|
+
dependencies:
|
|
15557
|
+
convert-source-map: 2.0.0
|
|
15558
|
+
fast-glob: 3.3.2
|
|
15559
|
+
fs-extra: 11.2.0
|
|
15560
|
+
read-package-tree: 5.3.1
|
|
15561
|
+
terser: 5.26.0
|
|
15562
|
+
|
|
14926
15563
|
'@types/archy@0.0.31': {}
|
|
14927
15564
|
|
|
14928
15565
|
'@types/babel__core@7.20.5':
|
|
@@ -15081,7 +15718,7 @@ snapshots:
|
|
|
15081
15718
|
graphemer: 1.4.0
|
|
15082
15719
|
ignore: 5.3.2
|
|
15083
15720
|
natural-compare: 1.4.0
|
|
15084
|
-
semver: 7.7.
|
|
15721
|
+
semver: 7.7.4
|
|
15085
15722
|
ts-api-utils: 1.4.3(typescript@5.9.3)
|
|
15086
15723
|
optionalDependencies:
|
|
15087
15724
|
typescript: 5.9.3
|
|
@@ -15128,7 +15765,7 @@ snapshots:
|
|
|
15128
15765
|
globby: 11.1.0
|
|
15129
15766
|
is-glob: 4.0.3
|
|
15130
15767
|
minimatch: 9.0.3
|
|
15131
|
-
semver: 7.7.
|
|
15768
|
+
semver: 7.7.4
|
|
15132
15769
|
ts-api-utils: 1.4.3(typescript@5.9.3)
|
|
15133
15770
|
optionalDependencies:
|
|
15134
15771
|
typescript: 5.9.3
|
|
@@ -15144,7 +15781,7 @@ snapshots:
|
|
|
15144
15781
|
'@typescript-eslint/types': 6.21.0
|
|
15145
15782
|
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.9.3)
|
|
15146
15783
|
eslint: 8.57.1
|
|
15147
|
-
semver: 7.7.
|
|
15784
|
+
semver: 7.7.4
|
|
15148
15785
|
transitivePeerDependencies:
|
|
15149
15786
|
- supports-color
|
|
15150
15787
|
- typescript
|
|
@@ -15156,7 +15793,7 @@ snapshots:
|
|
|
15156
15793
|
|
|
15157
15794
|
'@ungap/structured-clone@1.3.0': {}
|
|
15158
15795
|
|
|
15159
|
-
'@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))':
|
|
15160
15797
|
dependencies:
|
|
15161
15798
|
'@babel/core': 7.28.5
|
|
15162
15799
|
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
|
|
@@ -15166,11 +15803,11 @@ snapshots:
|
|
|
15166
15803
|
regenerator-runtime: 0.13.11
|
|
15167
15804
|
systemjs: 6.15.1
|
|
15168
15805
|
terser: 5.44.1
|
|
15169
|
-
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)
|
|
15170
15807
|
transitivePeerDependencies:
|
|
15171
15808
|
- supports-color
|
|
15172
15809
|
|
|
15173
|
-
'@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))':
|
|
15174
15811
|
dependencies:
|
|
15175
15812
|
'@babel/core': 7.28.5
|
|
15176
15813
|
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
|
|
@@ -15178,39 +15815,39 @@ snapshots:
|
|
|
15178
15815
|
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
15179
15816
|
'@types/babel__core': 7.20.5
|
|
15180
15817
|
react-refresh: 0.17.0
|
|
15181
|
-
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)
|
|
15182
15819
|
transitivePeerDependencies:
|
|
15183
15820
|
- supports-color
|
|
15184
15821
|
|
|
15185
|
-
'@vue/compiler-core@3.5.
|
|
15822
|
+
'@vue/compiler-core@3.5.30':
|
|
15186
15823
|
dependencies:
|
|
15187
|
-
'@babel/parser': 7.
|
|
15188
|
-
'@vue/shared': 3.5.
|
|
15189
|
-
entities: 7.0.
|
|
15824
|
+
'@babel/parser': 7.29.0
|
|
15825
|
+
'@vue/shared': 3.5.30
|
|
15826
|
+
entities: 7.0.1
|
|
15190
15827
|
estree-walker: 2.0.2
|
|
15191
15828
|
source-map-js: 1.2.1
|
|
15192
15829
|
|
|
15193
|
-
'@vue/compiler-dom@3.5.
|
|
15830
|
+
'@vue/compiler-dom@3.5.30':
|
|
15194
15831
|
dependencies:
|
|
15195
|
-
'@vue/compiler-core': 3.5.
|
|
15196
|
-
'@vue/shared': 3.5.
|
|
15832
|
+
'@vue/compiler-core': 3.5.30
|
|
15833
|
+
'@vue/shared': 3.5.30
|
|
15197
15834
|
|
|
15198
|
-
'@vue/compiler-sfc@3.5.
|
|
15835
|
+
'@vue/compiler-sfc@3.5.30':
|
|
15199
15836
|
dependencies:
|
|
15200
|
-
'@babel/parser': 7.
|
|
15201
|
-
'@vue/compiler-core': 3.5.
|
|
15202
|
-
'@vue/compiler-dom': 3.5.
|
|
15203
|
-
'@vue/compiler-ssr': 3.5.
|
|
15204
|
-
'@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
|
|
15205
15842
|
estree-walker: 2.0.2
|
|
15206
15843
|
magic-string: 0.30.21
|
|
15207
|
-
postcss: 8.5.
|
|
15844
|
+
postcss: 8.5.8
|
|
15208
15845
|
source-map-js: 1.2.1
|
|
15209
15846
|
|
|
15210
|
-
'@vue/compiler-ssr@3.5.
|
|
15847
|
+
'@vue/compiler-ssr@3.5.30':
|
|
15211
15848
|
dependencies:
|
|
15212
|
-
'@vue/compiler-dom': 3.5.
|
|
15213
|
-
'@vue/shared': 3.5.
|
|
15849
|
+
'@vue/compiler-dom': 3.5.30
|
|
15850
|
+
'@vue/shared': 3.5.30
|
|
15214
15851
|
|
|
15215
15852
|
'@vue/reactivity@3.0.5':
|
|
15216
15853
|
dependencies:
|
|
@@ -15218,9 +15855,9 @@ snapshots:
|
|
|
15218
15855
|
|
|
15219
15856
|
'@vue/shared@3.0.5': {}
|
|
15220
15857
|
|
|
15221
|
-
'@vue/shared@3.5.
|
|
15858
|
+
'@vue/shared@3.5.30': {}
|
|
15222
15859
|
|
|
15223
|
-
'@weapp-core/escape@
|
|
15860
|
+
'@weapp-core/escape@7.0.0': {}
|
|
15224
15861
|
|
|
15225
15862
|
'@weapp-core/regex@1.0.1': {}
|
|
15226
15863
|
|
|
@@ -15235,19 +15872,20 @@ snapshots:
|
|
|
15235
15872
|
postcss-selector-parser: 7.1.1
|
|
15236
15873
|
postcss-value-parser: 4.2.0
|
|
15237
15874
|
|
|
15238
|
-
'@weapp-tailwindcss/postcss@2.1.
|
|
15875
|
+
'@weapp-tailwindcss/postcss@2.1.5':
|
|
15239
15876
|
dependencies:
|
|
15240
|
-
'@weapp-core/escape':
|
|
15877
|
+
'@weapp-core/escape': 7.0.0
|
|
15241
15878
|
'@weapp-tailwindcss/postcss-calc': 1.0.0(postcss@8.5.6)
|
|
15242
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
15879
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
15243
15880
|
postcss: 8.5.6
|
|
15244
15881
|
postcss-preset-env: 10.6.1(postcss@8.5.6)
|
|
15245
|
-
postcss-pxtrans: 1.0.
|
|
15246
|
-
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)
|
|
15247
15884
|
postcss-selector-parser: 7.1.1
|
|
15885
|
+
postcss-units-to-px: 0.2.0(postcss@8.5.6)
|
|
15248
15886
|
postcss-value-parser: 4.2.0
|
|
15249
15887
|
|
|
15250
|
-
'@weapp-tailwindcss/shared@1.1.
|
|
15888
|
+
'@weapp-tailwindcss/shared@1.1.2':
|
|
15251
15889
|
dependencies:
|
|
15252
15890
|
pathe: 2.0.3
|
|
15253
15891
|
|
|
@@ -15461,6 +16099,8 @@ snapshots:
|
|
|
15461
16099
|
|
|
15462
16100
|
append-field@1.0.0: {}
|
|
15463
16101
|
|
|
16102
|
+
arch@2.2.0: {}
|
|
16103
|
+
|
|
15464
16104
|
archive-type@4.0.0:
|
|
15465
16105
|
dependencies:
|
|
15466
16106
|
file-type: 4.4.0
|
|
@@ -15564,6 +16204,17 @@ snapshots:
|
|
|
15564
16204
|
es-abstract: 1.24.1
|
|
15565
16205
|
es-shim-unscopables: 1.1.0
|
|
15566
16206
|
|
|
16207
|
+
array.prototype.reduce@1.0.8:
|
|
16208
|
+
dependencies:
|
|
16209
|
+
call-bind: 1.0.8
|
|
16210
|
+
call-bound: 1.0.4
|
|
16211
|
+
define-properties: 1.2.1
|
|
16212
|
+
es-abstract: 1.24.1
|
|
16213
|
+
es-array-method-boxes-properly: 1.0.0
|
|
16214
|
+
es-errors: 1.3.0
|
|
16215
|
+
es-object-atoms: 1.1.1
|
|
16216
|
+
is-string: 1.1.1
|
|
16217
|
+
|
|
15567
16218
|
array.prototype.tosorted@1.1.4:
|
|
15568
16219
|
dependencies:
|
|
15569
16220
|
call-bind: 1.0.8
|
|
@@ -16277,6 +16928,11 @@ snapshots:
|
|
|
16277
16928
|
|
|
16278
16929
|
binary-extensions@2.3.0: {}
|
|
16279
16930
|
|
|
16931
|
+
binary@0.3.0:
|
|
16932
|
+
dependencies:
|
|
16933
|
+
buffers: 0.1.1
|
|
16934
|
+
chainsaw: 0.1.0
|
|
16935
|
+
|
|
16280
16936
|
bindings@1.5.0:
|
|
16281
16937
|
dependencies:
|
|
16282
16938
|
file-uri-to-path: 1.0.0
|
|
@@ -16298,6 +16954,8 @@ snapshots:
|
|
|
16298
16954
|
inherits: 2.0.4
|
|
16299
16955
|
readable-stream: 3.6.2
|
|
16300
16956
|
|
|
16957
|
+
bluebird@3.4.7: {}
|
|
16958
|
+
|
|
16301
16959
|
bmp-js@0.1.0: {}
|
|
16302
16960
|
|
|
16303
16961
|
body-parser@1.20.3:
|
|
@@ -16379,6 +17037,8 @@ snapshots:
|
|
|
16379
17037
|
|
|
16380
17038
|
buffer-from@1.1.2: {}
|
|
16381
17039
|
|
|
17040
|
+
buffer-indexof-polyfill@1.0.2: {}
|
|
17041
|
+
|
|
16382
17042
|
buffer@5.6.0:
|
|
16383
17043
|
dependencies:
|
|
16384
17044
|
base64-js: 1.5.1
|
|
@@ -16394,6 +17054,8 @@ snapshots:
|
|
|
16394
17054
|
base64-js: 1.5.1
|
|
16395
17055
|
ieee754: 1.2.1
|
|
16396
17056
|
|
|
17057
|
+
buffers@0.1.1: {}
|
|
17058
|
+
|
|
16397
17059
|
busboy@1.6.0:
|
|
16398
17060
|
dependencies:
|
|
16399
17061
|
streamsearch: 1.1.0
|
|
@@ -16508,6 +17170,10 @@ snapshots:
|
|
|
16508
17170
|
transitivePeerDependencies:
|
|
16509
17171
|
- debug
|
|
16510
17172
|
|
|
17173
|
+
chainsaw@0.1.0:
|
|
17174
|
+
dependencies:
|
|
17175
|
+
traverse: 0.3.9
|
|
17176
|
+
|
|
16511
17177
|
chalk@1.1.3:
|
|
16512
17178
|
dependencies:
|
|
16513
17179
|
ansi-styles: 2.2.1
|
|
@@ -16583,6 +17249,10 @@ snapshots:
|
|
|
16583
17249
|
dependencies:
|
|
16584
17250
|
consola: 3.4.2
|
|
16585
17251
|
|
|
17252
|
+
class-variance-authority@0.7.1:
|
|
17253
|
+
dependencies:
|
|
17254
|
+
clsx: 2.1.1
|
|
17255
|
+
|
|
16586
17256
|
classnames@2.5.1: {}
|
|
16587
17257
|
|
|
16588
17258
|
clean-css@4.2.4:
|
|
@@ -16627,6 +17297,12 @@ snapshots:
|
|
|
16627
17297
|
|
|
16628
17298
|
cli-width@4.1.0: {}
|
|
16629
17299
|
|
|
17300
|
+
clipboardy@2.3.0:
|
|
17301
|
+
dependencies:
|
|
17302
|
+
arch: 2.2.0
|
|
17303
|
+
execa: 1.0.0
|
|
17304
|
+
is-wsl: 2.2.0
|
|
17305
|
+
|
|
16630
17306
|
cliui@6.0.0:
|
|
16631
17307
|
dependencies:
|
|
16632
17308
|
string-width: 4.2.3
|
|
@@ -16663,6 +17339,8 @@ snapshots:
|
|
|
16663
17339
|
|
|
16664
17340
|
clone@1.0.4: {}
|
|
16665
17341
|
|
|
17342
|
+
clsx@2.1.1: {}
|
|
17343
|
+
|
|
16666
17344
|
code-block-writer@13.0.3: {}
|
|
16667
17345
|
|
|
16668
17346
|
color-convert@1.9.3:
|
|
@@ -16677,8 +17355,18 @@ snapshots:
|
|
|
16677
17355
|
|
|
16678
17356
|
color-name@1.1.4: {}
|
|
16679
17357
|
|
|
17358
|
+
color-string@1.9.1:
|
|
17359
|
+
dependencies:
|
|
17360
|
+
color-name: 1.1.4
|
|
17361
|
+
simple-swizzle: 0.2.4
|
|
17362
|
+
|
|
16680
17363
|
color-support@1.1.3: {}
|
|
16681
17364
|
|
|
17365
|
+
color@4.2.3:
|
|
17366
|
+
dependencies:
|
|
17367
|
+
color-convert: 2.0.1
|
|
17368
|
+
color-string: 1.9.1
|
|
17369
|
+
|
|
16682
17370
|
colord@2.9.3: {}
|
|
16683
17371
|
|
|
16684
17372
|
colorette@2.0.20: {}
|
|
@@ -16695,6 +17383,8 @@ snapshots:
|
|
|
16695
17383
|
|
|
16696
17384
|
commander@4.1.1: {}
|
|
16697
17385
|
|
|
17386
|
+
commander@5.1.0: {}
|
|
17387
|
+
|
|
16698
17388
|
commander@7.2.0: {}
|
|
16699
17389
|
|
|
16700
17390
|
commander@9.5.0: {}
|
|
@@ -16744,7 +17434,7 @@ snapshots:
|
|
|
16744
17434
|
make-dir: 3.1.0
|
|
16745
17435
|
onetime: 5.1.2
|
|
16746
17436
|
pkg-up: 3.1.0
|
|
16747
|
-
semver: 7.7.
|
|
17437
|
+
semver: 7.7.4
|
|
16748
17438
|
|
|
16749
17439
|
confbox@0.1.8: {}
|
|
16750
17440
|
|
|
@@ -16845,19 +17535,22 @@ snapshots:
|
|
|
16845
17535
|
optionalDependencies:
|
|
16846
17536
|
typescript: 5.9.3
|
|
16847
17537
|
|
|
16848
|
-
coze-coding-dev-sdk@0.7.
|
|
17538
|
+
coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
|
|
16849
17539
|
dependencies:
|
|
16850
17540
|
'@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
|
|
16851
17541
|
'@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
|
|
17542
|
+
'@supabase/supabase-js': 2.95.3
|
|
16852
17543
|
axios: 1.13.2
|
|
16853
17544
|
pg: 8.17.2
|
|
16854
17545
|
transitivePeerDependencies:
|
|
16855
17546
|
- '@opentelemetry/api'
|
|
16856
17547
|
- '@opentelemetry/exporter-trace-otlp-proto'
|
|
16857
17548
|
- '@opentelemetry/sdk-trace-base'
|
|
17549
|
+
- bufferutil
|
|
16858
17550
|
- debug
|
|
16859
17551
|
- openai
|
|
16860
17552
|
- pg-native
|
|
17553
|
+
- utf-8-validate
|
|
16861
17554
|
- ws
|
|
16862
17555
|
|
|
16863
17556
|
crc-32@1.2.2: {}
|
|
@@ -16867,6 +17560,14 @@ snapshots:
|
|
|
16867
17560
|
crc-32: 1.2.2
|
|
16868
17561
|
readable-stream: 3.6.2
|
|
16869
17562
|
|
|
17563
|
+
cross-spawn@6.0.6:
|
|
17564
|
+
dependencies:
|
|
17565
|
+
nice-try: 1.0.5
|
|
17566
|
+
path-key: 2.0.1
|
|
17567
|
+
semver: 5.7.2
|
|
17568
|
+
shebang-command: 1.2.0
|
|
17569
|
+
which: 1.3.1
|
|
17570
|
+
|
|
16870
17571
|
cross-spawn@7.0.6:
|
|
16871
17572
|
dependencies:
|
|
16872
17573
|
path-key: 3.1.1
|
|
@@ -16995,6 +17696,8 @@ snapshots:
|
|
|
16995
17696
|
es-errors: 1.3.0
|
|
16996
17697
|
is-data-view: 1.0.2
|
|
16997
17698
|
|
|
17699
|
+
date-fns@4.1.0: {}
|
|
17700
|
+
|
|
16998
17701
|
dateformat@2.2.0: {}
|
|
16999
17702
|
|
|
17000
17703
|
debounce-fn@4.0.0:
|
|
@@ -17009,6 +17712,10 @@ snapshots:
|
|
|
17009
17712
|
dependencies:
|
|
17010
17713
|
ms: 2.1.3
|
|
17011
17714
|
|
|
17715
|
+
debug@4.4.0:
|
|
17716
|
+
dependencies:
|
|
17717
|
+
ms: 2.1.3
|
|
17718
|
+
|
|
17012
17719
|
debug@4.4.3:
|
|
17013
17720
|
dependencies:
|
|
17014
17721
|
ms: 2.1.3
|
|
@@ -17069,6 +17776,8 @@ snapshots:
|
|
|
17069
17776
|
|
|
17070
17777
|
dedent@1.7.1: {}
|
|
17071
17778
|
|
|
17779
|
+
deep-clone@3.0.3: {}
|
|
17780
|
+
|
|
17072
17781
|
deep-extend@0.6.0: {}
|
|
17073
17782
|
|
|
17074
17783
|
deep-is@0.1.4: {}
|
|
@@ -17250,10 +17959,20 @@ snapshots:
|
|
|
17250
17959
|
dependencies:
|
|
17251
17960
|
readable-stream: 1.1.14
|
|
17252
17961
|
|
|
17962
|
+
duplexer2@0.1.4:
|
|
17963
|
+
dependencies:
|
|
17964
|
+
readable-stream: 2.3.8
|
|
17965
|
+
|
|
17253
17966
|
duplexer3@0.1.5: {}
|
|
17254
17967
|
|
|
17255
17968
|
eastasianwidth@0.2.0: {}
|
|
17256
17969
|
|
|
17970
|
+
easy-table@1.2.0:
|
|
17971
|
+
dependencies:
|
|
17972
|
+
ansi-regex: 5.0.1
|
|
17973
|
+
optionalDependencies:
|
|
17974
|
+
wcwidth: 1.0.1
|
|
17975
|
+
|
|
17257
17976
|
ecc-jsbn@0.1.2:
|
|
17258
17977
|
dependencies:
|
|
17259
17978
|
jsbn: 0.1.1
|
|
@@ -17284,13 +18003,16 @@ snapshots:
|
|
|
17284
18003
|
graceful-fs: 4.2.11
|
|
17285
18004
|
tapable: 2.3.0
|
|
17286
18005
|
|
|
18006
|
+
enhanced-resolve@5.20.0:
|
|
18007
|
+
dependencies:
|
|
18008
|
+
graceful-fs: 4.2.11
|
|
18009
|
+
tapable: 2.3.0
|
|
18010
|
+
|
|
17287
18011
|
entities@2.2.0: {}
|
|
17288
18012
|
|
|
17289
18013
|
entities@4.5.0: {}
|
|
17290
18014
|
|
|
17291
|
-
entities@
|
|
17292
|
-
|
|
17293
|
-
entities@7.0.0: {}
|
|
18015
|
+
entities@7.0.1: {}
|
|
17294
18016
|
|
|
17295
18017
|
env-paths@2.2.1: {}
|
|
17296
18018
|
|
|
@@ -17363,6 +18085,8 @@ snapshots:
|
|
|
17363
18085
|
unbox-primitive: 1.1.0
|
|
17364
18086
|
which-typed-array: 1.1.19
|
|
17365
18087
|
|
|
18088
|
+
es-array-method-boxes-properly@1.0.0: {}
|
|
18089
|
+
|
|
17366
18090
|
es-define-property@1.0.1: {}
|
|
17367
18091
|
|
|
17368
18092
|
es-errors@1.3.0: {}
|
|
@@ -17594,6 +18318,12 @@ snapshots:
|
|
|
17594
18318
|
string.prototype.matchall: 4.0.12
|
|
17595
18319
|
string.prototype.repeat: 1.0.0
|
|
17596
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
|
+
|
|
17597
18327
|
eslint-scope@5.1.1:
|
|
17598
18328
|
dependencies:
|
|
17599
18329
|
esrecurse: 4.3.0
|
|
@@ -17737,6 +18467,16 @@ snapshots:
|
|
|
17737
18467
|
|
|
17738
18468
|
events@3.3.0: {}
|
|
17739
18469
|
|
|
18470
|
+
execa@1.0.0:
|
|
18471
|
+
dependencies:
|
|
18472
|
+
cross-spawn: 6.0.6
|
|
18473
|
+
get-stream: 4.1.0
|
|
18474
|
+
is-stream: 1.1.0
|
|
18475
|
+
npm-run-path: 2.0.2
|
|
18476
|
+
p-finally: 1.0.0
|
|
18477
|
+
signal-exit: 3.0.7
|
|
18478
|
+
strip-eof: 1.0.0
|
|
18479
|
+
|
|
17740
18480
|
execa@5.1.1:
|
|
17741
18481
|
dependencies:
|
|
17742
18482
|
cross-spawn: 7.0.6
|
|
@@ -17852,6 +18592,14 @@ snapshots:
|
|
|
17852
18592
|
|
|
17853
18593
|
fast-deep-equal@3.1.3: {}
|
|
17854
18594
|
|
|
18595
|
+
fast-glob@3.3.2:
|
|
18596
|
+
dependencies:
|
|
18597
|
+
'@nodelib/fs.stat': 2.0.5
|
|
18598
|
+
'@nodelib/fs.walk': 1.2.8
|
|
18599
|
+
glob-parent: 5.1.2
|
|
18600
|
+
merge2: 1.4.1
|
|
18601
|
+
micromatch: 4.0.8
|
|
18602
|
+
|
|
17855
18603
|
fast-glob@3.3.3:
|
|
17856
18604
|
dependencies:
|
|
17857
18605
|
'@nodelib/fs.stat': 2.0.5
|
|
@@ -18010,6 +18758,13 @@ snapshots:
|
|
|
18010
18758
|
|
|
18011
18759
|
flatted@3.3.3: {}
|
|
18012
18760
|
|
|
18761
|
+
folder-hash@4.1.1:
|
|
18762
|
+
dependencies:
|
|
18763
|
+
debug: 4.4.0
|
|
18764
|
+
minimatch: 7.4.6
|
|
18765
|
+
transitivePeerDependencies:
|
|
18766
|
+
- supports-color
|
|
18767
|
+
|
|
18013
18768
|
follow-redirects@1.15.11: {}
|
|
18014
18769
|
|
|
18015
18770
|
for-each@0.3.5:
|
|
@@ -18075,6 +18830,12 @@ snapshots:
|
|
|
18075
18830
|
jsonfile: 6.2.0
|
|
18076
18831
|
universalify: 2.0.1
|
|
18077
18832
|
|
|
18833
|
+
fs-extra@11.2.0:
|
|
18834
|
+
dependencies:
|
|
18835
|
+
graceful-fs: 4.2.11
|
|
18836
|
+
jsonfile: 6.2.0
|
|
18837
|
+
universalify: 2.0.1
|
|
18838
|
+
|
|
18078
18839
|
fs-extra@11.3.3:
|
|
18079
18840
|
dependencies:
|
|
18080
18841
|
graceful-fs: 4.2.11
|
|
@@ -18094,6 +18855,13 @@ snapshots:
|
|
|
18094
18855
|
fsevents@2.3.3:
|
|
18095
18856
|
optional: true
|
|
18096
18857
|
|
|
18858
|
+
fstream@1.0.12:
|
|
18859
|
+
dependencies:
|
|
18860
|
+
graceful-fs: 4.2.11
|
|
18861
|
+
inherits: 2.0.4
|
|
18862
|
+
mkdirp: 0.5.6
|
|
18863
|
+
rimraf: 2.7.1
|
|
18864
|
+
|
|
18097
18865
|
function-bind@1.1.2: {}
|
|
18098
18866
|
|
|
18099
18867
|
function.prototype.name@1.1.8:
|
|
@@ -18107,6 +18875,8 @@ snapshots:
|
|
|
18107
18875
|
|
|
18108
18876
|
functions-have-names@1.2.3: {}
|
|
18109
18877
|
|
|
18878
|
+
fuse.js@7.1.0: {}
|
|
18879
|
+
|
|
18110
18880
|
generator-function@2.0.1: {}
|
|
18111
18881
|
|
|
18112
18882
|
generic-names@4.0.0:
|
|
@@ -18465,12 +19235,12 @@ snapshots:
|
|
|
18465
19235
|
|
|
18466
19236
|
html-tags@3.3.1: {}
|
|
18467
19237
|
|
|
18468
|
-
htmlparser2@10.
|
|
19238
|
+
htmlparser2@10.1.0:
|
|
18469
19239
|
dependencies:
|
|
18470
19240
|
domelementtype: 2.3.0
|
|
18471
19241
|
domhandler: 5.0.3
|
|
18472
19242
|
domutils: 3.2.2
|
|
18473
|
-
entities:
|
|
19243
|
+
entities: 7.0.1
|
|
18474
19244
|
|
|
18475
19245
|
http-cache-semantics@3.8.1: {}
|
|
18476
19246
|
|
|
@@ -18651,6 +19421,8 @@ snapshots:
|
|
|
18651
19421
|
|
|
18652
19422
|
is-arrayish@0.2.1: {}
|
|
18653
19423
|
|
|
19424
|
+
is-arrayish@0.3.4: {}
|
|
19425
|
+
|
|
18654
19426
|
is-async-function@2.1.1:
|
|
18655
19427
|
dependencies:
|
|
18656
19428
|
async-function: 1.0.0
|
|
@@ -18693,6 +19465,8 @@ snapshots:
|
|
|
18693
19465
|
call-bound: 1.0.4
|
|
18694
19466
|
has-tostringtag: 1.0.2
|
|
18695
19467
|
|
|
19468
|
+
is-docker@2.2.1: {}
|
|
19469
|
+
|
|
18696
19470
|
is-extglob@2.1.1: {}
|
|
18697
19471
|
|
|
18698
19472
|
is-finalizationregistry@1.1.1:
|
|
@@ -18811,6 +19585,10 @@ snapshots:
|
|
|
18811
19585
|
|
|
18812
19586
|
is-what@3.14.1: {}
|
|
18813
19587
|
|
|
19588
|
+
is-wsl@2.2.0:
|
|
19589
|
+
dependencies:
|
|
19590
|
+
is-docker: 2.2.1
|
|
19591
|
+
|
|
18814
19592
|
isarray@0.0.1: {}
|
|
18815
19593
|
|
|
18816
19594
|
isarray@1.0.0: {}
|
|
@@ -19015,7 +19793,7 @@ snapshots:
|
|
|
19015
19793
|
chalk: 4.1.2
|
|
19016
19794
|
console-table-printer: 2.15.0
|
|
19017
19795
|
p-queue: 6.6.2
|
|
19018
|
-
semver: 7.7.
|
|
19796
|
+
semver: 7.7.4
|
|
19019
19797
|
uuid: 10.0.0
|
|
19020
19798
|
optionalDependencies:
|
|
19021
19799
|
openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
|
|
@@ -19058,36 +19836,69 @@ snapshots:
|
|
|
19058
19836
|
lightningcss-android-arm64@1.30.2:
|
|
19059
19837
|
optional: true
|
|
19060
19838
|
|
|
19839
|
+
lightningcss-android-arm64@1.31.1:
|
|
19840
|
+
optional: true
|
|
19841
|
+
|
|
19061
19842
|
lightningcss-darwin-arm64@1.30.2:
|
|
19062
19843
|
optional: true
|
|
19063
19844
|
|
|
19845
|
+
lightningcss-darwin-arm64@1.31.1:
|
|
19846
|
+
optional: true
|
|
19847
|
+
|
|
19064
19848
|
lightningcss-darwin-x64@1.30.2:
|
|
19065
19849
|
optional: true
|
|
19066
19850
|
|
|
19851
|
+
lightningcss-darwin-x64@1.31.1:
|
|
19852
|
+
optional: true
|
|
19853
|
+
|
|
19067
19854
|
lightningcss-freebsd-x64@1.30.2:
|
|
19068
19855
|
optional: true
|
|
19069
19856
|
|
|
19857
|
+
lightningcss-freebsd-x64@1.31.1:
|
|
19858
|
+
optional: true
|
|
19859
|
+
|
|
19070
19860
|
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
19071
19861
|
optional: true
|
|
19072
19862
|
|
|
19863
|
+
lightningcss-linux-arm-gnueabihf@1.31.1:
|
|
19864
|
+
optional: true
|
|
19865
|
+
|
|
19073
19866
|
lightningcss-linux-arm64-gnu@1.30.2:
|
|
19074
19867
|
optional: true
|
|
19075
19868
|
|
|
19869
|
+
lightningcss-linux-arm64-gnu@1.31.1:
|
|
19870
|
+
optional: true
|
|
19871
|
+
|
|
19076
19872
|
lightningcss-linux-arm64-musl@1.30.2:
|
|
19077
19873
|
optional: true
|
|
19078
19874
|
|
|
19875
|
+
lightningcss-linux-arm64-musl@1.31.1:
|
|
19876
|
+
optional: true
|
|
19877
|
+
|
|
19079
19878
|
lightningcss-linux-x64-gnu@1.30.2:
|
|
19080
19879
|
optional: true
|
|
19081
19880
|
|
|
19881
|
+
lightningcss-linux-x64-gnu@1.31.1:
|
|
19882
|
+
optional: true
|
|
19883
|
+
|
|
19082
19884
|
lightningcss-linux-x64-musl@1.30.2:
|
|
19083
19885
|
optional: true
|
|
19084
19886
|
|
|
19887
|
+
lightningcss-linux-x64-musl@1.31.1:
|
|
19888
|
+
optional: true
|
|
19889
|
+
|
|
19085
19890
|
lightningcss-win32-arm64-msvc@1.30.2:
|
|
19086
19891
|
optional: true
|
|
19087
19892
|
|
|
19893
|
+
lightningcss-win32-arm64-msvc@1.31.1:
|
|
19894
|
+
optional: true
|
|
19895
|
+
|
|
19088
19896
|
lightningcss-win32-x64-msvc@1.30.2:
|
|
19089
19897
|
optional: true
|
|
19090
19898
|
|
|
19899
|
+
lightningcss-win32-x64-msvc@1.31.1:
|
|
19900
|
+
optional: true
|
|
19901
|
+
|
|
19091
19902
|
lightningcss@1.30.2:
|
|
19092
19903
|
dependencies:
|
|
19093
19904
|
detect-libc: 2.1.2
|
|
@@ -19104,6 +19915,22 @@ snapshots:
|
|
|
19104
19915
|
lightningcss-win32-arm64-msvc: 1.30.2
|
|
19105
19916
|
lightningcss-win32-x64-msvc: 1.30.2
|
|
19106
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
|
+
|
|
19107
19934
|
lilconfig@2.1.0: {}
|
|
19108
19935
|
|
|
19109
19936
|
lilconfig@3.1.3: {}
|
|
@@ -19120,6 +19947,8 @@ snapshots:
|
|
|
19120
19947
|
string-argv: 0.3.2
|
|
19121
19948
|
yaml: 2.8.2
|
|
19122
19949
|
|
|
19950
|
+
listenercount@1.0.1: {}
|
|
19951
|
+
|
|
19123
19952
|
listr2@9.0.5:
|
|
19124
19953
|
dependencies:
|
|
19125
19954
|
cli-truncate: 5.1.1
|
|
@@ -19296,9 +20125,13 @@ snapshots:
|
|
|
19296
20125
|
dependencies:
|
|
19297
20126
|
yallist: 3.1.1
|
|
19298
20127
|
|
|
19299
|
-
lucide-react@
|
|
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):
|
|
19300
20129
|
dependencies:
|
|
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))
|
|
20131
|
+
commander: 14.0.2
|
|
20132
|
+
fuse.js: 7.1.0
|
|
19301
20133
|
react: 18.3.1
|
|
20134
|
+
sharp: 0.33.5
|
|
19302
20135
|
|
|
19303
20136
|
magic-string@0.30.21:
|
|
19304
20137
|
dependencies:
|
|
@@ -19403,6 +20236,10 @@ snapshots:
|
|
|
19403
20236
|
dependencies:
|
|
19404
20237
|
brace-expansion: 2.0.2
|
|
19405
20238
|
|
|
20239
|
+
minimatch@7.4.6:
|
|
20240
|
+
dependencies:
|
|
20241
|
+
brace-expansion: 2.0.2
|
|
20242
|
+
|
|
19406
20243
|
minimatch@9.0.3:
|
|
19407
20244
|
dependencies:
|
|
19408
20245
|
brace-expansion: 2.0.2
|
|
@@ -19694,6 +20531,8 @@ snapshots:
|
|
|
19694
20531
|
|
|
19695
20532
|
nextgen-events@1.5.3: {}
|
|
19696
20533
|
|
|
20534
|
+
nice-try@1.0.5: {}
|
|
20535
|
+
|
|
19697
20536
|
no-case@2.3.2:
|
|
19698
20537
|
dependencies:
|
|
19699
20538
|
lower-case: 1.1.4
|
|
@@ -19705,7 +20544,7 @@ snapshots:
|
|
|
19705
20544
|
|
|
19706
20545
|
node-abi@3.87.0:
|
|
19707
20546
|
dependencies:
|
|
19708
|
-
semver: 7.7.
|
|
20547
|
+
semver: 7.7.4
|
|
19709
20548
|
|
|
19710
20549
|
node-abort-controller@3.1.1: {}
|
|
19711
20550
|
|
|
@@ -19724,6 +20563,8 @@ snapshots:
|
|
|
19724
20563
|
dependencies:
|
|
19725
20564
|
whatwg-url: 5.0.0
|
|
19726
20565
|
|
|
20566
|
+
node-machine-id@1.1.12: {}
|
|
20567
|
+
|
|
19727
20568
|
node-releases@2.0.27: {}
|
|
19728
20569
|
|
|
19729
20570
|
normalize-package-data@2.5.0:
|
|
@@ -19752,6 +20593,10 @@ snapshots:
|
|
|
19752
20593
|
|
|
19753
20594
|
npm-normalize-package-bin@1.0.1: {}
|
|
19754
20595
|
|
|
20596
|
+
npm-run-path@2.0.2:
|
|
20597
|
+
dependencies:
|
|
20598
|
+
path-key: 2.0.1
|
|
20599
|
+
|
|
19755
20600
|
npm-run-path@4.0.1:
|
|
19756
20601
|
dependencies:
|
|
19757
20602
|
path-key: 3.1.1
|
|
@@ -19801,6 +20646,16 @@ snapshots:
|
|
|
19801
20646
|
es-abstract: 1.24.1
|
|
19802
20647
|
es-object-atoms: 1.1.1
|
|
19803
20648
|
|
|
20649
|
+
object.getownpropertydescriptors@2.1.9:
|
|
20650
|
+
dependencies:
|
|
20651
|
+
array.prototype.reduce: 1.0.8
|
|
20652
|
+
call-bind: 1.0.8
|
|
20653
|
+
define-properties: 1.2.1
|
|
20654
|
+
es-abstract: 1.24.1
|
|
20655
|
+
es-object-atoms: 1.1.1
|
|
20656
|
+
gopd: 1.2.0
|
|
20657
|
+
safe-array-concat: 1.1.3
|
|
20658
|
+
|
|
19804
20659
|
object.groupby@1.0.3:
|
|
19805
20660
|
dependencies:
|
|
19806
20661
|
call-bind: 1.0.8
|
|
@@ -20005,6 +20860,8 @@ snapshots:
|
|
|
20005
20860
|
|
|
20006
20861
|
path-is-absolute@1.0.1: {}
|
|
20007
20862
|
|
|
20863
|
+
path-key@2.0.1: {}
|
|
20864
|
+
|
|
20008
20865
|
path-key@3.1.1: {}
|
|
20009
20866
|
|
|
20010
20867
|
path-parse@1.0.7: {}
|
|
@@ -20034,6 +20891,9 @@ snapshots:
|
|
|
20034
20891
|
|
|
20035
20892
|
performance-now@2.1.0: {}
|
|
20036
20893
|
|
|
20894
|
+
pg-cloudflare@1.3.0:
|
|
20895
|
+
optional: true
|
|
20896
|
+
|
|
20037
20897
|
pg-connection-string@2.10.1: {}
|
|
20038
20898
|
|
|
20039
20899
|
pg-int8@1.0.1: {}
|
|
@@ -20059,6 +20919,8 @@ snapshots:
|
|
|
20059
20919
|
pg-protocol: 1.11.0
|
|
20060
20920
|
pg-types: 2.2.0
|
|
20061
20921
|
pgpass: 1.0.5
|
|
20922
|
+
optionalDependencies:
|
|
20923
|
+
pg-cloudflare: 1.3.0
|
|
20062
20924
|
|
|
20063
20925
|
pgpass@1.0.5:
|
|
20064
20926
|
dependencies:
|
|
@@ -20454,7 +21316,7 @@ snapshots:
|
|
|
20454
21316
|
dependencies:
|
|
20455
21317
|
postcss: 8.5.6
|
|
20456
21318
|
|
|
20457
|
-
postcss-plugin-shared@1.
|
|
21319
|
+
postcss-plugin-shared@1.1.1(postcss@8.5.6):
|
|
20458
21320
|
dependencies:
|
|
20459
21321
|
defu: 6.1.4
|
|
20460
21322
|
postcss: 8.5.6
|
|
@@ -20539,10 +21401,10 @@ snapshots:
|
|
|
20539
21401
|
postcss: 8.5.6
|
|
20540
21402
|
postcss-selector-parser: 7.1.1
|
|
20541
21403
|
|
|
20542
|
-
postcss-pxtrans@1.0.
|
|
21404
|
+
postcss-pxtrans@1.0.1(postcss@8.5.6):
|
|
20543
21405
|
dependencies:
|
|
20544
21406
|
postcss: 8.5.6
|
|
20545
|
-
postcss-plugin-shared: 1.
|
|
21407
|
+
postcss-plugin-shared: 1.1.1(postcss@8.5.6)
|
|
20546
21408
|
|
|
20547
21409
|
postcss-pxtransform@4.1.9(postcss@8.5.6):
|
|
20548
21410
|
dependencies:
|
|
@@ -20559,10 +21421,10 @@ snapshots:
|
|
|
20559
21421
|
postcss: 8.5.6
|
|
20560
21422
|
postcss-value-parser: 4.2.0
|
|
20561
21423
|
|
|
20562
|
-
postcss-rem-to-responsive-pixel@7.0.
|
|
21424
|
+
postcss-rem-to-responsive-pixel@7.0.1(postcss@8.5.6):
|
|
20563
21425
|
dependencies:
|
|
20564
21426
|
postcss: 8.5.6
|
|
20565
|
-
postcss-plugin-shared: 1.
|
|
21427
|
+
postcss-plugin-shared: 1.1.1(postcss@8.5.6)
|
|
20566
21428
|
|
|
20567
21429
|
postcss-replace-overflow-wrap@4.0.0(postcss@8.5.6):
|
|
20568
21430
|
dependencies:
|
|
@@ -20600,6 +21462,11 @@ snapshots:
|
|
|
20600
21462
|
postcss: 8.5.6
|
|
20601
21463
|
postcss-selector-parser: 6.1.2
|
|
20602
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
|
+
|
|
20603
21470
|
postcss-value-parser@4.2.0: {}
|
|
20604
21471
|
|
|
20605
21472
|
postcss@8.5.6:
|
|
@@ -20608,6 +21475,12 @@ snapshots:
|
|
|
20608
21475
|
picocolors: 1.1.1
|
|
20609
21476
|
source-map-js: 1.2.1
|
|
20610
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
|
+
|
|
20611
21484
|
postgres-array@2.0.0: {}
|
|
20612
21485
|
|
|
20613
21486
|
postgres-bytea@1.0.1: {}
|
|
@@ -20799,7 +21672,7 @@ snapshots:
|
|
|
20799
21672
|
|
|
20800
21673
|
read-package-json@2.1.2:
|
|
20801
21674
|
dependencies:
|
|
20802
|
-
glob: 7.
|
|
21675
|
+
glob: 7.2.3
|
|
20803
21676
|
json-parse-even-better-errors: 2.3.1
|
|
20804
21677
|
normalize-package-data: 2.5.0
|
|
20805
21678
|
npm-normalize-package-bin: 1.0.1
|
|
@@ -20812,6 +21685,12 @@ snapshots:
|
|
|
20812
21685
|
read-package-json: 2.1.2
|
|
20813
21686
|
readdir-scoped-modules: 1.1.0
|
|
20814
21687
|
|
|
21688
|
+
read-package-tree@5.3.1:
|
|
21689
|
+
dependencies:
|
|
21690
|
+
read-package-json: 2.1.2
|
|
21691
|
+
readdir-scoped-modules: 1.1.0
|
|
21692
|
+
util-promisify: 2.1.0
|
|
21693
|
+
|
|
20815
21694
|
readable-stream@1.1.14:
|
|
20816
21695
|
dependencies:
|
|
20817
21696
|
core-util-is: 1.0.3
|
|
@@ -21042,6 +21921,10 @@ snapshots:
|
|
|
21042
21921
|
|
|
21043
21922
|
rfdc@1.4.1: {}
|
|
21044
21923
|
|
|
21924
|
+
rimraf@2.7.1:
|
|
21925
|
+
dependencies:
|
|
21926
|
+
glob: 7.2.3
|
|
21927
|
+
|
|
21045
21928
|
rimraf@3.0.2:
|
|
21046
21929
|
dependencies:
|
|
21047
21930
|
glob: 7.2.3
|
|
@@ -21157,12 +22040,16 @@ snapshots:
|
|
|
21157
22040
|
dependencies:
|
|
21158
22041
|
commander: 2.20.3
|
|
21159
22042
|
|
|
22043
|
+
semver-compare@1.0.0: {}
|
|
22044
|
+
|
|
21160
22045
|
semver@5.7.2: {}
|
|
21161
22046
|
|
|
21162
22047
|
semver@6.3.1: {}
|
|
21163
22048
|
|
|
21164
22049
|
semver@7.7.3: {}
|
|
21165
22050
|
|
|
22051
|
+
semver@7.7.4: {}
|
|
22052
|
+
|
|
21166
22053
|
send@0.19.0:
|
|
21167
22054
|
dependencies:
|
|
21168
22055
|
debug: 2.6.9
|
|
@@ -21267,10 +22154,42 @@ snapshots:
|
|
|
21267
22154
|
dependencies:
|
|
21268
22155
|
kind-of: 6.0.3
|
|
21269
22156
|
|
|
22157
|
+
sharp@0.33.5:
|
|
22158
|
+
dependencies:
|
|
22159
|
+
color: 4.2.3
|
|
22160
|
+
detect-libc: 2.1.2
|
|
22161
|
+
semver: 7.7.4
|
|
22162
|
+
optionalDependencies:
|
|
22163
|
+
'@img/sharp-darwin-arm64': 0.33.5
|
|
22164
|
+
'@img/sharp-darwin-x64': 0.33.5
|
|
22165
|
+
'@img/sharp-libvips-darwin-arm64': 1.0.4
|
|
22166
|
+
'@img/sharp-libvips-darwin-x64': 1.0.4
|
|
22167
|
+
'@img/sharp-libvips-linux-arm': 1.0.5
|
|
22168
|
+
'@img/sharp-libvips-linux-arm64': 1.0.4
|
|
22169
|
+
'@img/sharp-libvips-linux-s390x': 1.0.4
|
|
22170
|
+
'@img/sharp-libvips-linux-x64': 1.0.4
|
|
22171
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.0.4
|
|
22172
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.0.4
|
|
22173
|
+
'@img/sharp-linux-arm': 0.33.5
|
|
22174
|
+
'@img/sharp-linux-arm64': 0.33.5
|
|
22175
|
+
'@img/sharp-linux-s390x': 0.33.5
|
|
22176
|
+
'@img/sharp-linux-x64': 0.33.5
|
|
22177
|
+
'@img/sharp-linuxmusl-arm64': 0.33.5
|
|
22178
|
+
'@img/sharp-linuxmusl-x64': 0.33.5
|
|
22179
|
+
'@img/sharp-wasm32': 0.33.5
|
|
22180
|
+
'@img/sharp-win32-ia32': 0.33.5
|
|
22181
|
+
'@img/sharp-win32-x64': 0.33.5
|
|
22182
|
+
|
|
22183
|
+
shebang-command@1.2.0:
|
|
22184
|
+
dependencies:
|
|
22185
|
+
shebang-regex: 1.0.0
|
|
22186
|
+
|
|
21270
22187
|
shebang-command@2.0.0:
|
|
21271
22188
|
dependencies:
|
|
21272
22189
|
shebang-regex: 3.0.0
|
|
21273
22190
|
|
|
22191
|
+
shebang-regex@1.0.0: {}
|
|
22192
|
+
|
|
21274
22193
|
shebang-regex@3.0.0: {}
|
|
21275
22194
|
|
|
21276
22195
|
shell-quote@1.8.3: {}
|
|
@@ -21327,6 +22246,10 @@ snapshots:
|
|
|
21327
22246
|
bplist-parser: 0.3.1
|
|
21328
22247
|
plist: 3.1.0
|
|
21329
22248
|
|
|
22249
|
+
simple-swizzle@0.2.4:
|
|
22250
|
+
dependencies:
|
|
22251
|
+
is-arrayish: 0.3.4
|
|
22252
|
+
|
|
21330
22253
|
simple-wcswidth@1.1.2: {}
|
|
21331
22254
|
|
|
21332
22255
|
slash@1.0.0: {}
|
|
@@ -21547,6 +22470,8 @@ snapshots:
|
|
|
21547
22470
|
dependencies:
|
|
21548
22471
|
is-natural-number: 4.0.1
|
|
21549
22472
|
|
|
22473
|
+
strip-eof@1.0.0: {}
|
|
22474
|
+
|
|
21550
22475
|
strip-final-newline@2.0.0: {}
|
|
21551
22476
|
|
|
21552
22477
|
strip-json-comments@2.0.1: {}
|
|
@@ -21679,28 +22604,34 @@ snapshots:
|
|
|
21679
22604
|
string-width: 4.2.3
|
|
21680
22605
|
strip-ansi: 6.0.1
|
|
21681
22606
|
|
|
21682
|
-
|
|
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:
|
|
21683
22614
|
dependencies:
|
|
21684
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
22615
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
21685
22616
|
jiti: 2.6.1
|
|
21686
22617
|
lilconfig: 3.1.3
|
|
21687
22618
|
|
|
21688
|
-
tailwindcss-patch@8.
|
|
22619
|
+
tailwindcss-patch@8.7.3(tailwindcss@4.1.18):
|
|
21689
22620
|
dependencies:
|
|
21690
|
-
'@babel/generator': 7.
|
|
21691
|
-
'@babel/parser': 7.
|
|
21692
|
-
'@babel/traverse': 7.
|
|
21693
|
-
'@babel/types': 7.
|
|
21694
|
-
'@tailwindcss-mangle/config': 6.1.
|
|
21695
|
-
'@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
|
|
21696
22627
|
cac: 6.7.14
|
|
21697
22628
|
consola: 3.4.2
|
|
21698
22629
|
fs-extra: 11.3.3
|
|
21699
22630
|
local-pkg: 1.1.2
|
|
21700
22631
|
pathe: 2.0.3
|
|
21701
22632
|
postcss: 8.5.6
|
|
21702
|
-
semver: 7.7.
|
|
21703
|
-
tailwindcss-config: 1.1.
|
|
22633
|
+
semver: 7.7.4
|
|
22634
|
+
tailwindcss-config: 1.1.4
|
|
21704
22635
|
optionalDependencies:
|
|
21705
22636
|
tailwindcss: 4.1.18
|
|
21706
22637
|
transitivePeerDependencies:
|
|
@@ -21709,6 +22640,8 @@ snapshots:
|
|
|
21709
22640
|
|
|
21710
22641
|
tailwindcss@4.1.18: {}
|
|
21711
22642
|
|
|
22643
|
+
tailwindcss@4.2.1: {}
|
|
22644
|
+
|
|
21712
22645
|
tapable@2.3.0: {}
|
|
21713
22646
|
|
|
21714
22647
|
tar-fs@2.1.4:
|
|
@@ -21747,17 +22680,16 @@ snapshots:
|
|
|
21747
22680
|
string-kit: 0.17.10
|
|
21748
22681
|
tree-kit: 0.7.5
|
|
21749
22682
|
|
|
21750
|
-
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)):
|
|
21751
22684
|
dependencies:
|
|
21752
22685
|
'@jridgewell/trace-mapping': 0.3.31
|
|
21753
22686
|
jest-worker: 27.5.1
|
|
21754
22687
|
schema-utils: 4.3.3
|
|
21755
22688
|
serialize-javascript: 6.0.2
|
|
21756
22689
|
terser: 5.44.1
|
|
21757
|
-
webpack: 5.97.1(@swc/core@1.3.96)
|
|
22690
|
+
webpack: 5.97.1(@swc/core@1.3.96)
|
|
21758
22691
|
optionalDependencies:
|
|
21759
22692
|
'@swc/core': 1.3.96
|
|
21760
|
-
esbuild: 0.25.12
|
|
21761
22693
|
optional: true
|
|
21762
22694
|
|
|
21763
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)):
|
|
@@ -21779,6 +22711,13 @@ snapshots:
|
|
|
21779
22711
|
source-map: 0.6.1
|
|
21780
22712
|
source-map-support: 0.5.21
|
|
21781
22713
|
|
|
22714
|
+
terser@5.26.0:
|
|
22715
|
+
dependencies:
|
|
22716
|
+
'@jridgewell/source-map': 0.3.11
|
|
22717
|
+
acorn: 8.15.0
|
|
22718
|
+
commander: 2.20.3
|
|
22719
|
+
source-map-support: 0.5.21
|
|
22720
|
+
|
|
21782
22721
|
terser@5.44.1:
|
|
21783
22722
|
dependencies:
|
|
21784
22723
|
'@jridgewell/source-map': 0.3.11
|
|
@@ -21866,6 +22805,8 @@ snapshots:
|
|
|
21866
22805
|
|
|
21867
22806
|
tr46@0.0.3: {}
|
|
21868
22807
|
|
|
22808
|
+
traverse@0.3.9: {}
|
|
22809
|
+
|
|
21869
22810
|
tree-kill@1.2.2: {}
|
|
21870
22811
|
|
|
21871
22812
|
tree-kit@0.7.5: {}
|
|
@@ -21909,6 +22850,30 @@ snapshots:
|
|
|
21909
22850
|
|
|
21910
22851
|
tslib@2.8.1: {}
|
|
21911
22852
|
|
|
22853
|
+
tt-ide-cli@0.1.31(@types/node@22.19.6):
|
|
22854
|
+
dependencies:
|
|
22855
|
+
'@tt-miniprogram/ext-pack': 1.2.4
|
|
22856
|
+
archiver: 5.3.2
|
|
22857
|
+
chalk: 4.1.2
|
|
22858
|
+
clipboardy: 2.3.0
|
|
22859
|
+
commander: 5.1.0
|
|
22860
|
+
deep-clone: 3.0.3
|
|
22861
|
+
easy-table: 1.2.0
|
|
22862
|
+
fast-glob: 3.3.2
|
|
22863
|
+
folder-hash: 4.1.1
|
|
22864
|
+
form-data: 4.0.5
|
|
22865
|
+
fs-extra: 10.1.0
|
|
22866
|
+
inquirer: 8.2.7(@types/node@22.19.6)
|
|
22867
|
+
node-machine-id: 1.1.12
|
|
22868
|
+
ora: 5.4.1
|
|
22869
|
+
qrcode: 1.5.4
|
|
22870
|
+
qrcode-terminal: 0.12.0
|
|
22871
|
+
semver-compare: 1.0.0
|
|
22872
|
+
unzipper: 0.10.14
|
|
22873
|
+
transitivePeerDependencies:
|
|
22874
|
+
- '@types/node'
|
|
22875
|
+
- supports-color
|
|
22876
|
+
|
|
21912
22877
|
tunnel-agent@0.6.0:
|
|
21913
22878
|
dependencies:
|
|
21914
22879
|
safe-buffer: 5.2.1
|
|
@@ -22027,6 +22992,19 @@ snapshots:
|
|
|
22027
22992
|
|
|
22028
22993
|
unpipe@1.0.0: {}
|
|
22029
22994
|
|
|
22995
|
+
unzipper@0.10.14:
|
|
22996
|
+
dependencies:
|
|
22997
|
+
big-integer: 1.6.52
|
|
22998
|
+
binary: 0.3.0
|
|
22999
|
+
bluebird: 3.4.7
|
|
23000
|
+
buffer-indexof-polyfill: 1.0.2
|
|
23001
|
+
duplexer2: 0.1.4
|
|
23002
|
+
fstream: 1.0.12
|
|
23003
|
+
graceful-fs: 4.2.11
|
|
23004
|
+
listenercount: 1.0.1
|
|
23005
|
+
readable-stream: 2.3.8
|
|
23006
|
+
setimmediate: 1.0.5
|
|
23007
|
+
|
|
22030
23008
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
22031
23009
|
dependencies:
|
|
22032
23010
|
browserslist: 4.28.1
|
|
@@ -22063,6 +23041,10 @@ snapshots:
|
|
|
22063
23041
|
|
|
22064
23042
|
util-deprecate@1.0.2: {}
|
|
22065
23043
|
|
|
23044
|
+
util-promisify@2.1.0:
|
|
23045
|
+
dependencies:
|
|
23046
|
+
object.getownpropertydescriptors: 2.1.9
|
|
23047
|
+
|
|
22066
23048
|
utils-merge@1.0.1: {}
|
|
22067
23049
|
|
|
22068
23050
|
uuid@10.0.0: {}
|
|
@@ -22092,15 +23074,15 @@ snapshots:
|
|
|
22092
23074
|
clone-stats: 0.0.1
|
|
22093
23075
|
replace-ext: 0.0.1
|
|
22094
23076
|
|
|
22095
|
-
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)):
|
|
22096
23078
|
dependencies:
|
|
22097
23079
|
chokidar: 3.6.0
|
|
22098
23080
|
fast-glob: 3.3.3
|
|
22099
23081
|
fs-extra: 11.3.3
|
|
22100
23082
|
picocolors: 1.1.1
|
|
22101
|
-
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)
|
|
22102
23084
|
|
|
22103
|
-
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):
|
|
22104
23086
|
dependencies:
|
|
22105
23087
|
esbuild: 0.18.20
|
|
22106
23088
|
postcss: 8.5.6
|
|
@@ -22109,7 +23091,7 @@ snapshots:
|
|
|
22109
23091
|
'@types/node': 22.19.6
|
|
22110
23092
|
fsevents: 2.3.3
|
|
22111
23093
|
less: 4.5.1
|
|
22112
|
-
lightningcss: 1.
|
|
23094
|
+
lightningcss: 1.31.1
|
|
22113
23095
|
sass: 1.97.2
|
|
22114
23096
|
terser: 5.44.1
|
|
22115
23097
|
|
|
@@ -22122,31 +23104,31 @@ snapshots:
|
|
|
22122
23104
|
dependencies:
|
|
22123
23105
|
defaults: 1.0.4
|
|
22124
23106
|
|
|
22125
|
-
weapp-tailwindcss@4.
|
|
23107
|
+
weapp-tailwindcss@4.10.3(tailwindcss@4.1.18):
|
|
22126
23108
|
dependencies:
|
|
22127
23109
|
'@ast-core/escape': 1.0.1
|
|
22128
|
-
'@babel/parser': 7.
|
|
22129
|
-
'@babel/traverse': 7.
|
|
22130
|
-
'@babel/types': 7.
|
|
22131
|
-
'@tailwindcss-mangle/config': 6.1.
|
|
22132
|
-
'@vue/compiler-dom': 3.5.
|
|
22133
|
-
'@vue/compiler-sfc': 3.5.
|
|
22134
|
-
'@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
|
|
22135
23117
|
'@weapp-core/regex': 1.0.1
|
|
22136
23118
|
'@weapp-tailwindcss/logger': 1.1.0
|
|
22137
|
-
'@weapp-tailwindcss/postcss': 2.1.
|
|
22138
|
-
'@weapp-tailwindcss/shared': 1.1.
|
|
23119
|
+
'@weapp-tailwindcss/postcss': 2.1.5
|
|
23120
|
+
'@weapp-tailwindcss/shared': 1.1.2
|
|
22139
23121
|
cac: 6.7.14
|
|
22140
23122
|
debug: 4.4.3
|
|
22141
23123
|
fast-glob: 3.3.3
|
|
22142
|
-
htmlparser2: 10.
|
|
23124
|
+
htmlparser2: 10.1.0
|
|
22143
23125
|
loader-utils: 2.0.4
|
|
22144
23126
|
local-pkg: 1.1.2
|
|
22145
23127
|
lru-cache: 10.4.3
|
|
22146
23128
|
magic-string: 0.30.21
|
|
22147
|
-
semver: 7.7.
|
|
22148
|
-
tailwindcss-patch: 8.
|
|
22149
|
-
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
|
|
22150
23132
|
yaml: 2.8.2
|
|
22151
23133
|
transitivePeerDependencies:
|
|
22152
23134
|
- magicast
|
|
@@ -22165,7 +23147,9 @@ snapshots:
|
|
|
22165
23147
|
|
|
22166
23148
|
webpack-sources@3.3.3: {}
|
|
22167
23149
|
|
|
22168
|
-
webpack@
|
|
23150
|
+
webpack-sources@3.3.4: {}
|
|
23151
|
+
|
|
23152
|
+
webpack@5.97.1(@swc/core@1.3.96):
|
|
22169
23153
|
dependencies:
|
|
22170
23154
|
'@types/eslint-scope': 3.7.7
|
|
22171
23155
|
'@types/estree': 1.0.8
|
|
@@ -22187,7 +23171,7 @@ snapshots:
|
|
|
22187
23171
|
neo-async: 2.6.2
|
|
22188
23172
|
schema-utils: 3.3.0
|
|
22189
23173
|
tapable: 2.3.0
|
|
22190
|
-
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))
|
|
22191
23175
|
watchpack: 2.5.0
|
|
22192
23176
|
webpack-sources: 3.3.3
|
|
22193
23177
|
transitivePeerDependencies:
|