wexts 2.0.6 → 2.0.8
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/dist/chunk-63MTCWU2.mjs +361 -0
- package/dist/chunk-63MTCWU2.mjs.map +1 -0
- package/dist/chunk-67IJ6H4J.mjs +44 -0
- package/dist/chunk-67IJ6H4J.mjs.map +1 -0
- package/dist/chunk-7NSRDJ5C.mjs +1 -0
- package/dist/chunk-7NSRDJ5C.mjs.map +1 -0
- package/dist/chunk-ASDXAK6G.js +44 -0
- package/dist/chunk-ASDXAK6G.js.map +1 -0
- package/dist/chunk-CKZ4VSCB.mjs +18 -0
- package/dist/chunk-CKZ4VSCB.mjs.map +1 -0
- package/dist/chunk-DW6GOKMF.js +57 -0
- package/dist/chunk-DW6GOKMF.js.map +1 -0
- package/dist/chunk-GKVPGKAH.js +66 -0
- package/dist/chunk-GKVPGKAH.js.map +1 -0
- package/dist/chunk-HSFLZUJN.mjs +57 -0
- package/dist/chunk-HSFLZUJN.mjs.map +1 -0
- package/dist/chunk-HU63F22V.js +361 -0
- package/dist/chunk-HU63F22V.js.map +1 -0
- package/dist/chunk-JMBD6DOP.js +225 -0
- package/dist/chunk-JMBD6DOP.js.map +1 -0
- package/dist/chunk-K7EIJSYQ.js +1 -0
- package/dist/chunk-K7EIJSYQ.js.map +1 -0
- package/dist/chunk-OTBYRUBE.mjs +225 -0
- package/dist/chunk-OTBYRUBE.mjs.map +1 -0
- package/dist/chunk-WMHVXEYQ.mjs +66 -0
- package/dist/chunk-WMHVXEYQ.mjs.map +1 -0
- package/dist/cli/index.js +91 -43
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +62 -12
- package/dist/cli/index.mjs.map +1 -1
- package/dist/client/index.js +2 -2
- package/dist/client/index.mjs +2 -2
- package/dist/codegen/index.d.mts +1 -0
- package/dist/codegen/index.d.ts +1 -0
- package/dist/codegen/index.js +13 -0
- package/dist/codegen/index.js.map +1 -0
- package/dist/codegen/index.mjs +13 -0
- package/dist/codegen/index.mjs.map +1 -0
- package/dist/dev-server/index.d.mts +1 -0
- package/dist/dev-server/index.d.ts +1 -0
- package/dist/dev-server/index.js +13 -0
- package/dist/dev-server/index.js.map +1 -0
- package/dist/dev-server/index.mjs +13 -0
- package/dist/dev-server/index.mjs.map +1 -0
- package/dist/index-SjUaHgFr.d.mts +75 -0
- package/dist/index-SjUaHgFr.d.ts +75 -0
- package/dist/index-tFGPFVfQ.d.mts +67 -0
- package/dist/index-tFGPFVfQ.d.ts +67 -0
- package/dist/index.d.mts +83 -164
- package/dist/index.d.ts +83 -164
- package/dist/index.js +89 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +76 -9
- package/dist/index.mjs.map +1 -1
- package/dist/nest/index.js +2 -2
- package/dist/nest/index.mjs +2 -2
- package/dist/next/index.d.mts +61 -3
- package/dist/next/index.d.ts +61 -3
- package/dist/next/index.js +140 -7
- package/dist/next/index.js.map +1 -1
- package/dist/next/index.mjs +102 -7
- package/dist/next/index.mjs.map +1 -1
- package/dist/types/index.js +1 -1
- package/dist/types/index.mjs +2 -1
- package/package.json +1 -1
- package/templates/nestjs-api/package-lock.json +5623 -0
- package/templates/nestjs-api/package.json +21 -19
- package/templates/nestjs-api/prisma/migrations/20251123205437_init/migration.sql +24 -0
- package/templates/nestjs-api/prisma/migrations/migration_lock.toml +3 -0
- package/templates/nestjs-api/src/auth/auth.controller.ts +5 -5
- package/templates/nestjs-api/src/main.ts +1 -1
- package/templates/nestjs-api/src/todos/todos.controller.ts +7 -7
- package/templates/nestjs-api/src/users/users.controller.ts +3 -3
- package/templates/nestjs-api/tsconfig.json +20 -1
- package/templates/nextjs-web/app/actions/auth.ts +79 -0
- package/templates/nextjs-web/app/dashboard/error.tsx +39 -0
- package/templates/nextjs-web/app/dashboard/loading.tsx +14 -0
- package/templates/nextjs-web/app/dashboard/page.tsx +2 -172
- package/templates/nextjs-web/app/globals.css +80 -15
- package/templates/nextjs-web/app/layout.tsx +7 -5
- package/templates/nextjs-web/app/login/page.tsx +2 -104
- package/templates/nextjs-web/app/page.tsx +1 -1
- package/templates/nextjs-web/app/register/page.tsx +2 -127
- package/templates/nextjs-web/components/ui/button.tsx +56 -0
- package/templates/nextjs-web/components/ui/card.tsx +79 -0
- package/templates/nextjs-web/components/ui/input.tsx +25 -0
- package/templates/nextjs-web/components/ui/label.tsx +24 -0
- package/templates/nextjs-web/features/auth/LoginForm.tsx +140 -0
- package/templates/nextjs-web/features/auth/RegisterForm.tsx +159 -0
- package/templates/nextjs-web/features/auth/api.ts +35 -0
- package/templates/nextjs-web/features/auth/index.ts +3 -0
- package/templates/nextjs-web/features/dashboard/DashboardView.tsx +204 -0
- package/templates/nextjs-web/features/dashboard/api.ts +9 -0
- package/templates/nextjs-web/features/dashboard/components.tsx +74 -0
- package/templates/nextjs-web/features/dashboard/index.ts +3 -0
- package/templates/nextjs-web/hooks/index.ts +4 -0
- package/templates/nextjs-web/lib/api-client.ts +89 -0
- package/templates/nextjs-web/lib/axios-global-config.ts +17 -0
- package/templates/nextjs-web/lib/utils.ts +6 -0
- package/templates/nextjs-web/lib/wexts-client.ts +4 -0
- package/templates/nextjs-web/next-env.d.ts +6 -0
- package/templates/nextjs-web/next.config.ts +20 -0
- package/templates/nextjs-web/package-lock.json +3254 -0
- package/templates/nextjs-web/package.json +23 -14
- package/templates/nextjs-web/postcss.config.js +6 -0
- package/templates/nextjs-web/tailwind.config.ts +55 -1
- package/templates/nextjs-web/tsconfig.json +41 -39
- package/templates/nestjs-api/.env.example +0 -4
- package/templates/nextjs-web/next.config.mjs +0 -4
- /package/templates/nextjs-web/{.env.local.example → .env} +0 -0
|
@@ -0,0 +1,3254 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wexts-web",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "wexts-web",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
12
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
13
|
+
"axios": "^1.13.2",
|
|
14
|
+
"class-variance-authority": "^0.7.1",
|
|
15
|
+
"clsx": "^2.1.1",
|
|
16
|
+
"cookies-next": "^6.1.1",
|
|
17
|
+
"framer-motion": "^12.23.24",
|
|
18
|
+
"lucide-react": "^0.554.0",
|
|
19
|
+
"next": "^16.0.0",
|
|
20
|
+
"react": "^19.0.0",
|
|
21
|
+
"react-dom": "^19.0.0",
|
|
22
|
+
"react-hot-toast": "^2.6.0",
|
|
23
|
+
"tailwind-merge": "^2.6.0",
|
|
24
|
+
"wexts": "^2.0.0",
|
|
25
|
+
"zod": "^4.1.12"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.0.0",
|
|
29
|
+
"@types/react": "^19.0.0",
|
|
30
|
+
"@types/react-dom": "^19.0.0",
|
|
31
|
+
"autoprefixer": "^10.4.0",
|
|
32
|
+
"postcss": "^8.4.0",
|
|
33
|
+
"tailwindcss": "^3.4.0",
|
|
34
|
+
"typescript": "^5.9.3"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"node_modules/@alloc/quick-lru": {
|
|
38
|
+
"version": "5.2.0",
|
|
39
|
+
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
|
40
|
+
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
|
|
41
|
+
"dev": true,
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=10"
|
|
45
|
+
},
|
|
46
|
+
"funding": {
|
|
47
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"node_modules/@emnapi/runtime": {
|
|
51
|
+
"version": "1.7.1",
|
|
52
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz",
|
|
53
|
+
"integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==",
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"optional": true,
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"tslib": "^2.4.0"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/@img/colour": {
|
|
61
|
+
"version": "1.0.0",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
|
|
63
|
+
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"optional": true,
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
71
|
+
"version": "0.34.5",
|
|
72
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
|
|
73
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
74
|
+
"cpu": [
|
|
75
|
+
"arm64"
|
|
76
|
+
],
|
|
77
|
+
"license": "Apache-2.0",
|
|
78
|
+
"optional": true,
|
|
79
|
+
"os": [
|
|
80
|
+
"darwin"
|
|
81
|
+
],
|
|
82
|
+
"engines": {
|
|
83
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
84
|
+
},
|
|
85
|
+
"funding": {
|
|
86
|
+
"url": "https://opencollective.com/libvips"
|
|
87
|
+
},
|
|
88
|
+
"optionalDependencies": {
|
|
89
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
93
|
+
"version": "0.34.5",
|
|
94
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
|
|
95
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
96
|
+
"cpu": [
|
|
97
|
+
"x64"
|
|
98
|
+
],
|
|
99
|
+
"license": "Apache-2.0",
|
|
100
|
+
"optional": true,
|
|
101
|
+
"os": [
|
|
102
|
+
"darwin"
|
|
103
|
+
],
|
|
104
|
+
"engines": {
|
|
105
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
106
|
+
},
|
|
107
|
+
"funding": {
|
|
108
|
+
"url": "https://opencollective.com/libvips"
|
|
109
|
+
},
|
|
110
|
+
"optionalDependencies": {
|
|
111
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
115
|
+
"version": "1.2.4",
|
|
116
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
|
|
117
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
118
|
+
"cpu": [
|
|
119
|
+
"arm64"
|
|
120
|
+
],
|
|
121
|
+
"license": "LGPL-3.0-or-later",
|
|
122
|
+
"optional": true,
|
|
123
|
+
"os": [
|
|
124
|
+
"darwin"
|
|
125
|
+
],
|
|
126
|
+
"funding": {
|
|
127
|
+
"url": "https://opencollective.com/libvips"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
131
|
+
"version": "1.2.4",
|
|
132
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
|
|
133
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
134
|
+
"cpu": [
|
|
135
|
+
"x64"
|
|
136
|
+
],
|
|
137
|
+
"license": "LGPL-3.0-or-later",
|
|
138
|
+
"optional": true,
|
|
139
|
+
"os": [
|
|
140
|
+
"darwin"
|
|
141
|
+
],
|
|
142
|
+
"funding": {
|
|
143
|
+
"url": "https://opencollective.com/libvips"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
147
|
+
"version": "1.2.4",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
|
|
149
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
150
|
+
"cpu": [
|
|
151
|
+
"arm"
|
|
152
|
+
],
|
|
153
|
+
"license": "LGPL-3.0-or-later",
|
|
154
|
+
"optional": true,
|
|
155
|
+
"os": [
|
|
156
|
+
"linux"
|
|
157
|
+
],
|
|
158
|
+
"funding": {
|
|
159
|
+
"url": "https://opencollective.com/libvips"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
163
|
+
"version": "1.2.4",
|
|
164
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
|
|
165
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
166
|
+
"cpu": [
|
|
167
|
+
"arm64"
|
|
168
|
+
],
|
|
169
|
+
"license": "LGPL-3.0-or-later",
|
|
170
|
+
"optional": true,
|
|
171
|
+
"os": [
|
|
172
|
+
"linux"
|
|
173
|
+
],
|
|
174
|
+
"funding": {
|
|
175
|
+
"url": "https://opencollective.com/libvips"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
179
|
+
"version": "1.2.4",
|
|
180
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
|
|
181
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
182
|
+
"cpu": [
|
|
183
|
+
"ppc64"
|
|
184
|
+
],
|
|
185
|
+
"license": "LGPL-3.0-or-later",
|
|
186
|
+
"optional": true,
|
|
187
|
+
"os": [
|
|
188
|
+
"linux"
|
|
189
|
+
],
|
|
190
|
+
"funding": {
|
|
191
|
+
"url": "https://opencollective.com/libvips"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/@img/sharp-libvips-linux-riscv64": {
|
|
195
|
+
"version": "1.2.4",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
|
|
197
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
198
|
+
"cpu": [
|
|
199
|
+
"riscv64"
|
|
200
|
+
],
|
|
201
|
+
"license": "LGPL-3.0-or-later",
|
|
202
|
+
"optional": true,
|
|
203
|
+
"os": [
|
|
204
|
+
"linux"
|
|
205
|
+
],
|
|
206
|
+
"funding": {
|
|
207
|
+
"url": "https://opencollective.com/libvips"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
211
|
+
"version": "1.2.4",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
|
|
213
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
214
|
+
"cpu": [
|
|
215
|
+
"s390x"
|
|
216
|
+
],
|
|
217
|
+
"license": "LGPL-3.0-or-later",
|
|
218
|
+
"optional": true,
|
|
219
|
+
"os": [
|
|
220
|
+
"linux"
|
|
221
|
+
],
|
|
222
|
+
"funding": {
|
|
223
|
+
"url": "https://opencollective.com/libvips"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
227
|
+
"version": "1.2.4",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
|
|
229
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
230
|
+
"cpu": [
|
|
231
|
+
"x64"
|
|
232
|
+
],
|
|
233
|
+
"license": "LGPL-3.0-or-later",
|
|
234
|
+
"optional": true,
|
|
235
|
+
"os": [
|
|
236
|
+
"linux"
|
|
237
|
+
],
|
|
238
|
+
"funding": {
|
|
239
|
+
"url": "https://opencollective.com/libvips"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
243
|
+
"version": "1.2.4",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
|
|
245
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
246
|
+
"cpu": [
|
|
247
|
+
"arm64"
|
|
248
|
+
],
|
|
249
|
+
"license": "LGPL-3.0-or-later",
|
|
250
|
+
"optional": true,
|
|
251
|
+
"os": [
|
|
252
|
+
"linux"
|
|
253
|
+
],
|
|
254
|
+
"funding": {
|
|
255
|
+
"url": "https://opencollective.com/libvips"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
259
|
+
"version": "1.2.4",
|
|
260
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
|
|
261
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
262
|
+
"cpu": [
|
|
263
|
+
"x64"
|
|
264
|
+
],
|
|
265
|
+
"license": "LGPL-3.0-or-later",
|
|
266
|
+
"optional": true,
|
|
267
|
+
"os": [
|
|
268
|
+
"linux"
|
|
269
|
+
],
|
|
270
|
+
"funding": {
|
|
271
|
+
"url": "https://opencollective.com/libvips"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"node_modules/@img/sharp-linux-arm": {
|
|
275
|
+
"version": "0.34.5",
|
|
276
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
|
|
277
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
278
|
+
"cpu": [
|
|
279
|
+
"arm"
|
|
280
|
+
],
|
|
281
|
+
"license": "Apache-2.0",
|
|
282
|
+
"optional": true,
|
|
283
|
+
"os": [
|
|
284
|
+
"linux"
|
|
285
|
+
],
|
|
286
|
+
"engines": {
|
|
287
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
288
|
+
},
|
|
289
|
+
"funding": {
|
|
290
|
+
"url": "https://opencollective.com/libvips"
|
|
291
|
+
},
|
|
292
|
+
"optionalDependencies": {
|
|
293
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
297
|
+
"version": "0.34.5",
|
|
298
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
|
|
299
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
300
|
+
"cpu": [
|
|
301
|
+
"arm64"
|
|
302
|
+
],
|
|
303
|
+
"license": "Apache-2.0",
|
|
304
|
+
"optional": true,
|
|
305
|
+
"os": [
|
|
306
|
+
"linux"
|
|
307
|
+
],
|
|
308
|
+
"engines": {
|
|
309
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
310
|
+
},
|
|
311
|
+
"funding": {
|
|
312
|
+
"url": "https://opencollective.com/libvips"
|
|
313
|
+
},
|
|
314
|
+
"optionalDependencies": {
|
|
315
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
319
|
+
"version": "0.34.5",
|
|
320
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
|
|
321
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
322
|
+
"cpu": [
|
|
323
|
+
"ppc64"
|
|
324
|
+
],
|
|
325
|
+
"license": "Apache-2.0",
|
|
326
|
+
"optional": true,
|
|
327
|
+
"os": [
|
|
328
|
+
"linux"
|
|
329
|
+
],
|
|
330
|
+
"engines": {
|
|
331
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
332
|
+
},
|
|
333
|
+
"funding": {
|
|
334
|
+
"url": "https://opencollective.com/libvips"
|
|
335
|
+
},
|
|
336
|
+
"optionalDependencies": {
|
|
337
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
341
|
+
"version": "0.34.5",
|
|
342
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
|
|
343
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
344
|
+
"cpu": [
|
|
345
|
+
"riscv64"
|
|
346
|
+
],
|
|
347
|
+
"license": "Apache-2.0",
|
|
348
|
+
"optional": true,
|
|
349
|
+
"os": [
|
|
350
|
+
"linux"
|
|
351
|
+
],
|
|
352
|
+
"engines": {
|
|
353
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
354
|
+
},
|
|
355
|
+
"funding": {
|
|
356
|
+
"url": "https://opencollective.com/libvips"
|
|
357
|
+
},
|
|
358
|
+
"optionalDependencies": {
|
|
359
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
363
|
+
"version": "0.34.5",
|
|
364
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
|
|
365
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
366
|
+
"cpu": [
|
|
367
|
+
"s390x"
|
|
368
|
+
],
|
|
369
|
+
"license": "Apache-2.0",
|
|
370
|
+
"optional": true,
|
|
371
|
+
"os": [
|
|
372
|
+
"linux"
|
|
373
|
+
],
|
|
374
|
+
"engines": {
|
|
375
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
376
|
+
},
|
|
377
|
+
"funding": {
|
|
378
|
+
"url": "https://opencollective.com/libvips"
|
|
379
|
+
},
|
|
380
|
+
"optionalDependencies": {
|
|
381
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
385
|
+
"version": "0.34.5",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
|
|
387
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
388
|
+
"cpu": [
|
|
389
|
+
"x64"
|
|
390
|
+
],
|
|
391
|
+
"license": "Apache-2.0",
|
|
392
|
+
"optional": true,
|
|
393
|
+
"os": [
|
|
394
|
+
"linux"
|
|
395
|
+
],
|
|
396
|
+
"engines": {
|
|
397
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
398
|
+
},
|
|
399
|
+
"funding": {
|
|
400
|
+
"url": "https://opencollective.com/libvips"
|
|
401
|
+
},
|
|
402
|
+
"optionalDependencies": {
|
|
403
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
407
|
+
"version": "0.34.5",
|
|
408
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
|
|
409
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
410
|
+
"cpu": [
|
|
411
|
+
"arm64"
|
|
412
|
+
],
|
|
413
|
+
"license": "Apache-2.0",
|
|
414
|
+
"optional": true,
|
|
415
|
+
"os": [
|
|
416
|
+
"linux"
|
|
417
|
+
],
|
|
418
|
+
"engines": {
|
|
419
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
420
|
+
},
|
|
421
|
+
"funding": {
|
|
422
|
+
"url": "https://opencollective.com/libvips"
|
|
423
|
+
},
|
|
424
|
+
"optionalDependencies": {
|
|
425
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
429
|
+
"version": "0.34.5",
|
|
430
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
|
|
431
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
432
|
+
"cpu": [
|
|
433
|
+
"x64"
|
|
434
|
+
],
|
|
435
|
+
"license": "Apache-2.0",
|
|
436
|
+
"optional": true,
|
|
437
|
+
"os": [
|
|
438
|
+
"linux"
|
|
439
|
+
],
|
|
440
|
+
"engines": {
|
|
441
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
442
|
+
},
|
|
443
|
+
"funding": {
|
|
444
|
+
"url": "https://opencollective.com/libvips"
|
|
445
|
+
},
|
|
446
|
+
"optionalDependencies": {
|
|
447
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"node_modules/@img/sharp-wasm32": {
|
|
451
|
+
"version": "0.34.5",
|
|
452
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
|
|
453
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
454
|
+
"cpu": [
|
|
455
|
+
"wasm32"
|
|
456
|
+
],
|
|
457
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
458
|
+
"optional": true,
|
|
459
|
+
"dependencies": {
|
|
460
|
+
"@emnapi/runtime": "^1.7.0"
|
|
461
|
+
},
|
|
462
|
+
"engines": {
|
|
463
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
464
|
+
},
|
|
465
|
+
"funding": {
|
|
466
|
+
"url": "https://opencollective.com/libvips"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
470
|
+
"version": "0.34.5",
|
|
471
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
|
|
472
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
473
|
+
"cpu": [
|
|
474
|
+
"arm64"
|
|
475
|
+
],
|
|
476
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
477
|
+
"optional": true,
|
|
478
|
+
"os": [
|
|
479
|
+
"win32"
|
|
480
|
+
],
|
|
481
|
+
"engines": {
|
|
482
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
483
|
+
},
|
|
484
|
+
"funding": {
|
|
485
|
+
"url": "https://opencollective.com/libvips"
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
489
|
+
"version": "0.34.5",
|
|
490
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
|
|
491
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
492
|
+
"cpu": [
|
|
493
|
+
"ia32"
|
|
494
|
+
],
|
|
495
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
496
|
+
"optional": true,
|
|
497
|
+
"os": [
|
|
498
|
+
"win32"
|
|
499
|
+
],
|
|
500
|
+
"engines": {
|
|
501
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
502
|
+
},
|
|
503
|
+
"funding": {
|
|
504
|
+
"url": "https://opencollective.com/libvips"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
508
|
+
"version": "0.34.5",
|
|
509
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
|
|
510
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
511
|
+
"cpu": [
|
|
512
|
+
"x64"
|
|
513
|
+
],
|
|
514
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
515
|
+
"optional": true,
|
|
516
|
+
"os": [
|
|
517
|
+
"win32"
|
|
518
|
+
],
|
|
519
|
+
"engines": {
|
|
520
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
521
|
+
},
|
|
522
|
+
"funding": {
|
|
523
|
+
"url": "https://opencollective.com/libvips"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"node_modules/@inquirer/ansi": {
|
|
527
|
+
"version": "1.0.2",
|
|
528
|
+
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.2.tgz",
|
|
529
|
+
"integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==",
|
|
530
|
+
"license": "MIT",
|
|
531
|
+
"engines": {
|
|
532
|
+
"node": ">=18"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
"node_modules/@inquirer/checkbox": {
|
|
536
|
+
"version": "4.3.2",
|
|
537
|
+
"resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.3.2.tgz",
|
|
538
|
+
"integrity": "sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==",
|
|
539
|
+
"license": "MIT",
|
|
540
|
+
"dependencies": {
|
|
541
|
+
"@inquirer/ansi": "^1.0.2",
|
|
542
|
+
"@inquirer/core": "^10.3.2",
|
|
543
|
+
"@inquirer/figures": "^1.0.15",
|
|
544
|
+
"@inquirer/type": "^3.0.10",
|
|
545
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
546
|
+
},
|
|
547
|
+
"engines": {
|
|
548
|
+
"node": ">=18"
|
|
549
|
+
},
|
|
550
|
+
"peerDependencies": {
|
|
551
|
+
"@types/node": ">=18"
|
|
552
|
+
},
|
|
553
|
+
"peerDependenciesMeta": {
|
|
554
|
+
"@types/node": {
|
|
555
|
+
"optional": true
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"node_modules/@inquirer/confirm": {
|
|
560
|
+
"version": "5.1.21",
|
|
561
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.21.tgz",
|
|
562
|
+
"integrity": "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==",
|
|
563
|
+
"license": "MIT",
|
|
564
|
+
"dependencies": {
|
|
565
|
+
"@inquirer/core": "^10.3.2",
|
|
566
|
+
"@inquirer/type": "^3.0.10"
|
|
567
|
+
},
|
|
568
|
+
"engines": {
|
|
569
|
+
"node": ">=18"
|
|
570
|
+
},
|
|
571
|
+
"peerDependencies": {
|
|
572
|
+
"@types/node": ">=18"
|
|
573
|
+
},
|
|
574
|
+
"peerDependenciesMeta": {
|
|
575
|
+
"@types/node": {
|
|
576
|
+
"optional": true
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"node_modules/@inquirer/core": {
|
|
581
|
+
"version": "10.3.2",
|
|
582
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.3.2.tgz",
|
|
583
|
+
"integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==",
|
|
584
|
+
"license": "MIT",
|
|
585
|
+
"dependencies": {
|
|
586
|
+
"@inquirer/ansi": "^1.0.2",
|
|
587
|
+
"@inquirer/figures": "^1.0.15",
|
|
588
|
+
"@inquirer/type": "^3.0.10",
|
|
589
|
+
"cli-width": "^4.1.0",
|
|
590
|
+
"mute-stream": "^2.0.0",
|
|
591
|
+
"signal-exit": "^4.1.0",
|
|
592
|
+
"wrap-ansi": "^6.2.0",
|
|
593
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
594
|
+
},
|
|
595
|
+
"engines": {
|
|
596
|
+
"node": ">=18"
|
|
597
|
+
},
|
|
598
|
+
"peerDependencies": {
|
|
599
|
+
"@types/node": ">=18"
|
|
600
|
+
},
|
|
601
|
+
"peerDependenciesMeta": {
|
|
602
|
+
"@types/node": {
|
|
603
|
+
"optional": true
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"node_modules/@inquirer/editor": {
|
|
608
|
+
"version": "4.2.23",
|
|
609
|
+
"resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.23.tgz",
|
|
610
|
+
"integrity": "sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==",
|
|
611
|
+
"license": "MIT",
|
|
612
|
+
"dependencies": {
|
|
613
|
+
"@inquirer/core": "^10.3.2",
|
|
614
|
+
"@inquirer/external-editor": "^1.0.3",
|
|
615
|
+
"@inquirer/type": "^3.0.10"
|
|
616
|
+
},
|
|
617
|
+
"engines": {
|
|
618
|
+
"node": ">=18"
|
|
619
|
+
},
|
|
620
|
+
"peerDependencies": {
|
|
621
|
+
"@types/node": ">=18"
|
|
622
|
+
},
|
|
623
|
+
"peerDependenciesMeta": {
|
|
624
|
+
"@types/node": {
|
|
625
|
+
"optional": true
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
"node_modules/@inquirer/expand": {
|
|
630
|
+
"version": "4.0.23",
|
|
631
|
+
"resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.23.tgz",
|
|
632
|
+
"integrity": "sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==",
|
|
633
|
+
"license": "MIT",
|
|
634
|
+
"dependencies": {
|
|
635
|
+
"@inquirer/core": "^10.3.2",
|
|
636
|
+
"@inquirer/type": "^3.0.10",
|
|
637
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
638
|
+
},
|
|
639
|
+
"engines": {
|
|
640
|
+
"node": ">=18"
|
|
641
|
+
},
|
|
642
|
+
"peerDependencies": {
|
|
643
|
+
"@types/node": ">=18"
|
|
644
|
+
},
|
|
645
|
+
"peerDependenciesMeta": {
|
|
646
|
+
"@types/node": {
|
|
647
|
+
"optional": true
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"node_modules/@inquirer/external-editor": {
|
|
652
|
+
"version": "1.0.3",
|
|
653
|
+
"resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz",
|
|
654
|
+
"integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==",
|
|
655
|
+
"license": "MIT",
|
|
656
|
+
"dependencies": {
|
|
657
|
+
"chardet": "^2.1.1",
|
|
658
|
+
"iconv-lite": "^0.7.0"
|
|
659
|
+
},
|
|
660
|
+
"engines": {
|
|
661
|
+
"node": ">=18"
|
|
662
|
+
},
|
|
663
|
+
"peerDependencies": {
|
|
664
|
+
"@types/node": ">=18"
|
|
665
|
+
},
|
|
666
|
+
"peerDependenciesMeta": {
|
|
667
|
+
"@types/node": {
|
|
668
|
+
"optional": true
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
"node_modules/@inquirer/figures": {
|
|
673
|
+
"version": "1.0.15",
|
|
674
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.15.tgz",
|
|
675
|
+
"integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==",
|
|
676
|
+
"license": "MIT",
|
|
677
|
+
"engines": {
|
|
678
|
+
"node": ">=18"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"node_modules/@inquirer/input": {
|
|
682
|
+
"version": "4.3.1",
|
|
683
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.3.1.tgz",
|
|
684
|
+
"integrity": "sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==",
|
|
685
|
+
"license": "MIT",
|
|
686
|
+
"dependencies": {
|
|
687
|
+
"@inquirer/core": "^10.3.2",
|
|
688
|
+
"@inquirer/type": "^3.0.10"
|
|
689
|
+
},
|
|
690
|
+
"engines": {
|
|
691
|
+
"node": ">=18"
|
|
692
|
+
},
|
|
693
|
+
"peerDependencies": {
|
|
694
|
+
"@types/node": ">=18"
|
|
695
|
+
},
|
|
696
|
+
"peerDependenciesMeta": {
|
|
697
|
+
"@types/node": {
|
|
698
|
+
"optional": true
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"node_modules/@inquirer/number": {
|
|
703
|
+
"version": "3.0.23",
|
|
704
|
+
"resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.23.tgz",
|
|
705
|
+
"integrity": "sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==",
|
|
706
|
+
"license": "MIT",
|
|
707
|
+
"dependencies": {
|
|
708
|
+
"@inquirer/core": "^10.3.2",
|
|
709
|
+
"@inquirer/type": "^3.0.10"
|
|
710
|
+
},
|
|
711
|
+
"engines": {
|
|
712
|
+
"node": ">=18"
|
|
713
|
+
},
|
|
714
|
+
"peerDependencies": {
|
|
715
|
+
"@types/node": ">=18"
|
|
716
|
+
},
|
|
717
|
+
"peerDependenciesMeta": {
|
|
718
|
+
"@types/node": {
|
|
719
|
+
"optional": true
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"node_modules/@inquirer/password": {
|
|
724
|
+
"version": "4.0.23",
|
|
725
|
+
"resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.23.tgz",
|
|
726
|
+
"integrity": "sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==",
|
|
727
|
+
"license": "MIT",
|
|
728
|
+
"dependencies": {
|
|
729
|
+
"@inquirer/ansi": "^1.0.2",
|
|
730
|
+
"@inquirer/core": "^10.3.2",
|
|
731
|
+
"@inquirer/type": "^3.0.10"
|
|
732
|
+
},
|
|
733
|
+
"engines": {
|
|
734
|
+
"node": ">=18"
|
|
735
|
+
},
|
|
736
|
+
"peerDependencies": {
|
|
737
|
+
"@types/node": ">=18"
|
|
738
|
+
},
|
|
739
|
+
"peerDependenciesMeta": {
|
|
740
|
+
"@types/node": {
|
|
741
|
+
"optional": true
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"node_modules/@inquirer/prompts": {
|
|
746
|
+
"version": "7.10.1",
|
|
747
|
+
"resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.10.1.tgz",
|
|
748
|
+
"integrity": "sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==",
|
|
749
|
+
"license": "MIT",
|
|
750
|
+
"dependencies": {
|
|
751
|
+
"@inquirer/checkbox": "^4.3.2",
|
|
752
|
+
"@inquirer/confirm": "^5.1.21",
|
|
753
|
+
"@inquirer/editor": "^4.2.23",
|
|
754
|
+
"@inquirer/expand": "^4.0.23",
|
|
755
|
+
"@inquirer/input": "^4.3.1",
|
|
756
|
+
"@inquirer/number": "^3.0.23",
|
|
757
|
+
"@inquirer/password": "^4.0.23",
|
|
758
|
+
"@inquirer/rawlist": "^4.1.11",
|
|
759
|
+
"@inquirer/search": "^3.2.2",
|
|
760
|
+
"@inquirer/select": "^4.4.2"
|
|
761
|
+
},
|
|
762
|
+
"engines": {
|
|
763
|
+
"node": ">=18"
|
|
764
|
+
},
|
|
765
|
+
"peerDependencies": {
|
|
766
|
+
"@types/node": ">=18"
|
|
767
|
+
},
|
|
768
|
+
"peerDependenciesMeta": {
|
|
769
|
+
"@types/node": {
|
|
770
|
+
"optional": true
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"node_modules/@inquirer/rawlist": {
|
|
775
|
+
"version": "4.1.11",
|
|
776
|
+
"resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.11.tgz",
|
|
777
|
+
"integrity": "sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==",
|
|
778
|
+
"license": "MIT",
|
|
779
|
+
"dependencies": {
|
|
780
|
+
"@inquirer/core": "^10.3.2",
|
|
781
|
+
"@inquirer/type": "^3.0.10",
|
|
782
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
783
|
+
},
|
|
784
|
+
"engines": {
|
|
785
|
+
"node": ">=18"
|
|
786
|
+
},
|
|
787
|
+
"peerDependencies": {
|
|
788
|
+
"@types/node": ">=18"
|
|
789
|
+
},
|
|
790
|
+
"peerDependenciesMeta": {
|
|
791
|
+
"@types/node": {
|
|
792
|
+
"optional": true
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"node_modules/@inquirer/search": {
|
|
797
|
+
"version": "3.2.2",
|
|
798
|
+
"resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.2.2.tgz",
|
|
799
|
+
"integrity": "sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==",
|
|
800
|
+
"license": "MIT",
|
|
801
|
+
"dependencies": {
|
|
802
|
+
"@inquirer/core": "^10.3.2",
|
|
803
|
+
"@inquirer/figures": "^1.0.15",
|
|
804
|
+
"@inquirer/type": "^3.0.10",
|
|
805
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
806
|
+
},
|
|
807
|
+
"engines": {
|
|
808
|
+
"node": ">=18"
|
|
809
|
+
},
|
|
810
|
+
"peerDependencies": {
|
|
811
|
+
"@types/node": ">=18"
|
|
812
|
+
},
|
|
813
|
+
"peerDependenciesMeta": {
|
|
814
|
+
"@types/node": {
|
|
815
|
+
"optional": true
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
},
|
|
819
|
+
"node_modules/@inquirer/select": {
|
|
820
|
+
"version": "4.4.2",
|
|
821
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.4.2.tgz",
|
|
822
|
+
"integrity": "sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==",
|
|
823
|
+
"license": "MIT",
|
|
824
|
+
"dependencies": {
|
|
825
|
+
"@inquirer/ansi": "^1.0.2",
|
|
826
|
+
"@inquirer/core": "^10.3.2",
|
|
827
|
+
"@inquirer/figures": "^1.0.15",
|
|
828
|
+
"@inquirer/type": "^3.0.10",
|
|
829
|
+
"yoctocolors-cjs": "^2.1.3"
|
|
830
|
+
},
|
|
831
|
+
"engines": {
|
|
832
|
+
"node": ">=18"
|
|
833
|
+
},
|
|
834
|
+
"peerDependencies": {
|
|
835
|
+
"@types/node": ">=18"
|
|
836
|
+
},
|
|
837
|
+
"peerDependenciesMeta": {
|
|
838
|
+
"@types/node": {
|
|
839
|
+
"optional": true
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"node_modules/@inquirer/type": {
|
|
844
|
+
"version": "3.0.10",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.10.tgz",
|
|
846
|
+
"integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==",
|
|
847
|
+
"license": "MIT",
|
|
848
|
+
"engines": {
|
|
849
|
+
"node": ">=18"
|
|
850
|
+
},
|
|
851
|
+
"peerDependencies": {
|
|
852
|
+
"@types/node": ">=18"
|
|
853
|
+
},
|
|
854
|
+
"peerDependenciesMeta": {
|
|
855
|
+
"@types/node": {
|
|
856
|
+
"optional": true
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
861
|
+
"version": "0.3.13",
|
|
862
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
863
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
864
|
+
"dev": true,
|
|
865
|
+
"license": "MIT",
|
|
866
|
+
"dependencies": {
|
|
867
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
868
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
872
|
+
"version": "3.1.2",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
874
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
875
|
+
"dev": true,
|
|
876
|
+
"license": "MIT",
|
|
877
|
+
"engines": {
|
|
878
|
+
"node": ">=6.0.0"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
882
|
+
"version": "1.5.5",
|
|
883
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
884
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
885
|
+
"dev": true,
|
|
886
|
+
"license": "MIT"
|
|
887
|
+
},
|
|
888
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
889
|
+
"version": "0.3.31",
|
|
890
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
891
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
892
|
+
"dev": true,
|
|
893
|
+
"license": "MIT",
|
|
894
|
+
"dependencies": {
|
|
895
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
896
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
897
|
+
}
|
|
898
|
+
},
|
|
899
|
+
"node_modules/@next/env": {
|
|
900
|
+
"version": "16.0.3",
|
|
901
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.0.3.tgz",
|
|
902
|
+
"integrity": "sha512-IqgtY5Vwsm14mm/nmQaRMmywCU+yyMIYfk3/MHZ2ZTJvwVbBn3usZnjMi1GacrMVzVcAxJShTCpZlPs26EdEjQ==",
|
|
903
|
+
"license": "MIT"
|
|
904
|
+
},
|
|
905
|
+
"node_modules/@next/swc-darwin-arm64": {
|
|
906
|
+
"version": "16.0.3",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.0.3.tgz",
|
|
908
|
+
"integrity": "sha512-MOnbd92+OByu0p6QBAzq1ahVWzF6nyfiH07dQDez4/Nku7G249NjxDVyEfVhz8WkLiOEU+KFVnqtgcsfP2nLXg==",
|
|
909
|
+
"cpu": [
|
|
910
|
+
"arm64"
|
|
911
|
+
],
|
|
912
|
+
"license": "MIT",
|
|
913
|
+
"optional": true,
|
|
914
|
+
"os": [
|
|
915
|
+
"darwin"
|
|
916
|
+
],
|
|
917
|
+
"engines": {
|
|
918
|
+
"node": ">= 10"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"node_modules/@next/swc-darwin-x64": {
|
|
922
|
+
"version": "16.0.3",
|
|
923
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.0.3.tgz",
|
|
924
|
+
"integrity": "sha512-i70C4O1VmbTivYdRlk+5lj9xRc2BlK3oUikt3yJeHT1unL4LsNtN7UiOhVanFdc7vDAgZn1tV/9mQwMkWOJvHg==",
|
|
925
|
+
"cpu": [
|
|
926
|
+
"x64"
|
|
927
|
+
],
|
|
928
|
+
"license": "MIT",
|
|
929
|
+
"optional": true,
|
|
930
|
+
"os": [
|
|
931
|
+
"darwin"
|
|
932
|
+
],
|
|
933
|
+
"engines": {
|
|
934
|
+
"node": ">= 10"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
938
|
+
"version": "16.0.3",
|
|
939
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.0.3.tgz",
|
|
940
|
+
"integrity": "sha512-O88gCZ95sScwD00mn/AtalyCoykhhlokxH/wi1huFK+rmiP5LAYVs/i2ruk7xST6SuXN4NI5y4Xf5vepb2jf6A==",
|
|
941
|
+
"cpu": [
|
|
942
|
+
"arm64"
|
|
943
|
+
],
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"optional": true,
|
|
946
|
+
"os": [
|
|
947
|
+
"linux"
|
|
948
|
+
],
|
|
949
|
+
"engines": {
|
|
950
|
+
"node": ">= 10"
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
"node_modules/@next/swc-linux-arm64-musl": {
|
|
954
|
+
"version": "16.0.3",
|
|
955
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.0.3.tgz",
|
|
956
|
+
"integrity": "sha512-CEErFt78S/zYXzFIiv18iQCbRbLgBluS8z1TNDQoyPi8/Jr5qhR3e8XHAIxVxPBjDbEMITprqELVc5KTfFj0gg==",
|
|
957
|
+
"cpu": [
|
|
958
|
+
"arm64"
|
|
959
|
+
],
|
|
960
|
+
"license": "MIT",
|
|
961
|
+
"optional": true,
|
|
962
|
+
"os": [
|
|
963
|
+
"linux"
|
|
964
|
+
],
|
|
965
|
+
"engines": {
|
|
966
|
+
"node": ">= 10"
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
"node_modules/@next/swc-linux-x64-gnu": {
|
|
970
|
+
"version": "16.0.3",
|
|
971
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.0.3.tgz",
|
|
972
|
+
"integrity": "sha512-Tc3i+nwt6mQ+Dwzcri/WNDj56iWdycGVh5YwwklleClzPzz7UpfaMw1ci7bLl6GRYMXhWDBfe707EXNjKtiswQ==",
|
|
973
|
+
"cpu": [
|
|
974
|
+
"x64"
|
|
975
|
+
],
|
|
976
|
+
"license": "MIT",
|
|
977
|
+
"optional": true,
|
|
978
|
+
"os": [
|
|
979
|
+
"linux"
|
|
980
|
+
],
|
|
981
|
+
"engines": {
|
|
982
|
+
"node": ">= 10"
|
|
983
|
+
}
|
|
984
|
+
},
|
|
985
|
+
"node_modules/@next/swc-linux-x64-musl": {
|
|
986
|
+
"version": "16.0.3",
|
|
987
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.0.3.tgz",
|
|
988
|
+
"integrity": "sha512-zTh03Z/5PBBPdTurgEtr6nY0vI9KR9Ifp/jZCcHlODzwVOEKcKRBtQIGrkc7izFgOMuXDEJBmirwpGqdM/ZixA==",
|
|
989
|
+
"cpu": [
|
|
990
|
+
"x64"
|
|
991
|
+
],
|
|
992
|
+
"license": "MIT",
|
|
993
|
+
"optional": true,
|
|
994
|
+
"os": [
|
|
995
|
+
"linux"
|
|
996
|
+
],
|
|
997
|
+
"engines": {
|
|
998
|
+
"node": ">= 10"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
1002
|
+
"version": "16.0.3",
|
|
1003
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.0.3.tgz",
|
|
1004
|
+
"integrity": "sha512-Jc1EHxtZovcJcg5zU43X3tuqzl/sS+CmLgjRP28ZT4vk869Ncm2NoF8qSTaL99gh6uOzgM99Shct06pSO6kA6g==",
|
|
1005
|
+
"cpu": [
|
|
1006
|
+
"arm64"
|
|
1007
|
+
],
|
|
1008
|
+
"license": "MIT",
|
|
1009
|
+
"optional": true,
|
|
1010
|
+
"os": [
|
|
1011
|
+
"win32"
|
|
1012
|
+
],
|
|
1013
|
+
"engines": {
|
|
1014
|
+
"node": ">= 10"
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
"node_modules/@next/swc-win32-x64-msvc": {
|
|
1018
|
+
"version": "16.0.3",
|
|
1019
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.0.3.tgz",
|
|
1020
|
+
"integrity": "sha512-N7EJ6zbxgIYpI/sWNzpVKRMbfEGgsWuOIvzkML7wxAAZhPk1Msxuo/JDu1PKjWGrAoOLaZcIX5s+/pF5LIbBBg==",
|
|
1021
|
+
"cpu": [
|
|
1022
|
+
"x64"
|
|
1023
|
+
],
|
|
1024
|
+
"license": "MIT",
|
|
1025
|
+
"optional": true,
|
|
1026
|
+
"os": [
|
|
1027
|
+
"win32"
|
|
1028
|
+
],
|
|
1029
|
+
"engines": {
|
|
1030
|
+
"node": ">= 10"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
1034
|
+
"version": "2.1.5",
|
|
1035
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
1036
|
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
|
1037
|
+
"dev": true,
|
|
1038
|
+
"license": "MIT",
|
|
1039
|
+
"dependencies": {
|
|
1040
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
1041
|
+
"run-parallel": "^1.1.9"
|
|
1042
|
+
},
|
|
1043
|
+
"engines": {
|
|
1044
|
+
"node": ">= 8"
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
"node_modules/@nodelib/fs.stat": {
|
|
1048
|
+
"version": "2.0.5",
|
|
1049
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
|
1050
|
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
|
1051
|
+
"dev": true,
|
|
1052
|
+
"license": "MIT",
|
|
1053
|
+
"engines": {
|
|
1054
|
+
"node": ">= 8"
|
|
1055
|
+
}
|
|
1056
|
+
},
|
|
1057
|
+
"node_modules/@nodelib/fs.walk": {
|
|
1058
|
+
"version": "1.2.8",
|
|
1059
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
|
1060
|
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
|
1061
|
+
"dev": true,
|
|
1062
|
+
"license": "MIT",
|
|
1063
|
+
"dependencies": {
|
|
1064
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
1065
|
+
"fastq": "^1.6.0"
|
|
1066
|
+
},
|
|
1067
|
+
"engines": {
|
|
1068
|
+
"node": ">= 8"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
"node_modules/@radix-ui/react-compose-refs": {
|
|
1072
|
+
"version": "1.1.2",
|
|
1073
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
|
|
1074
|
+
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
|
|
1075
|
+
"license": "MIT",
|
|
1076
|
+
"peerDependencies": {
|
|
1077
|
+
"@types/react": "*",
|
|
1078
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1079
|
+
},
|
|
1080
|
+
"peerDependenciesMeta": {
|
|
1081
|
+
"@types/react": {
|
|
1082
|
+
"optional": true
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"node_modules/@radix-ui/react-label": {
|
|
1087
|
+
"version": "2.1.8",
|
|
1088
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.8.tgz",
|
|
1089
|
+
"integrity": "sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==",
|
|
1090
|
+
"license": "MIT",
|
|
1091
|
+
"dependencies": {
|
|
1092
|
+
"@radix-ui/react-primitive": "2.1.4"
|
|
1093
|
+
},
|
|
1094
|
+
"peerDependencies": {
|
|
1095
|
+
"@types/react": "*",
|
|
1096
|
+
"@types/react-dom": "*",
|
|
1097
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1098
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1099
|
+
},
|
|
1100
|
+
"peerDependenciesMeta": {
|
|
1101
|
+
"@types/react": {
|
|
1102
|
+
"optional": true
|
|
1103
|
+
},
|
|
1104
|
+
"@types/react-dom": {
|
|
1105
|
+
"optional": true
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
"node_modules/@radix-ui/react-primitive": {
|
|
1110
|
+
"version": "2.1.4",
|
|
1111
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.4.tgz",
|
|
1112
|
+
"integrity": "sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==",
|
|
1113
|
+
"license": "MIT",
|
|
1114
|
+
"dependencies": {
|
|
1115
|
+
"@radix-ui/react-slot": "1.2.4"
|
|
1116
|
+
},
|
|
1117
|
+
"peerDependencies": {
|
|
1118
|
+
"@types/react": "*",
|
|
1119
|
+
"@types/react-dom": "*",
|
|
1120
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1121
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1122
|
+
},
|
|
1123
|
+
"peerDependenciesMeta": {
|
|
1124
|
+
"@types/react": {
|
|
1125
|
+
"optional": true
|
|
1126
|
+
},
|
|
1127
|
+
"@types/react-dom": {
|
|
1128
|
+
"optional": true
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
},
|
|
1132
|
+
"node_modules/@radix-ui/react-slot": {
|
|
1133
|
+
"version": "1.2.4",
|
|
1134
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz",
|
|
1135
|
+
"integrity": "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==",
|
|
1136
|
+
"license": "MIT",
|
|
1137
|
+
"dependencies": {
|
|
1138
|
+
"@radix-ui/react-compose-refs": "1.1.2"
|
|
1139
|
+
},
|
|
1140
|
+
"peerDependencies": {
|
|
1141
|
+
"@types/react": "*",
|
|
1142
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1143
|
+
},
|
|
1144
|
+
"peerDependenciesMeta": {
|
|
1145
|
+
"@types/react": {
|
|
1146
|
+
"optional": true
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
"node_modules/@swc/helpers": {
|
|
1151
|
+
"version": "0.5.15",
|
|
1152
|
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
|
|
1153
|
+
"integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
|
|
1154
|
+
"license": "Apache-2.0",
|
|
1155
|
+
"dependencies": {
|
|
1156
|
+
"tslib": "^2.8.0"
|
|
1157
|
+
}
|
|
1158
|
+
},
|
|
1159
|
+
"node_modules/@types/node": {
|
|
1160
|
+
"version": "22.19.1",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.1.tgz",
|
|
1162
|
+
"integrity": "sha512-LCCV0HdSZZZb34qifBsyWlUmok6W7ouER+oQIGBScS8EsZsQbrtFTUrDX4hOl+CS6p7cnNC4td+qrSVGSCTUfQ==",
|
|
1163
|
+
"devOptional": true,
|
|
1164
|
+
"license": "MIT",
|
|
1165
|
+
"peer": true,
|
|
1166
|
+
"dependencies": {
|
|
1167
|
+
"undici-types": "~6.21.0"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"node_modules/@types/react": {
|
|
1171
|
+
"version": "19.2.6",
|
|
1172
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.6.tgz",
|
|
1173
|
+
"integrity": "sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w==",
|
|
1174
|
+
"devOptional": true,
|
|
1175
|
+
"license": "MIT",
|
|
1176
|
+
"peer": true,
|
|
1177
|
+
"dependencies": {
|
|
1178
|
+
"csstype": "^3.2.2"
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1181
|
+
"node_modules/@types/react-dom": {
|
|
1182
|
+
"version": "19.2.3",
|
|
1183
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
1184
|
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
1185
|
+
"devOptional": true,
|
|
1186
|
+
"license": "MIT",
|
|
1187
|
+
"peer": true,
|
|
1188
|
+
"peerDependencies": {
|
|
1189
|
+
"@types/react": "^19.2.0"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
"node_modules/ansi-regex": {
|
|
1193
|
+
"version": "5.0.1",
|
|
1194
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
1195
|
+
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
1196
|
+
"license": "MIT",
|
|
1197
|
+
"engines": {
|
|
1198
|
+
"node": ">=8"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"node_modules/ansi-styles": {
|
|
1202
|
+
"version": "4.3.0",
|
|
1203
|
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
1204
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
1205
|
+
"license": "MIT",
|
|
1206
|
+
"dependencies": {
|
|
1207
|
+
"color-convert": "^2.0.1"
|
|
1208
|
+
},
|
|
1209
|
+
"engines": {
|
|
1210
|
+
"node": ">=8"
|
|
1211
|
+
},
|
|
1212
|
+
"funding": {
|
|
1213
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1216
|
+
"node_modules/any-promise": {
|
|
1217
|
+
"version": "1.3.0",
|
|
1218
|
+
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
|
|
1219
|
+
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
|
|
1220
|
+
"dev": true,
|
|
1221
|
+
"license": "MIT"
|
|
1222
|
+
},
|
|
1223
|
+
"node_modules/anymatch": {
|
|
1224
|
+
"version": "3.1.3",
|
|
1225
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
1226
|
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
1227
|
+
"dev": true,
|
|
1228
|
+
"license": "ISC",
|
|
1229
|
+
"dependencies": {
|
|
1230
|
+
"normalize-path": "^3.0.0",
|
|
1231
|
+
"picomatch": "^2.0.4"
|
|
1232
|
+
},
|
|
1233
|
+
"engines": {
|
|
1234
|
+
"node": ">= 8"
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"node_modules/arg": {
|
|
1238
|
+
"version": "5.0.2",
|
|
1239
|
+
"resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
|
|
1240
|
+
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
|
|
1241
|
+
"dev": true,
|
|
1242
|
+
"license": "MIT"
|
|
1243
|
+
},
|
|
1244
|
+
"node_modules/asynckit": {
|
|
1245
|
+
"version": "0.4.0",
|
|
1246
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
1247
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
1248
|
+
"license": "MIT"
|
|
1249
|
+
},
|
|
1250
|
+
"node_modules/autoprefixer": {
|
|
1251
|
+
"version": "10.4.22",
|
|
1252
|
+
"resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz",
|
|
1253
|
+
"integrity": "sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==",
|
|
1254
|
+
"dev": true,
|
|
1255
|
+
"funding": [
|
|
1256
|
+
{
|
|
1257
|
+
"type": "opencollective",
|
|
1258
|
+
"url": "https://opencollective.com/postcss/"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"type": "tidelift",
|
|
1262
|
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"type": "github",
|
|
1266
|
+
"url": "https://github.com/sponsors/ai"
|
|
1267
|
+
}
|
|
1268
|
+
],
|
|
1269
|
+
"license": "MIT",
|
|
1270
|
+
"dependencies": {
|
|
1271
|
+
"browserslist": "^4.27.0",
|
|
1272
|
+
"caniuse-lite": "^1.0.30001754",
|
|
1273
|
+
"fraction.js": "^5.3.4",
|
|
1274
|
+
"normalize-range": "^0.1.2",
|
|
1275
|
+
"picocolors": "^1.1.1",
|
|
1276
|
+
"postcss-value-parser": "^4.2.0"
|
|
1277
|
+
},
|
|
1278
|
+
"bin": {
|
|
1279
|
+
"autoprefixer": "bin/autoprefixer"
|
|
1280
|
+
},
|
|
1281
|
+
"engines": {
|
|
1282
|
+
"node": "^10 || ^12 || >=14"
|
|
1283
|
+
},
|
|
1284
|
+
"peerDependencies": {
|
|
1285
|
+
"postcss": "^8.1.0"
|
|
1286
|
+
}
|
|
1287
|
+
},
|
|
1288
|
+
"node_modules/axios": {
|
|
1289
|
+
"version": "1.13.2",
|
|
1290
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
|
|
1291
|
+
"integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
|
|
1292
|
+
"license": "MIT",
|
|
1293
|
+
"dependencies": {
|
|
1294
|
+
"follow-redirects": "^1.15.6",
|
|
1295
|
+
"form-data": "^4.0.4",
|
|
1296
|
+
"proxy-from-env": "^1.1.0"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"node_modules/baseline-browser-mapping": {
|
|
1300
|
+
"version": "2.8.30",
|
|
1301
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.30.tgz",
|
|
1302
|
+
"integrity": "sha512-aTUKW4ptQhS64+v2d6IkPzymEzzhw+G0bA1g3uBRV3+ntkH+svttKseW5IOR4Ed6NUVKqnY7qT3dKvzQ7io4AA==",
|
|
1303
|
+
"dev": true,
|
|
1304
|
+
"license": "Apache-2.0",
|
|
1305
|
+
"bin": {
|
|
1306
|
+
"baseline-browser-mapping": "dist/cli.js"
|
|
1307
|
+
}
|
|
1308
|
+
},
|
|
1309
|
+
"node_modules/binary-extensions": {
|
|
1310
|
+
"version": "2.3.0",
|
|
1311
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
1312
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
1313
|
+
"dev": true,
|
|
1314
|
+
"license": "MIT",
|
|
1315
|
+
"engines": {
|
|
1316
|
+
"node": ">=8"
|
|
1317
|
+
},
|
|
1318
|
+
"funding": {
|
|
1319
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
"node_modules/braces": {
|
|
1323
|
+
"version": "3.0.3",
|
|
1324
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
1325
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
1326
|
+
"dev": true,
|
|
1327
|
+
"license": "MIT",
|
|
1328
|
+
"dependencies": {
|
|
1329
|
+
"fill-range": "^7.1.1"
|
|
1330
|
+
},
|
|
1331
|
+
"engines": {
|
|
1332
|
+
"node": ">=8"
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
"node_modules/browserslist": {
|
|
1336
|
+
"version": "4.28.0",
|
|
1337
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
|
|
1338
|
+
"integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
|
|
1339
|
+
"dev": true,
|
|
1340
|
+
"funding": [
|
|
1341
|
+
{
|
|
1342
|
+
"type": "opencollective",
|
|
1343
|
+
"url": "https://opencollective.com/browserslist"
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"type": "tidelift",
|
|
1347
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
"type": "github",
|
|
1351
|
+
"url": "https://github.com/sponsors/ai"
|
|
1352
|
+
}
|
|
1353
|
+
],
|
|
1354
|
+
"license": "MIT",
|
|
1355
|
+
"peer": true,
|
|
1356
|
+
"dependencies": {
|
|
1357
|
+
"baseline-browser-mapping": "^2.8.25",
|
|
1358
|
+
"caniuse-lite": "^1.0.30001754",
|
|
1359
|
+
"electron-to-chromium": "^1.5.249",
|
|
1360
|
+
"node-releases": "^2.0.27",
|
|
1361
|
+
"update-browserslist-db": "^1.1.4"
|
|
1362
|
+
},
|
|
1363
|
+
"bin": {
|
|
1364
|
+
"browserslist": "cli.js"
|
|
1365
|
+
},
|
|
1366
|
+
"engines": {
|
|
1367
|
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
1368
|
+
}
|
|
1369
|
+
},
|
|
1370
|
+
"node_modules/call-bind-apply-helpers": {
|
|
1371
|
+
"version": "1.0.2",
|
|
1372
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
1373
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
1374
|
+
"license": "MIT",
|
|
1375
|
+
"dependencies": {
|
|
1376
|
+
"es-errors": "^1.3.0",
|
|
1377
|
+
"function-bind": "^1.1.2"
|
|
1378
|
+
},
|
|
1379
|
+
"engines": {
|
|
1380
|
+
"node": ">= 0.4"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"node_modules/camelcase-css": {
|
|
1384
|
+
"version": "2.0.1",
|
|
1385
|
+
"resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
|
|
1386
|
+
"integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
|
|
1387
|
+
"dev": true,
|
|
1388
|
+
"license": "MIT",
|
|
1389
|
+
"engines": {
|
|
1390
|
+
"node": ">= 6"
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
"node_modules/caniuse-lite": {
|
|
1394
|
+
"version": "1.0.30001756",
|
|
1395
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001756.tgz",
|
|
1396
|
+
"integrity": "sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==",
|
|
1397
|
+
"funding": [
|
|
1398
|
+
{
|
|
1399
|
+
"type": "opencollective",
|
|
1400
|
+
"url": "https://opencollective.com/browserslist"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"type": "tidelift",
|
|
1404
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"type": "github",
|
|
1408
|
+
"url": "https://github.com/sponsors/ai"
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"license": "CC-BY-4.0"
|
|
1412
|
+
},
|
|
1413
|
+
"node_modules/chardet": {
|
|
1414
|
+
"version": "2.1.1",
|
|
1415
|
+
"resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz",
|
|
1416
|
+
"integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==",
|
|
1417
|
+
"license": "MIT"
|
|
1418
|
+
},
|
|
1419
|
+
"node_modules/chokidar": {
|
|
1420
|
+
"version": "4.0.3",
|
|
1421
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
1422
|
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
1423
|
+
"license": "MIT",
|
|
1424
|
+
"dependencies": {
|
|
1425
|
+
"readdirp": "^4.0.1"
|
|
1426
|
+
},
|
|
1427
|
+
"engines": {
|
|
1428
|
+
"node": ">= 14.16.0"
|
|
1429
|
+
},
|
|
1430
|
+
"funding": {
|
|
1431
|
+
"url": "https://paulmillr.com/funding/"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"node_modules/class-variance-authority": {
|
|
1435
|
+
"version": "0.7.1",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
|
|
1437
|
+
"integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
|
|
1438
|
+
"license": "Apache-2.0",
|
|
1439
|
+
"dependencies": {
|
|
1440
|
+
"clsx": "^2.1.1"
|
|
1441
|
+
},
|
|
1442
|
+
"funding": {
|
|
1443
|
+
"url": "https://polar.sh/cva"
|
|
1444
|
+
}
|
|
1445
|
+
},
|
|
1446
|
+
"node_modules/cli-width": {
|
|
1447
|
+
"version": "4.1.0",
|
|
1448
|
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
1449
|
+
"integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==",
|
|
1450
|
+
"license": "ISC",
|
|
1451
|
+
"engines": {
|
|
1452
|
+
"node": ">= 12"
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1455
|
+
"node_modules/client-only": {
|
|
1456
|
+
"version": "0.0.1",
|
|
1457
|
+
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
|
|
1458
|
+
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
|
1459
|
+
"license": "MIT"
|
|
1460
|
+
},
|
|
1461
|
+
"node_modules/clsx": {
|
|
1462
|
+
"version": "2.1.1",
|
|
1463
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
1464
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
1465
|
+
"license": "MIT",
|
|
1466
|
+
"engines": {
|
|
1467
|
+
"node": ">=6"
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1470
|
+
"node_modules/color-convert": {
|
|
1471
|
+
"version": "2.0.1",
|
|
1472
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
1473
|
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
1474
|
+
"license": "MIT",
|
|
1475
|
+
"dependencies": {
|
|
1476
|
+
"color-name": "~1.1.4"
|
|
1477
|
+
},
|
|
1478
|
+
"engines": {
|
|
1479
|
+
"node": ">=7.0.0"
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
"node_modules/color-name": {
|
|
1483
|
+
"version": "1.1.4",
|
|
1484
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
1485
|
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
1486
|
+
"license": "MIT"
|
|
1487
|
+
},
|
|
1488
|
+
"node_modules/combined-stream": {
|
|
1489
|
+
"version": "1.0.8",
|
|
1490
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
1491
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
1492
|
+
"license": "MIT",
|
|
1493
|
+
"dependencies": {
|
|
1494
|
+
"delayed-stream": "~1.0.0"
|
|
1495
|
+
},
|
|
1496
|
+
"engines": {
|
|
1497
|
+
"node": ">= 0.8"
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
"node_modules/commander": {
|
|
1501
|
+
"version": "12.1.0",
|
|
1502
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
|
|
1503
|
+
"integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
|
|
1504
|
+
"license": "MIT",
|
|
1505
|
+
"engines": {
|
|
1506
|
+
"node": ">=18"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"node_modules/consola": {
|
|
1510
|
+
"version": "3.4.2",
|
|
1511
|
+
"resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz",
|
|
1512
|
+
"integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==",
|
|
1513
|
+
"license": "MIT",
|
|
1514
|
+
"engines": {
|
|
1515
|
+
"node": "^14.18.0 || >=16.10.0"
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"node_modules/cookie": {
|
|
1519
|
+
"version": "1.0.2",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
|
|
1521
|
+
"integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
|
|
1522
|
+
"license": "MIT",
|
|
1523
|
+
"engines": {
|
|
1524
|
+
"node": ">=18"
|
|
1525
|
+
}
|
|
1526
|
+
},
|
|
1527
|
+
"node_modules/cookies-next": {
|
|
1528
|
+
"version": "6.1.1",
|
|
1529
|
+
"resolved": "https://registry.npmjs.org/cookies-next/-/cookies-next-6.1.1.tgz",
|
|
1530
|
+
"integrity": "sha512-8JZBc4IN2m8xqOXyG7uicth6yH3SvynAUGSeV/FQ5lcEclzNGoR0+YCjySdn8r6keZdRyGQr4YJ8qy8F+Jq5uw==",
|
|
1531
|
+
"license": "MIT",
|
|
1532
|
+
"dependencies": {
|
|
1533
|
+
"cookie": "^1.0.1"
|
|
1534
|
+
},
|
|
1535
|
+
"peerDependencies": {
|
|
1536
|
+
"next": ">=15.0.0",
|
|
1537
|
+
"react": ">= 16.8.0"
|
|
1538
|
+
}
|
|
1539
|
+
},
|
|
1540
|
+
"node_modules/cssesc": {
|
|
1541
|
+
"version": "3.0.0",
|
|
1542
|
+
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
|
1543
|
+
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
|
1544
|
+
"dev": true,
|
|
1545
|
+
"license": "MIT",
|
|
1546
|
+
"bin": {
|
|
1547
|
+
"cssesc": "bin/cssesc"
|
|
1548
|
+
},
|
|
1549
|
+
"engines": {
|
|
1550
|
+
"node": ">=4"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/csstype": {
|
|
1554
|
+
"version": "3.2.3",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
1556
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1557
|
+
"license": "MIT",
|
|
1558
|
+
"peer": true
|
|
1559
|
+
},
|
|
1560
|
+
"node_modules/delayed-stream": {
|
|
1561
|
+
"version": "1.0.0",
|
|
1562
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
1563
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
1564
|
+
"license": "MIT",
|
|
1565
|
+
"engines": {
|
|
1566
|
+
"node": ">=0.4.0"
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
"node_modules/detect-libc": {
|
|
1570
|
+
"version": "2.1.2",
|
|
1571
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
1572
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
1573
|
+
"license": "Apache-2.0",
|
|
1574
|
+
"optional": true,
|
|
1575
|
+
"engines": {
|
|
1576
|
+
"node": ">=8"
|
|
1577
|
+
}
|
|
1578
|
+
},
|
|
1579
|
+
"node_modules/didyoumean": {
|
|
1580
|
+
"version": "1.2.2",
|
|
1581
|
+
"resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
|
|
1582
|
+
"integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==",
|
|
1583
|
+
"dev": true,
|
|
1584
|
+
"license": "Apache-2.0"
|
|
1585
|
+
},
|
|
1586
|
+
"node_modules/dlv": {
|
|
1587
|
+
"version": "1.1.3",
|
|
1588
|
+
"resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
|
|
1589
|
+
"integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==",
|
|
1590
|
+
"dev": true,
|
|
1591
|
+
"license": "MIT"
|
|
1592
|
+
},
|
|
1593
|
+
"node_modules/dunder-proto": {
|
|
1594
|
+
"version": "1.0.1",
|
|
1595
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1596
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1597
|
+
"license": "MIT",
|
|
1598
|
+
"dependencies": {
|
|
1599
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1600
|
+
"es-errors": "^1.3.0",
|
|
1601
|
+
"gopd": "^1.2.0"
|
|
1602
|
+
},
|
|
1603
|
+
"engines": {
|
|
1604
|
+
"node": ">= 0.4"
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"node_modules/electron-to-chromium": {
|
|
1608
|
+
"version": "1.5.259",
|
|
1609
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.259.tgz",
|
|
1610
|
+
"integrity": "sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ==",
|
|
1611
|
+
"dev": true,
|
|
1612
|
+
"license": "ISC"
|
|
1613
|
+
},
|
|
1614
|
+
"node_modules/emoji-regex": {
|
|
1615
|
+
"version": "8.0.0",
|
|
1616
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
1617
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
1618
|
+
"license": "MIT"
|
|
1619
|
+
},
|
|
1620
|
+
"node_modules/es-define-property": {
|
|
1621
|
+
"version": "1.0.1",
|
|
1622
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1623
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1624
|
+
"license": "MIT",
|
|
1625
|
+
"engines": {
|
|
1626
|
+
"node": ">= 0.4"
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1629
|
+
"node_modules/es-errors": {
|
|
1630
|
+
"version": "1.3.0",
|
|
1631
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1632
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1633
|
+
"license": "MIT",
|
|
1634
|
+
"engines": {
|
|
1635
|
+
"node": ">= 0.4"
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
"node_modules/es-object-atoms": {
|
|
1639
|
+
"version": "1.1.1",
|
|
1640
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
1641
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
1642
|
+
"license": "MIT",
|
|
1643
|
+
"dependencies": {
|
|
1644
|
+
"es-errors": "^1.3.0"
|
|
1645
|
+
},
|
|
1646
|
+
"engines": {
|
|
1647
|
+
"node": ">= 0.4"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"node_modules/es-set-tostringtag": {
|
|
1651
|
+
"version": "2.1.0",
|
|
1652
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
1653
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
1654
|
+
"license": "MIT",
|
|
1655
|
+
"dependencies": {
|
|
1656
|
+
"es-errors": "^1.3.0",
|
|
1657
|
+
"get-intrinsic": "^1.2.6",
|
|
1658
|
+
"has-tostringtag": "^1.0.2",
|
|
1659
|
+
"hasown": "^2.0.2"
|
|
1660
|
+
},
|
|
1661
|
+
"engines": {
|
|
1662
|
+
"node": ">= 0.4"
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1665
|
+
"node_modules/escalade": {
|
|
1666
|
+
"version": "3.2.0",
|
|
1667
|
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
|
1668
|
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
|
1669
|
+
"dev": true,
|
|
1670
|
+
"license": "MIT",
|
|
1671
|
+
"engines": {
|
|
1672
|
+
"node": ">=6"
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
"node_modules/eventemitter3": {
|
|
1676
|
+
"version": "4.0.7",
|
|
1677
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
|
|
1678
|
+
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
|
1679
|
+
"license": "MIT"
|
|
1680
|
+
},
|
|
1681
|
+
"node_modules/fast-glob": {
|
|
1682
|
+
"version": "3.3.3",
|
|
1683
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
1684
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
1685
|
+
"dev": true,
|
|
1686
|
+
"license": "MIT",
|
|
1687
|
+
"dependencies": {
|
|
1688
|
+
"@nodelib/fs.stat": "^2.0.2",
|
|
1689
|
+
"@nodelib/fs.walk": "^1.2.3",
|
|
1690
|
+
"glob-parent": "^5.1.2",
|
|
1691
|
+
"merge2": "^1.3.0",
|
|
1692
|
+
"micromatch": "^4.0.8"
|
|
1693
|
+
},
|
|
1694
|
+
"engines": {
|
|
1695
|
+
"node": ">=8.6.0"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"node_modules/fast-glob/node_modules/glob-parent": {
|
|
1699
|
+
"version": "5.1.2",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
1701
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
1702
|
+
"dev": true,
|
|
1703
|
+
"license": "ISC",
|
|
1704
|
+
"dependencies": {
|
|
1705
|
+
"is-glob": "^4.0.1"
|
|
1706
|
+
},
|
|
1707
|
+
"engines": {
|
|
1708
|
+
"node": ">= 6"
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
"node_modules/fastq": {
|
|
1712
|
+
"version": "1.19.1",
|
|
1713
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
|
1714
|
+
"integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
|
|
1715
|
+
"dev": true,
|
|
1716
|
+
"license": "ISC",
|
|
1717
|
+
"dependencies": {
|
|
1718
|
+
"reusify": "^1.0.4"
|
|
1719
|
+
}
|
|
1720
|
+
},
|
|
1721
|
+
"node_modules/fill-range": {
|
|
1722
|
+
"version": "7.1.1",
|
|
1723
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
1724
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
1725
|
+
"dev": true,
|
|
1726
|
+
"license": "MIT",
|
|
1727
|
+
"dependencies": {
|
|
1728
|
+
"to-regex-range": "^5.0.1"
|
|
1729
|
+
},
|
|
1730
|
+
"engines": {
|
|
1731
|
+
"node": ">=8"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
"node_modules/follow-redirects": {
|
|
1735
|
+
"version": "1.15.11",
|
|
1736
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
|
|
1737
|
+
"integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
|
|
1738
|
+
"funding": [
|
|
1739
|
+
{
|
|
1740
|
+
"type": "individual",
|
|
1741
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"license": "MIT",
|
|
1745
|
+
"engines": {
|
|
1746
|
+
"node": ">=4.0"
|
|
1747
|
+
},
|
|
1748
|
+
"peerDependenciesMeta": {
|
|
1749
|
+
"debug": {
|
|
1750
|
+
"optional": true
|
|
1751
|
+
}
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
"node_modules/form-data": {
|
|
1755
|
+
"version": "4.0.5",
|
|
1756
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
|
1757
|
+
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
1758
|
+
"license": "MIT",
|
|
1759
|
+
"dependencies": {
|
|
1760
|
+
"asynckit": "^0.4.0",
|
|
1761
|
+
"combined-stream": "^1.0.8",
|
|
1762
|
+
"es-set-tostringtag": "^2.1.0",
|
|
1763
|
+
"hasown": "^2.0.2",
|
|
1764
|
+
"mime-types": "^2.1.12"
|
|
1765
|
+
},
|
|
1766
|
+
"engines": {
|
|
1767
|
+
"node": ">= 6"
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"node_modules/fraction.js": {
|
|
1771
|
+
"version": "5.3.4",
|
|
1772
|
+
"resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz",
|
|
1773
|
+
"integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==",
|
|
1774
|
+
"dev": true,
|
|
1775
|
+
"license": "MIT",
|
|
1776
|
+
"engines": {
|
|
1777
|
+
"node": "*"
|
|
1778
|
+
},
|
|
1779
|
+
"funding": {
|
|
1780
|
+
"type": "github",
|
|
1781
|
+
"url": "https://github.com/sponsors/rawify"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"node_modules/framer-motion": {
|
|
1785
|
+
"version": "12.23.24",
|
|
1786
|
+
"resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.24.tgz",
|
|
1787
|
+
"integrity": "sha512-HMi5HRoRCTou+3fb3h9oTLyJGBxHfW+HnNE25tAXOvVx/IvwMHK0cx7IR4a2ZU6sh3IX1Z+4ts32PcYBOqka8w==",
|
|
1788
|
+
"license": "MIT",
|
|
1789
|
+
"dependencies": {
|
|
1790
|
+
"motion-dom": "^12.23.23",
|
|
1791
|
+
"motion-utils": "^12.23.6",
|
|
1792
|
+
"tslib": "^2.4.0"
|
|
1793
|
+
},
|
|
1794
|
+
"peerDependencies": {
|
|
1795
|
+
"@emotion/is-prop-valid": "*",
|
|
1796
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
1797
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
1798
|
+
},
|
|
1799
|
+
"peerDependenciesMeta": {
|
|
1800
|
+
"@emotion/is-prop-valid": {
|
|
1801
|
+
"optional": true
|
|
1802
|
+
},
|
|
1803
|
+
"react": {
|
|
1804
|
+
"optional": true
|
|
1805
|
+
},
|
|
1806
|
+
"react-dom": {
|
|
1807
|
+
"optional": true
|
|
1808
|
+
}
|
|
1809
|
+
}
|
|
1810
|
+
},
|
|
1811
|
+
"node_modules/fsevents": {
|
|
1812
|
+
"version": "2.3.3",
|
|
1813
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1814
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1815
|
+
"dev": true,
|
|
1816
|
+
"hasInstallScript": true,
|
|
1817
|
+
"license": "MIT",
|
|
1818
|
+
"optional": true,
|
|
1819
|
+
"os": [
|
|
1820
|
+
"darwin"
|
|
1821
|
+
],
|
|
1822
|
+
"engines": {
|
|
1823
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1826
|
+
"node_modules/function-bind": {
|
|
1827
|
+
"version": "1.1.2",
|
|
1828
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1829
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1830
|
+
"license": "MIT",
|
|
1831
|
+
"funding": {
|
|
1832
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
"node_modules/get-intrinsic": {
|
|
1836
|
+
"version": "1.3.0",
|
|
1837
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1838
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1839
|
+
"license": "MIT",
|
|
1840
|
+
"dependencies": {
|
|
1841
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1842
|
+
"es-define-property": "^1.0.1",
|
|
1843
|
+
"es-errors": "^1.3.0",
|
|
1844
|
+
"es-object-atoms": "^1.1.1",
|
|
1845
|
+
"function-bind": "^1.1.2",
|
|
1846
|
+
"get-proto": "^1.0.1",
|
|
1847
|
+
"gopd": "^1.2.0",
|
|
1848
|
+
"has-symbols": "^1.1.0",
|
|
1849
|
+
"hasown": "^2.0.2",
|
|
1850
|
+
"math-intrinsics": "^1.1.0"
|
|
1851
|
+
},
|
|
1852
|
+
"engines": {
|
|
1853
|
+
"node": ">= 0.4"
|
|
1854
|
+
},
|
|
1855
|
+
"funding": {
|
|
1856
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1857
|
+
}
|
|
1858
|
+
},
|
|
1859
|
+
"node_modules/get-proto": {
|
|
1860
|
+
"version": "1.0.1",
|
|
1861
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
1862
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1863
|
+
"license": "MIT",
|
|
1864
|
+
"dependencies": {
|
|
1865
|
+
"dunder-proto": "^1.0.1",
|
|
1866
|
+
"es-object-atoms": "^1.0.0"
|
|
1867
|
+
},
|
|
1868
|
+
"engines": {
|
|
1869
|
+
"node": ">= 0.4"
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"node_modules/glob-parent": {
|
|
1873
|
+
"version": "6.0.2",
|
|
1874
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
|
1875
|
+
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
|
1876
|
+
"dev": true,
|
|
1877
|
+
"license": "ISC",
|
|
1878
|
+
"dependencies": {
|
|
1879
|
+
"is-glob": "^4.0.3"
|
|
1880
|
+
},
|
|
1881
|
+
"engines": {
|
|
1882
|
+
"node": ">=10.13.0"
|
|
1883
|
+
}
|
|
1884
|
+
},
|
|
1885
|
+
"node_modules/goober": {
|
|
1886
|
+
"version": "2.1.18",
|
|
1887
|
+
"resolved": "https://registry.npmjs.org/goober/-/goober-2.1.18.tgz",
|
|
1888
|
+
"integrity": "sha512-2vFqsaDVIT9Gz7N6kAL++pLpp41l3PfDuusHcjnGLfR6+huZkl6ziX+zgVC3ZxpqWhzH6pyDdGrCeDhMIvwaxw==",
|
|
1889
|
+
"license": "MIT",
|
|
1890
|
+
"peerDependencies": {
|
|
1891
|
+
"csstype": "^3.0.10"
|
|
1892
|
+
}
|
|
1893
|
+
},
|
|
1894
|
+
"node_modules/gopd": {
|
|
1895
|
+
"version": "1.2.0",
|
|
1896
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
1897
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1898
|
+
"license": "MIT",
|
|
1899
|
+
"engines": {
|
|
1900
|
+
"node": ">= 0.4"
|
|
1901
|
+
},
|
|
1902
|
+
"funding": {
|
|
1903
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"node_modules/has-symbols": {
|
|
1907
|
+
"version": "1.1.0",
|
|
1908
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1909
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1910
|
+
"license": "MIT",
|
|
1911
|
+
"engines": {
|
|
1912
|
+
"node": ">= 0.4"
|
|
1913
|
+
},
|
|
1914
|
+
"funding": {
|
|
1915
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1918
|
+
"node_modules/has-tostringtag": {
|
|
1919
|
+
"version": "1.0.2",
|
|
1920
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
1921
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
1922
|
+
"license": "MIT",
|
|
1923
|
+
"dependencies": {
|
|
1924
|
+
"has-symbols": "^1.0.3"
|
|
1925
|
+
},
|
|
1926
|
+
"engines": {
|
|
1927
|
+
"node": ">= 0.4"
|
|
1928
|
+
},
|
|
1929
|
+
"funding": {
|
|
1930
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1931
|
+
}
|
|
1932
|
+
},
|
|
1933
|
+
"node_modules/hasown": {
|
|
1934
|
+
"version": "2.0.2",
|
|
1935
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
1936
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
1937
|
+
"license": "MIT",
|
|
1938
|
+
"dependencies": {
|
|
1939
|
+
"function-bind": "^1.1.2"
|
|
1940
|
+
},
|
|
1941
|
+
"engines": {
|
|
1942
|
+
"node": ">= 0.4"
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1945
|
+
"node_modules/http-proxy": {
|
|
1946
|
+
"version": "1.18.1",
|
|
1947
|
+
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
|
|
1948
|
+
"integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
|
|
1949
|
+
"license": "MIT",
|
|
1950
|
+
"dependencies": {
|
|
1951
|
+
"eventemitter3": "^4.0.0",
|
|
1952
|
+
"follow-redirects": "^1.0.0",
|
|
1953
|
+
"requires-port": "^1.0.0"
|
|
1954
|
+
},
|
|
1955
|
+
"engines": {
|
|
1956
|
+
"node": ">=8.0.0"
|
|
1957
|
+
}
|
|
1958
|
+
},
|
|
1959
|
+
"node_modules/iconv-lite": {
|
|
1960
|
+
"version": "0.7.0",
|
|
1961
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
|
|
1962
|
+
"integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
|
|
1963
|
+
"license": "MIT",
|
|
1964
|
+
"dependencies": {
|
|
1965
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
1966
|
+
},
|
|
1967
|
+
"engines": {
|
|
1968
|
+
"node": ">=0.10.0"
|
|
1969
|
+
},
|
|
1970
|
+
"funding": {
|
|
1971
|
+
"type": "opencollective",
|
|
1972
|
+
"url": "https://opencollective.com/express"
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
"node_modules/inquirer": {
|
|
1976
|
+
"version": "12.11.1",
|
|
1977
|
+
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-12.11.1.tgz",
|
|
1978
|
+
"integrity": "sha512-9VF7mrY+3OmsAfjH3yKz/pLbJ5z22E23hENKw3/LNSaA/sAt3v49bDRY+Ygct1xwuKT+U+cBfTzjCPySna69Qw==",
|
|
1979
|
+
"license": "MIT",
|
|
1980
|
+
"dependencies": {
|
|
1981
|
+
"@inquirer/ansi": "^1.0.2",
|
|
1982
|
+
"@inquirer/core": "^10.3.2",
|
|
1983
|
+
"@inquirer/prompts": "^7.10.1",
|
|
1984
|
+
"@inquirer/type": "^3.0.10",
|
|
1985
|
+
"mute-stream": "^2.0.0",
|
|
1986
|
+
"run-async": "^4.0.6",
|
|
1987
|
+
"rxjs": "^7.8.2"
|
|
1988
|
+
},
|
|
1989
|
+
"engines": {
|
|
1990
|
+
"node": ">=18"
|
|
1991
|
+
},
|
|
1992
|
+
"peerDependencies": {
|
|
1993
|
+
"@types/node": ">=18"
|
|
1994
|
+
},
|
|
1995
|
+
"peerDependenciesMeta": {
|
|
1996
|
+
"@types/node": {
|
|
1997
|
+
"optional": true
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
},
|
|
2001
|
+
"node_modules/is-binary-path": {
|
|
2002
|
+
"version": "2.1.0",
|
|
2003
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
2004
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
2005
|
+
"dev": true,
|
|
2006
|
+
"license": "MIT",
|
|
2007
|
+
"dependencies": {
|
|
2008
|
+
"binary-extensions": "^2.0.0"
|
|
2009
|
+
},
|
|
2010
|
+
"engines": {
|
|
2011
|
+
"node": ">=8"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"node_modules/is-core-module": {
|
|
2015
|
+
"version": "2.16.1",
|
|
2016
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
2017
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
2018
|
+
"dev": true,
|
|
2019
|
+
"license": "MIT",
|
|
2020
|
+
"dependencies": {
|
|
2021
|
+
"hasown": "^2.0.2"
|
|
2022
|
+
},
|
|
2023
|
+
"engines": {
|
|
2024
|
+
"node": ">= 0.4"
|
|
2025
|
+
},
|
|
2026
|
+
"funding": {
|
|
2027
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"node_modules/is-extglob": {
|
|
2031
|
+
"version": "2.1.1",
|
|
2032
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
2033
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
2034
|
+
"dev": true,
|
|
2035
|
+
"license": "MIT",
|
|
2036
|
+
"engines": {
|
|
2037
|
+
"node": ">=0.10.0"
|
|
2038
|
+
}
|
|
2039
|
+
},
|
|
2040
|
+
"node_modules/is-fullwidth-code-point": {
|
|
2041
|
+
"version": "3.0.0",
|
|
2042
|
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
|
2043
|
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
|
2044
|
+
"license": "MIT",
|
|
2045
|
+
"engines": {
|
|
2046
|
+
"node": ">=8"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
"node_modules/is-glob": {
|
|
2050
|
+
"version": "4.0.3",
|
|
2051
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
2052
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
2053
|
+
"dev": true,
|
|
2054
|
+
"license": "MIT",
|
|
2055
|
+
"dependencies": {
|
|
2056
|
+
"is-extglob": "^2.1.1"
|
|
2057
|
+
},
|
|
2058
|
+
"engines": {
|
|
2059
|
+
"node": ">=0.10.0"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"node_modules/is-number": {
|
|
2063
|
+
"version": "7.0.0",
|
|
2064
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
2065
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
2066
|
+
"dev": true,
|
|
2067
|
+
"license": "MIT",
|
|
2068
|
+
"engines": {
|
|
2069
|
+
"node": ">=0.12.0"
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"node_modules/jiti": {
|
|
2073
|
+
"version": "1.21.7",
|
|
2074
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz",
|
|
2075
|
+
"integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==",
|
|
2076
|
+
"dev": true,
|
|
2077
|
+
"license": "MIT",
|
|
2078
|
+
"peer": true,
|
|
2079
|
+
"bin": {
|
|
2080
|
+
"jiti": "bin/jiti.js"
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"node_modules/lilconfig": {
|
|
2084
|
+
"version": "3.1.3",
|
|
2085
|
+
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
|
|
2086
|
+
"integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
|
|
2087
|
+
"dev": true,
|
|
2088
|
+
"license": "MIT",
|
|
2089
|
+
"engines": {
|
|
2090
|
+
"node": ">=14"
|
|
2091
|
+
},
|
|
2092
|
+
"funding": {
|
|
2093
|
+
"url": "https://github.com/sponsors/antonk52"
|
|
2094
|
+
}
|
|
2095
|
+
},
|
|
2096
|
+
"node_modules/lines-and-columns": {
|
|
2097
|
+
"version": "1.2.4",
|
|
2098
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
2099
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
2100
|
+
"dev": true,
|
|
2101
|
+
"license": "MIT"
|
|
2102
|
+
},
|
|
2103
|
+
"node_modules/lucide-react": {
|
|
2104
|
+
"version": "0.554.0",
|
|
2105
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.554.0.tgz",
|
|
2106
|
+
"integrity": "sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA==",
|
|
2107
|
+
"license": "ISC",
|
|
2108
|
+
"peerDependencies": {
|
|
2109
|
+
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
2110
|
+
}
|
|
2111
|
+
},
|
|
2112
|
+
"node_modules/math-intrinsics": {
|
|
2113
|
+
"version": "1.1.0",
|
|
2114
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
2115
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
2116
|
+
"license": "MIT",
|
|
2117
|
+
"engines": {
|
|
2118
|
+
"node": ">= 0.4"
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
"node_modules/merge2": {
|
|
2122
|
+
"version": "1.4.1",
|
|
2123
|
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
2124
|
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
|
2125
|
+
"dev": true,
|
|
2126
|
+
"license": "MIT",
|
|
2127
|
+
"engines": {
|
|
2128
|
+
"node": ">= 8"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
"node_modules/micromatch": {
|
|
2132
|
+
"version": "4.0.8",
|
|
2133
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
2134
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
2135
|
+
"dev": true,
|
|
2136
|
+
"license": "MIT",
|
|
2137
|
+
"dependencies": {
|
|
2138
|
+
"braces": "^3.0.3",
|
|
2139
|
+
"picomatch": "^2.3.1"
|
|
2140
|
+
},
|
|
2141
|
+
"engines": {
|
|
2142
|
+
"node": ">=8.6"
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
"node_modules/mime-db": {
|
|
2146
|
+
"version": "1.52.0",
|
|
2147
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
2148
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
2149
|
+
"license": "MIT",
|
|
2150
|
+
"engines": {
|
|
2151
|
+
"node": ">= 0.6"
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2154
|
+
"node_modules/mime-types": {
|
|
2155
|
+
"version": "2.1.35",
|
|
2156
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
2157
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
2158
|
+
"license": "MIT",
|
|
2159
|
+
"dependencies": {
|
|
2160
|
+
"mime-db": "1.52.0"
|
|
2161
|
+
},
|
|
2162
|
+
"engines": {
|
|
2163
|
+
"node": ">= 0.6"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
"node_modules/motion-dom": {
|
|
2167
|
+
"version": "12.23.23",
|
|
2168
|
+
"resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.23.tgz",
|
|
2169
|
+
"integrity": "sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==",
|
|
2170
|
+
"license": "MIT",
|
|
2171
|
+
"dependencies": {
|
|
2172
|
+
"motion-utils": "^12.23.6"
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
2175
|
+
"node_modules/motion-utils": {
|
|
2176
|
+
"version": "12.23.6",
|
|
2177
|
+
"resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz",
|
|
2178
|
+
"integrity": "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==",
|
|
2179
|
+
"license": "MIT"
|
|
2180
|
+
},
|
|
2181
|
+
"node_modules/mute-stream": {
|
|
2182
|
+
"version": "2.0.0",
|
|
2183
|
+
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
|
|
2184
|
+
"integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
|
|
2185
|
+
"license": "ISC",
|
|
2186
|
+
"engines": {
|
|
2187
|
+
"node": "^18.17.0 || >=20.5.0"
|
|
2188
|
+
}
|
|
2189
|
+
},
|
|
2190
|
+
"node_modules/mz": {
|
|
2191
|
+
"version": "2.7.0",
|
|
2192
|
+
"resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
|
|
2193
|
+
"integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
|
|
2194
|
+
"dev": true,
|
|
2195
|
+
"license": "MIT",
|
|
2196
|
+
"dependencies": {
|
|
2197
|
+
"any-promise": "^1.0.0",
|
|
2198
|
+
"object-assign": "^4.0.1",
|
|
2199
|
+
"thenify-all": "^1.0.0"
|
|
2200
|
+
}
|
|
2201
|
+
},
|
|
2202
|
+
"node_modules/nanoid": {
|
|
2203
|
+
"version": "3.3.11",
|
|
2204
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2205
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2206
|
+
"funding": [
|
|
2207
|
+
{
|
|
2208
|
+
"type": "github",
|
|
2209
|
+
"url": "https://github.com/sponsors/ai"
|
|
2210
|
+
}
|
|
2211
|
+
],
|
|
2212
|
+
"license": "MIT",
|
|
2213
|
+
"bin": {
|
|
2214
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2215
|
+
},
|
|
2216
|
+
"engines": {
|
|
2217
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
"node_modules/next": {
|
|
2221
|
+
"version": "16.0.3",
|
|
2222
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.0.3.tgz",
|
|
2223
|
+
"integrity": "sha512-Ka0/iNBblPFcIubTA1Jjh6gvwqfjrGq1Y2MTI5lbjeLIAfmC+p5bQmojpRZqgHHVu5cG4+qdIiwXiBSm/8lZ3w==",
|
|
2224
|
+
"license": "MIT",
|
|
2225
|
+
"peer": true,
|
|
2226
|
+
"dependencies": {
|
|
2227
|
+
"@next/env": "16.0.3",
|
|
2228
|
+
"@swc/helpers": "0.5.15",
|
|
2229
|
+
"caniuse-lite": "^1.0.30001579",
|
|
2230
|
+
"postcss": "8.4.31",
|
|
2231
|
+
"styled-jsx": "5.1.6"
|
|
2232
|
+
},
|
|
2233
|
+
"bin": {
|
|
2234
|
+
"next": "dist/bin/next"
|
|
2235
|
+
},
|
|
2236
|
+
"engines": {
|
|
2237
|
+
"node": ">=20.9.0"
|
|
2238
|
+
},
|
|
2239
|
+
"optionalDependencies": {
|
|
2240
|
+
"@next/swc-darwin-arm64": "16.0.3",
|
|
2241
|
+
"@next/swc-darwin-x64": "16.0.3",
|
|
2242
|
+
"@next/swc-linux-arm64-gnu": "16.0.3",
|
|
2243
|
+
"@next/swc-linux-arm64-musl": "16.0.3",
|
|
2244
|
+
"@next/swc-linux-x64-gnu": "16.0.3",
|
|
2245
|
+
"@next/swc-linux-x64-musl": "16.0.3",
|
|
2246
|
+
"@next/swc-win32-arm64-msvc": "16.0.3",
|
|
2247
|
+
"@next/swc-win32-x64-msvc": "16.0.3",
|
|
2248
|
+
"sharp": "^0.34.4"
|
|
2249
|
+
},
|
|
2250
|
+
"peerDependencies": {
|
|
2251
|
+
"@opentelemetry/api": "^1.1.0",
|
|
2252
|
+
"@playwright/test": "^1.51.1",
|
|
2253
|
+
"babel-plugin-react-compiler": "*",
|
|
2254
|
+
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
2255
|
+
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
2256
|
+
"sass": "^1.3.0"
|
|
2257
|
+
},
|
|
2258
|
+
"peerDependenciesMeta": {
|
|
2259
|
+
"@opentelemetry/api": {
|
|
2260
|
+
"optional": true
|
|
2261
|
+
},
|
|
2262
|
+
"@playwright/test": {
|
|
2263
|
+
"optional": true
|
|
2264
|
+
},
|
|
2265
|
+
"babel-plugin-react-compiler": {
|
|
2266
|
+
"optional": true
|
|
2267
|
+
},
|
|
2268
|
+
"sass": {
|
|
2269
|
+
"optional": true
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
2273
|
+
"node_modules/next/node_modules/postcss": {
|
|
2274
|
+
"version": "8.4.31",
|
|
2275
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
2276
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
2277
|
+
"funding": [
|
|
2278
|
+
{
|
|
2279
|
+
"type": "opencollective",
|
|
2280
|
+
"url": "https://opencollective.com/postcss/"
|
|
2281
|
+
},
|
|
2282
|
+
{
|
|
2283
|
+
"type": "tidelift",
|
|
2284
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"type": "github",
|
|
2288
|
+
"url": "https://github.com/sponsors/ai"
|
|
2289
|
+
}
|
|
2290
|
+
],
|
|
2291
|
+
"license": "MIT",
|
|
2292
|
+
"dependencies": {
|
|
2293
|
+
"nanoid": "^3.3.6",
|
|
2294
|
+
"picocolors": "^1.0.0",
|
|
2295
|
+
"source-map-js": "^1.0.2"
|
|
2296
|
+
},
|
|
2297
|
+
"engines": {
|
|
2298
|
+
"node": "^10 || ^12 || >=14"
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
"node_modules/node-releases": {
|
|
2302
|
+
"version": "2.0.27",
|
|
2303
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
|
|
2304
|
+
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
|
2305
|
+
"dev": true,
|
|
2306
|
+
"license": "MIT"
|
|
2307
|
+
},
|
|
2308
|
+
"node_modules/normalize-path": {
|
|
2309
|
+
"version": "3.0.0",
|
|
2310
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
2311
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
2312
|
+
"dev": true,
|
|
2313
|
+
"license": "MIT",
|
|
2314
|
+
"engines": {
|
|
2315
|
+
"node": ">=0.10.0"
|
|
2316
|
+
}
|
|
2317
|
+
},
|
|
2318
|
+
"node_modules/normalize-range": {
|
|
2319
|
+
"version": "0.1.2",
|
|
2320
|
+
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
|
2321
|
+
"integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
|
|
2322
|
+
"dev": true,
|
|
2323
|
+
"license": "MIT",
|
|
2324
|
+
"engines": {
|
|
2325
|
+
"node": ">=0.10.0"
|
|
2326
|
+
}
|
|
2327
|
+
},
|
|
2328
|
+
"node_modules/object-assign": {
|
|
2329
|
+
"version": "4.1.1",
|
|
2330
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
2331
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
2332
|
+
"dev": true,
|
|
2333
|
+
"license": "MIT",
|
|
2334
|
+
"engines": {
|
|
2335
|
+
"node": ">=0.10.0"
|
|
2336
|
+
}
|
|
2337
|
+
},
|
|
2338
|
+
"node_modules/object-hash": {
|
|
2339
|
+
"version": "3.0.0",
|
|
2340
|
+
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
|
|
2341
|
+
"integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
|
|
2342
|
+
"dev": true,
|
|
2343
|
+
"license": "MIT",
|
|
2344
|
+
"engines": {
|
|
2345
|
+
"node": ">= 6"
|
|
2346
|
+
}
|
|
2347
|
+
},
|
|
2348
|
+
"node_modules/path-parse": {
|
|
2349
|
+
"version": "1.0.7",
|
|
2350
|
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
2351
|
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
|
2352
|
+
"dev": true,
|
|
2353
|
+
"license": "MIT"
|
|
2354
|
+
},
|
|
2355
|
+
"node_modules/picocolors": {
|
|
2356
|
+
"version": "1.1.1",
|
|
2357
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2358
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2359
|
+
"license": "ISC"
|
|
2360
|
+
},
|
|
2361
|
+
"node_modules/picomatch": {
|
|
2362
|
+
"version": "2.3.1",
|
|
2363
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
2364
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
2365
|
+
"dev": true,
|
|
2366
|
+
"license": "MIT",
|
|
2367
|
+
"engines": {
|
|
2368
|
+
"node": ">=8.6"
|
|
2369
|
+
},
|
|
2370
|
+
"funding": {
|
|
2371
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2372
|
+
}
|
|
2373
|
+
},
|
|
2374
|
+
"node_modules/pify": {
|
|
2375
|
+
"version": "2.3.0",
|
|
2376
|
+
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
|
2377
|
+
"integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
|
|
2378
|
+
"dev": true,
|
|
2379
|
+
"license": "MIT",
|
|
2380
|
+
"engines": {
|
|
2381
|
+
"node": ">=0.10.0"
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
"node_modules/pirates": {
|
|
2385
|
+
"version": "4.0.7",
|
|
2386
|
+
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
|
|
2387
|
+
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
2388
|
+
"dev": true,
|
|
2389
|
+
"license": "MIT",
|
|
2390
|
+
"engines": {
|
|
2391
|
+
"node": ">= 6"
|
|
2392
|
+
}
|
|
2393
|
+
},
|
|
2394
|
+
"node_modules/postcss": {
|
|
2395
|
+
"version": "8.5.6",
|
|
2396
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
2397
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
2398
|
+
"dev": true,
|
|
2399
|
+
"funding": [
|
|
2400
|
+
{
|
|
2401
|
+
"type": "opencollective",
|
|
2402
|
+
"url": "https://opencollective.com/postcss/"
|
|
2403
|
+
},
|
|
2404
|
+
{
|
|
2405
|
+
"type": "tidelift",
|
|
2406
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"type": "github",
|
|
2410
|
+
"url": "https://github.com/sponsors/ai"
|
|
2411
|
+
}
|
|
2412
|
+
],
|
|
2413
|
+
"license": "MIT",
|
|
2414
|
+
"peer": true,
|
|
2415
|
+
"dependencies": {
|
|
2416
|
+
"nanoid": "^3.3.11",
|
|
2417
|
+
"picocolors": "^1.1.1",
|
|
2418
|
+
"source-map-js": "^1.2.1"
|
|
2419
|
+
},
|
|
2420
|
+
"engines": {
|
|
2421
|
+
"node": "^10 || ^12 || >=14"
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
"node_modules/postcss-import": {
|
|
2425
|
+
"version": "15.1.0",
|
|
2426
|
+
"resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
|
|
2427
|
+
"integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
|
|
2428
|
+
"dev": true,
|
|
2429
|
+
"license": "MIT",
|
|
2430
|
+
"dependencies": {
|
|
2431
|
+
"postcss-value-parser": "^4.0.0",
|
|
2432
|
+
"read-cache": "^1.0.0",
|
|
2433
|
+
"resolve": "^1.1.7"
|
|
2434
|
+
},
|
|
2435
|
+
"engines": {
|
|
2436
|
+
"node": ">=14.0.0"
|
|
2437
|
+
},
|
|
2438
|
+
"peerDependencies": {
|
|
2439
|
+
"postcss": "^8.0.0"
|
|
2440
|
+
}
|
|
2441
|
+
},
|
|
2442
|
+
"node_modules/postcss-js": {
|
|
2443
|
+
"version": "4.1.0",
|
|
2444
|
+
"resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.1.0.tgz",
|
|
2445
|
+
"integrity": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==",
|
|
2446
|
+
"dev": true,
|
|
2447
|
+
"funding": [
|
|
2448
|
+
{
|
|
2449
|
+
"type": "opencollective",
|
|
2450
|
+
"url": "https://opencollective.com/postcss/"
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
"type": "github",
|
|
2454
|
+
"url": "https://github.com/sponsors/ai"
|
|
2455
|
+
}
|
|
2456
|
+
],
|
|
2457
|
+
"license": "MIT",
|
|
2458
|
+
"dependencies": {
|
|
2459
|
+
"camelcase-css": "^2.0.1"
|
|
2460
|
+
},
|
|
2461
|
+
"engines": {
|
|
2462
|
+
"node": "^12 || ^14 || >= 16"
|
|
2463
|
+
},
|
|
2464
|
+
"peerDependencies": {
|
|
2465
|
+
"postcss": "^8.4.21"
|
|
2466
|
+
}
|
|
2467
|
+
},
|
|
2468
|
+
"node_modules/postcss-load-config": {
|
|
2469
|
+
"version": "6.0.1",
|
|
2470
|
+
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz",
|
|
2471
|
+
"integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==",
|
|
2472
|
+
"dev": true,
|
|
2473
|
+
"funding": [
|
|
2474
|
+
{
|
|
2475
|
+
"type": "opencollective",
|
|
2476
|
+
"url": "https://opencollective.com/postcss/"
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
"type": "github",
|
|
2480
|
+
"url": "https://github.com/sponsors/ai"
|
|
2481
|
+
}
|
|
2482
|
+
],
|
|
2483
|
+
"license": "MIT",
|
|
2484
|
+
"dependencies": {
|
|
2485
|
+
"lilconfig": "^3.1.1"
|
|
2486
|
+
},
|
|
2487
|
+
"engines": {
|
|
2488
|
+
"node": ">= 18"
|
|
2489
|
+
},
|
|
2490
|
+
"peerDependencies": {
|
|
2491
|
+
"jiti": ">=1.21.0",
|
|
2492
|
+
"postcss": ">=8.0.9",
|
|
2493
|
+
"tsx": "^4.8.1",
|
|
2494
|
+
"yaml": "^2.4.2"
|
|
2495
|
+
},
|
|
2496
|
+
"peerDependenciesMeta": {
|
|
2497
|
+
"jiti": {
|
|
2498
|
+
"optional": true
|
|
2499
|
+
},
|
|
2500
|
+
"postcss": {
|
|
2501
|
+
"optional": true
|
|
2502
|
+
},
|
|
2503
|
+
"tsx": {
|
|
2504
|
+
"optional": true
|
|
2505
|
+
},
|
|
2506
|
+
"yaml": {
|
|
2507
|
+
"optional": true
|
|
2508
|
+
}
|
|
2509
|
+
}
|
|
2510
|
+
},
|
|
2511
|
+
"node_modules/postcss-nested": {
|
|
2512
|
+
"version": "6.2.0",
|
|
2513
|
+
"resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz",
|
|
2514
|
+
"integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==",
|
|
2515
|
+
"dev": true,
|
|
2516
|
+
"funding": [
|
|
2517
|
+
{
|
|
2518
|
+
"type": "opencollective",
|
|
2519
|
+
"url": "https://opencollective.com/postcss/"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"type": "github",
|
|
2523
|
+
"url": "https://github.com/sponsors/ai"
|
|
2524
|
+
}
|
|
2525
|
+
],
|
|
2526
|
+
"license": "MIT",
|
|
2527
|
+
"dependencies": {
|
|
2528
|
+
"postcss-selector-parser": "^6.1.1"
|
|
2529
|
+
},
|
|
2530
|
+
"engines": {
|
|
2531
|
+
"node": ">=12.0"
|
|
2532
|
+
},
|
|
2533
|
+
"peerDependencies": {
|
|
2534
|
+
"postcss": "^8.2.14"
|
|
2535
|
+
}
|
|
2536
|
+
},
|
|
2537
|
+
"node_modules/postcss-selector-parser": {
|
|
2538
|
+
"version": "6.1.2",
|
|
2539
|
+
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
|
|
2540
|
+
"integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
|
|
2541
|
+
"dev": true,
|
|
2542
|
+
"license": "MIT",
|
|
2543
|
+
"dependencies": {
|
|
2544
|
+
"cssesc": "^3.0.0",
|
|
2545
|
+
"util-deprecate": "^1.0.2"
|
|
2546
|
+
},
|
|
2547
|
+
"engines": {
|
|
2548
|
+
"node": ">=4"
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
"node_modules/postcss-value-parser": {
|
|
2552
|
+
"version": "4.2.0",
|
|
2553
|
+
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
|
|
2554
|
+
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
|
|
2555
|
+
"dev": true,
|
|
2556
|
+
"license": "MIT"
|
|
2557
|
+
},
|
|
2558
|
+
"node_modules/proxy-from-env": {
|
|
2559
|
+
"version": "1.1.0",
|
|
2560
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
|
2561
|
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
2562
|
+
"license": "MIT"
|
|
2563
|
+
},
|
|
2564
|
+
"node_modules/queue-microtask": {
|
|
2565
|
+
"version": "1.2.3",
|
|
2566
|
+
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
2567
|
+
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
|
|
2568
|
+
"dev": true,
|
|
2569
|
+
"funding": [
|
|
2570
|
+
{
|
|
2571
|
+
"type": "github",
|
|
2572
|
+
"url": "https://github.com/sponsors/feross"
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"type": "patreon",
|
|
2576
|
+
"url": "https://www.patreon.com/feross"
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
"type": "consulting",
|
|
2580
|
+
"url": "https://feross.org/support"
|
|
2581
|
+
}
|
|
2582
|
+
],
|
|
2583
|
+
"license": "MIT"
|
|
2584
|
+
},
|
|
2585
|
+
"node_modules/react": {
|
|
2586
|
+
"version": "19.2.0",
|
|
2587
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
|
|
2588
|
+
"integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
|
|
2589
|
+
"license": "MIT",
|
|
2590
|
+
"peer": true,
|
|
2591
|
+
"engines": {
|
|
2592
|
+
"node": ">=0.10.0"
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"node_modules/react-dom": {
|
|
2596
|
+
"version": "19.2.0",
|
|
2597
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
|
|
2598
|
+
"integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
|
|
2599
|
+
"license": "MIT",
|
|
2600
|
+
"peer": true,
|
|
2601
|
+
"dependencies": {
|
|
2602
|
+
"scheduler": "^0.27.0"
|
|
2603
|
+
},
|
|
2604
|
+
"peerDependencies": {
|
|
2605
|
+
"react": "^19.2.0"
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2608
|
+
"node_modules/react-hot-toast": {
|
|
2609
|
+
"version": "2.6.0",
|
|
2610
|
+
"resolved": "https://registry.npmjs.org/react-hot-toast/-/react-hot-toast-2.6.0.tgz",
|
|
2611
|
+
"integrity": "sha512-bH+2EBMZ4sdyou/DPrfgIouFpcRLCJ+HoCA32UoAYHn6T3Ur5yfcDCeSr5mwldl6pFOsiocmrXMuoCJ1vV8bWg==",
|
|
2612
|
+
"license": "MIT",
|
|
2613
|
+
"dependencies": {
|
|
2614
|
+
"csstype": "^3.1.3",
|
|
2615
|
+
"goober": "^2.1.16"
|
|
2616
|
+
},
|
|
2617
|
+
"engines": {
|
|
2618
|
+
"node": ">=10"
|
|
2619
|
+
},
|
|
2620
|
+
"peerDependencies": {
|
|
2621
|
+
"react": ">=16",
|
|
2622
|
+
"react-dom": ">=16"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
"node_modules/read-cache": {
|
|
2626
|
+
"version": "1.0.0",
|
|
2627
|
+
"resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
|
|
2628
|
+
"integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
|
|
2629
|
+
"dev": true,
|
|
2630
|
+
"license": "MIT",
|
|
2631
|
+
"dependencies": {
|
|
2632
|
+
"pify": "^2.3.0"
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2635
|
+
"node_modules/readdirp": {
|
|
2636
|
+
"version": "4.1.2",
|
|
2637
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
|
2638
|
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
|
|
2639
|
+
"license": "MIT",
|
|
2640
|
+
"engines": {
|
|
2641
|
+
"node": ">= 14.18.0"
|
|
2642
|
+
},
|
|
2643
|
+
"funding": {
|
|
2644
|
+
"type": "individual",
|
|
2645
|
+
"url": "https://paulmillr.com/funding/"
|
|
2646
|
+
}
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/reflect-metadata": {
|
|
2649
|
+
"version": "0.2.2",
|
|
2650
|
+
"resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz",
|
|
2651
|
+
"integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==",
|
|
2652
|
+
"license": "Apache-2.0"
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/requires-port": {
|
|
2655
|
+
"version": "1.0.0",
|
|
2656
|
+
"resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
|
|
2657
|
+
"integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
|
|
2658
|
+
"license": "MIT"
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/resolve": {
|
|
2661
|
+
"version": "1.22.11",
|
|
2662
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
|
|
2663
|
+
"integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==",
|
|
2664
|
+
"dev": true,
|
|
2665
|
+
"license": "MIT",
|
|
2666
|
+
"dependencies": {
|
|
2667
|
+
"is-core-module": "^2.16.1",
|
|
2668
|
+
"path-parse": "^1.0.7",
|
|
2669
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
2670
|
+
},
|
|
2671
|
+
"bin": {
|
|
2672
|
+
"resolve": "bin/resolve"
|
|
2673
|
+
},
|
|
2674
|
+
"engines": {
|
|
2675
|
+
"node": ">= 0.4"
|
|
2676
|
+
},
|
|
2677
|
+
"funding": {
|
|
2678
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2679
|
+
}
|
|
2680
|
+
},
|
|
2681
|
+
"node_modules/reusify": {
|
|
2682
|
+
"version": "1.1.0",
|
|
2683
|
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
2684
|
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
|
2685
|
+
"dev": true,
|
|
2686
|
+
"license": "MIT",
|
|
2687
|
+
"engines": {
|
|
2688
|
+
"iojs": ">=1.0.0",
|
|
2689
|
+
"node": ">=0.10.0"
|
|
2690
|
+
}
|
|
2691
|
+
},
|
|
2692
|
+
"node_modules/run-async": {
|
|
2693
|
+
"version": "4.0.6",
|
|
2694
|
+
"resolved": "https://registry.npmjs.org/run-async/-/run-async-4.0.6.tgz",
|
|
2695
|
+
"integrity": "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ==",
|
|
2696
|
+
"license": "MIT",
|
|
2697
|
+
"engines": {
|
|
2698
|
+
"node": ">=0.12.0"
|
|
2699
|
+
}
|
|
2700
|
+
},
|
|
2701
|
+
"node_modules/run-parallel": {
|
|
2702
|
+
"version": "1.2.0",
|
|
2703
|
+
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
|
2704
|
+
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
|
|
2705
|
+
"dev": true,
|
|
2706
|
+
"funding": [
|
|
2707
|
+
{
|
|
2708
|
+
"type": "github",
|
|
2709
|
+
"url": "https://github.com/sponsors/feross"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
"type": "patreon",
|
|
2713
|
+
"url": "https://www.patreon.com/feross"
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
"type": "consulting",
|
|
2717
|
+
"url": "https://feross.org/support"
|
|
2718
|
+
}
|
|
2719
|
+
],
|
|
2720
|
+
"license": "MIT",
|
|
2721
|
+
"dependencies": {
|
|
2722
|
+
"queue-microtask": "^1.2.2"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
"node_modules/rxjs": {
|
|
2726
|
+
"version": "7.8.2",
|
|
2727
|
+
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
|
|
2728
|
+
"integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
|
|
2729
|
+
"license": "Apache-2.0",
|
|
2730
|
+
"dependencies": {
|
|
2731
|
+
"tslib": "^2.1.0"
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
"node_modules/safer-buffer": {
|
|
2735
|
+
"version": "2.1.2",
|
|
2736
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
2737
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
2738
|
+
"license": "MIT"
|
|
2739
|
+
},
|
|
2740
|
+
"node_modules/scheduler": {
|
|
2741
|
+
"version": "0.27.0",
|
|
2742
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
2743
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
2744
|
+
"license": "MIT"
|
|
2745
|
+
},
|
|
2746
|
+
"node_modules/semver": {
|
|
2747
|
+
"version": "7.7.3",
|
|
2748
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
2749
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
2750
|
+
"license": "ISC",
|
|
2751
|
+
"optional": true,
|
|
2752
|
+
"bin": {
|
|
2753
|
+
"semver": "bin/semver.js"
|
|
2754
|
+
},
|
|
2755
|
+
"engines": {
|
|
2756
|
+
"node": ">=10"
|
|
2757
|
+
}
|
|
2758
|
+
},
|
|
2759
|
+
"node_modules/sharp": {
|
|
2760
|
+
"version": "0.34.5",
|
|
2761
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
|
|
2762
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
2763
|
+
"hasInstallScript": true,
|
|
2764
|
+
"license": "Apache-2.0",
|
|
2765
|
+
"optional": true,
|
|
2766
|
+
"dependencies": {
|
|
2767
|
+
"@img/colour": "^1.0.0",
|
|
2768
|
+
"detect-libc": "^2.1.2",
|
|
2769
|
+
"semver": "^7.7.3"
|
|
2770
|
+
},
|
|
2771
|
+
"engines": {
|
|
2772
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2773
|
+
},
|
|
2774
|
+
"funding": {
|
|
2775
|
+
"url": "https://opencollective.com/libvips"
|
|
2776
|
+
},
|
|
2777
|
+
"optionalDependencies": {
|
|
2778
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
2779
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
2780
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
2781
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
2782
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
2783
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
2784
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
2785
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
2786
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
2787
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
2788
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
2789
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
2790
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
2791
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
2792
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
2793
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
2794
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
2795
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
2796
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
2797
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
2798
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
2799
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
2800
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
2801
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
2802
|
+
}
|
|
2803
|
+
},
|
|
2804
|
+
"node_modules/signal-exit": {
|
|
2805
|
+
"version": "4.1.0",
|
|
2806
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
2807
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
2808
|
+
"license": "ISC",
|
|
2809
|
+
"engines": {
|
|
2810
|
+
"node": ">=14"
|
|
2811
|
+
},
|
|
2812
|
+
"funding": {
|
|
2813
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"node_modules/source-map-js": {
|
|
2817
|
+
"version": "1.2.1",
|
|
2818
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
2819
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
2820
|
+
"license": "BSD-3-Clause",
|
|
2821
|
+
"engines": {
|
|
2822
|
+
"node": ">=0.10.0"
|
|
2823
|
+
}
|
|
2824
|
+
},
|
|
2825
|
+
"node_modules/string-width": {
|
|
2826
|
+
"version": "4.2.3",
|
|
2827
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
2828
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
2829
|
+
"license": "MIT",
|
|
2830
|
+
"dependencies": {
|
|
2831
|
+
"emoji-regex": "^8.0.0",
|
|
2832
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
2833
|
+
"strip-ansi": "^6.0.1"
|
|
2834
|
+
},
|
|
2835
|
+
"engines": {
|
|
2836
|
+
"node": ">=8"
|
|
2837
|
+
}
|
|
2838
|
+
},
|
|
2839
|
+
"node_modules/strip-ansi": {
|
|
2840
|
+
"version": "6.0.1",
|
|
2841
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
2842
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
2843
|
+
"license": "MIT",
|
|
2844
|
+
"dependencies": {
|
|
2845
|
+
"ansi-regex": "^5.0.1"
|
|
2846
|
+
},
|
|
2847
|
+
"engines": {
|
|
2848
|
+
"node": ">=8"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
"node_modules/styled-jsx": {
|
|
2852
|
+
"version": "5.1.6",
|
|
2853
|
+
"resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
|
|
2854
|
+
"integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
|
|
2855
|
+
"license": "MIT",
|
|
2856
|
+
"dependencies": {
|
|
2857
|
+
"client-only": "0.0.1"
|
|
2858
|
+
},
|
|
2859
|
+
"engines": {
|
|
2860
|
+
"node": ">= 12.0.0"
|
|
2861
|
+
},
|
|
2862
|
+
"peerDependencies": {
|
|
2863
|
+
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
|
|
2864
|
+
},
|
|
2865
|
+
"peerDependenciesMeta": {
|
|
2866
|
+
"@babel/core": {
|
|
2867
|
+
"optional": true
|
|
2868
|
+
},
|
|
2869
|
+
"babel-plugin-macros": {
|
|
2870
|
+
"optional": true
|
|
2871
|
+
}
|
|
2872
|
+
}
|
|
2873
|
+
},
|
|
2874
|
+
"node_modules/sucrase": {
|
|
2875
|
+
"version": "3.35.1",
|
|
2876
|
+
"resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.1.tgz",
|
|
2877
|
+
"integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
|
|
2878
|
+
"dev": true,
|
|
2879
|
+
"license": "MIT",
|
|
2880
|
+
"dependencies": {
|
|
2881
|
+
"@jridgewell/gen-mapping": "^0.3.2",
|
|
2882
|
+
"commander": "^4.0.0",
|
|
2883
|
+
"lines-and-columns": "^1.1.6",
|
|
2884
|
+
"mz": "^2.7.0",
|
|
2885
|
+
"pirates": "^4.0.1",
|
|
2886
|
+
"tinyglobby": "^0.2.11",
|
|
2887
|
+
"ts-interface-checker": "^0.1.9"
|
|
2888
|
+
},
|
|
2889
|
+
"bin": {
|
|
2890
|
+
"sucrase": "bin/sucrase",
|
|
2891
|
+
"sucrase-node": "bin/sucrase-node"
|
|
2892
|
+
},
|
|
2893
|
+
"engines": {
|
|
2894
|
+
"node": ">=16 || 14 >=14.17"
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
2897
|
+
"node_modules/sucrase/node_modules/commander": {
|
|
2898
|
+
"version": "4.1.1",
|
|
2899
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
|
|
2900
|
+
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
|
|
2901
|
+
"dev": true,
|
|
2902
|
+
"license": "MIT",
|
|
2903
|
+
"engines": {
|
|
2904
|
+
"node": ">= 6"
|
|
2905
|
+
}
|
|
2906
|
+
},
|
|
2907
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
2908
|
+
"version": "1.0.0",
|
|
2909
|
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
2910
|
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
2911
|
+
"dev": true,
|
|
2912
|
+
"license": "MIT",
|
|
2913
|
+
"engines": {
|
|
2914
|
+
"node": ">= 0.4"
|
|
2915
|
+
},
|
|
2916
|
+
"funding": {
|
|
2917
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
"node_modules/tailwind-merge": {
|
|
2921
|
+
"version": "2.6.0",
|
|
2922
|
+
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz",
|
|
2923
|
+
"integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==",
|
|
2924
|
+
"license": "MIT",
|
|
2925
|
+
"funding": {
|
|
2926
|
+
"type": "github",
|
|
2927
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2930
|
+
"node_modules/tailwindcss": {
|
|
2931
|
+
"version": "3.4.18",
|
|
2932
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.18.tgz",
|
|
2933
|
+
"integrity": "sha512-6A2rnmW5xZMdw11LYjhcI5846rt9pbLSabY5XPxo+XWdxwZaFEn47Go4NzFiHu9sNNmr/kXivP1vStfvMaK1GQ==",
|
|
2934
|
+
"dev": true,
|
|
2935
|
+
"license": "MIT",
|
|
2936
|
+
"dependencies": {
|
|
2937
|
+
"@alloc/quick-lru": "^5.2.0",
|
|
2938
|
+
"arg": "^5.0.2",
|
|
2939
|
+
"chokidar": "^3.6.0",
|
|
2940
|
+
"didyoumean": "^1.2.2",
|
|
2941
|
+
"dlv": "^1.1.3",
|
|
2942
|
+
"fast-glob": "^3.3.2",
|
|
2943
|
+
"glob-parent": "^6.0.2",
|
|
2944
|
+
"is-glob": "^4.0.3",
|
|
2945
|
+
"jiti": "^1.21.7",
|
|
2946
|
+
"lilconfig": "^3.1.3",
|
|
2947
|
+
"micromatch": "^4.0.8",
|
|
2948
|
+
"normalize-path": "^3.0.0",
|
|
2949
|
+
"object-hash": "^3.0.0",
|
|
2950
|
+
"picocolors": "^1.1.1",
|
|
2951
|
+
"postcss": "^8.4.47",
|
|
2952
|
+
"postcss-import": "^15.1.0",
|
|
2953
|
+
"postcss-js": "^4.0.1",
|
|
2954
|
+
"postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
|
|
2955
|
+
"postcss-nested": "^6.2.0",
|
|
2956
|
+
"postcss-selector-parser": "^6.1.2",
|
|
2957
|
+
"resolve": "^1.22.8",
|
|
2958
|
+
"sucrase": "^3.35.0"
|
|
2959
|
+
},
|
|
2960
|
+
"bin": {
|
|
2961
|
+
"tailwind": "lib/cli.js",
|
|
2962
|
+
"tailwindcss": "lib/cli.js"
|
|
2963
|
+
},
|
|
2964
|
+
"engines": {
|
|
2965
|
+
"node": ">=14.0.0"
|
|
2966
|
+
}
|
|
2967
|
+
},
|
|
2968
|
+
"node_modules/tailwindcss/node_modules/chokidar": {
|
|
2969
|
+
"version": "3.6.0",
|
|
2970
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
2971
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
2972
|
+
"dev": true,
|
|
2973
|
+
"license": "MIT",
|
|
2974
|
+
"dependencies": {
|
|
2975
|
+
"anymatch": "~3.1.2",
|
|
2976
|
+
"braces": "~3.0.2",
|
|
2977
|
+
"glob-parent": "~5.1.2",
|
|
2978
|
+
"is-binary-path": "~2.1.0",
|
|
2979
|
+
"is-glob": "~4.0.1",
|
|
2980
|
+
"normalize-path": "~3.0.0",
|
|
2981
|
+
"readdirp": "~3.6.0"
|
|
2982
|
+
},
|
|
2983
|
+
"engines": {
|
|
2984
|
+
"node": ">= 8.10.0"
|
|
2985
|
+
},
|
|
2986
|
+
"funding": {
|
|
2987
|
+
"url": "https://paulmillr.com/funding/"
|
|
2988
|
+
},
|
|
2989
|
+
"optionalDependencies": {
|
|
2990
|
+
"fsevents": "~2.3.2"
|
|
2991
|
+
}
|
|
2992
|
+
},
|
|
2993
|
+
"node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": {
|
|
2994
|
+
"version": "5.1.2",
|
|
2995
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
2996
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
2997
|
+
"dev": true,
|
|
2998
|
+
"license": "ISC",
|
|
2999
|
+
"dependencies": {
|
|
3000
|
+
"is-glob": "^4.0.1"
|
|
3001
|
+
},
|
|
3002
|
+
"engines": {
|
|
3003
|
+
"node": ">= 6"
|
|
3004
|
+
}
|
|
3005
|
+
},
|
|
3006
|
+
"node_modules/tailwindcss/node_modules/readdirp": {
|
|
3007
|
+
"version": "3.6.0",
|
|
3008
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
3009
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
3010
|
+
"dev": true,
|
|
3011
|
+
"license": "MIT",
|
|
3012
|
+
"dependencies": {
|
|
3013
|
+
"picomatch": "^2.2.1"
|
|
3014
|
+
},
|
|
3015
|
+
"engines": {
|
|
3016
|
+
"node": ">=8.10.0"
|
|
3017
|
+
}
|
|
3018
|
+
},
|
|
3019
|
+
"node_modules/thenify": {
|
|
3020
|
+
"version": "3.3.1",
|
|
3021
|
+
"resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
|
|
3022
|
+
"integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
|
|
3023
|
+
"dev": true,
|
|
3024
|
+
"license": "MIT",
|
|
3025
|
+
"dependencies": {
|
|
3026
|
+
"any-promise": "^1.0.0"
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
3029
|
+
"node_modules/thenify-all": {
|
|
3030
|
+
"version": "1.6.0",
|
|
3031
|
+
"resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
|
|
3032
|
+
"integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
|
|
3033
|
+
"dev": true,
|
|
3034
|
+
"license": "MIT",
|
|
3035
|
+
"dependencies": {
|
|
3036
|
+
"thenify": ">= 3.1.0 < 4"
|
|
3037
|
+
},
|
|
3038
|
+
"engines": {
|
|
3039
|
+
"node": ">=0.8"
|
|
3040
|
+
}
|
|
3041
|
+
},
|
|
3042
|
+
"node_modules/tinyglobby": {
|
|
3043
|
+
"version": "0.2.15",
|
|
3044
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
3045
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
3046
|
+
"dev": true,
|
|
3047
|
+
"license": "MIT",
|
|
3048
|
+
"dependencies": {
|
|
3049
|
+
"fdir": "^6.5.0",
|
|
3050
|
+
"picomatch": "^4.0.3"
|
|
3051
|
+
},
|
|
3052
|
+
"engines": {
|
|
3053
|
+
"node": ">=12.0.0"
|
|
3054
|
+
},
|
|
3055
|
+
"funding": {
|
|
3056
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
3057
|
+
}
|
|
3058
|
+
},
|
|
3059
|
+
"node_modules/tinyglobby/node_modules/fdir": {
|
|
3060
|
+
"version": "6.5.0",
|
|
3061
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
3062
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
3063
|
+
"dev": true,
|
|
3064
|
+
"license": "MIT",
|
|
3065
|
+
"engines": {
|
|
3066
|
+
"node": ">=12.0.0"
|
|
3067
|
+
},
|
|
3068
|
+
"peerDependencies": {
|
|
3069
|
+
"picomatch": "^3 || ^4"
|
|
3070
|
+
},
|
|
3071
|
+
"peerDependenciesMeta": {
|
|
3072
|
+
"picomatch": {
|
|
3073
|
+
"optional": true
|
|
3074
|
+
}
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
3077
|
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
3078
|
+
"version": "4.0.3",
|
|
3079
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
3080
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
3081
|
+
"dev": true,
|
|
3082
|
+
"license": "MIT",
|
|
3083
|
+
"peer": true,
|
|
3084
|
+
"engines": {
|
|
3085
|
+
"node": ">=12"
|
|
3086
|
+
},
|
|
3087
|
+
"funding": {
|
|
3088
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3089
|
+
}
|
|
3090
|
+
},
|
|
3091
|
+
"node_modules/to-regex-range": {
|
|
3092
|
+
"version": "5.0.1",
|
|
3093
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
3094
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
3095
|
+
"dev": true,
|
|
3096
|
+
"license": "MIT",
|
|
3097
|
+
"dependencies": {
|
|
3098
|
+
"is-number": "^7.0.0"
|
|
3099
|
+
},
|
|
3100
|
+
"engines": {
|
|
3101
|
+
"node": ">=8.0"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3104
|
+
"node_modules/ts-interface-checker": {
|
|
3105
|
+
"version": "0.1.13",
|
|
3106
|
+
"resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
|
|
3107
|
+
"integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==",
|
|
3108
|
+
"dev": true,
|
|
3109
|
+
"license": "Apache-2.0"
|
|
3110
|
+
},
|
|
3111
|
+
"node_modules/tslib": {
|
|
3112
|
+
"version": "2.8.1",
|
|
3113
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
3114
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
3115
|
+
"license": "0BSD"
|
|
3116
|
+
},
|
|
3117
|
+
"node_modules/typescript": {
|
|
3118
|
+
"version": "5.9.3",
|
|
3119
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
3120
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
3121
|
+
"license": "Apache-2.0",
|
|
3122
|
+
"bin": {
|
|
3123
|
+
"tsc": "bin/tsc",
|
|
3124
|
+
"tsserver": "bin/tsserver"
|
|
3125
|
+
},
|
|
3126
|
+
"engines": {
|
|
3127
|
+
"node": ">=14.17"
|
|
3128
|
+
}
|
|
3129
|
+
},
|
|
3130
|
+
"node_modules/undici-types": {
|
|
3131
|
+
"version": "6.21.0",
|
|
3132
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
3133
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
3134
|
+
"devOptional": true,
|
|
3135
|
+
"license": "MIT"
|
|
3136
|
+
},
|
|
3137
|
+
"node_modules/update-browserslist-db": {
|
|
3138
|
+
"version": "1.1.4",
|
|
3139
|
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
|
|
3140
|
+
"integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
|
|
3141
|
+
"dev": true,
|
|
3142
|
+
"funding": [
|
|
3143
|
+
{
|
|
3144
|
+
"type": "opencollective",
|
|
3145
|
+
"url": "https://opencollective.com/browserslist"
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
"type": "tidelift",
|
|
3149
|
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"type": "github",
|
|
3153
|
+
"url": "https://github.com/sponsors/ai"
|
|
3154
|
+
}
|
|
3155
|
+
],
|
|
3156
|
+
"license": "MIT",
|
|
3157
|
+
"dependencies": {
|
|
3158
|
+
"escalade": "^3.2.0",
|
|
3159
|
+
"picocolors": "^1.1.1"
|
|
3160
|
+
},
|
|
3161
|
+
"bin": {
|
|
3162
|
+
"update-browserslist-db": "cli.js"
|
|
3163
|
+
},
|
|
3164
|
+
"peerDependencies": {
|
|
3165
|
+
"browserslist": ">= 4.21.0"
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
3168
|
+
"node_modules/util-deprecate": {
|
|
3169
|
+
"version": "1.0.2",
|
|
3170
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
3171
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
|
3172
|
+
"dev": true,
|
|
3173
|
+
"license": "MIT"
|
|
3174
|
+
},
|
|
3175
|
+
"node_modules/wexts": {
|
|
3176
|
+
"version": "2.0.7",
|
|
3177
|
+
"resolved": "https://registry.npmjs.org/wexts/-/wexts-2.0.7.tgz",
|
|
3178
|
+
"integrity": "sha512-Xk1AFyaZGGrJwxyuxyqgOTbzNtxf3Gb252R2rByDtau/5IUNteRYphqsprltxfB7E6bD5/zJdoy4F+DxVZ/Kvw==",
|
|
3179
|
+
"license": "MIT",
|
|
3180
|
+
"dependencies": {
|
|
3181
|
+
"chokidar": "^4.0.3",
|
|
3182
|
+
"commander": "^12.1.0",
|
|
3183
|
+
"consola": "^3.2.3",
|
|
3184
|
+
"http-proxy": "^1.18.1",
|
|
3185
|
+
"inquirer": "^12.4.0",
|
|
3186
|
+
"picocolors": "^1.1.1",
|
|
3187
|
+
"reflect-metadata": "^0.2.2",
|
|
3188
|
+
"typescript": "^5.9.3"
|
|
3189
|
+
},
|
|
3190
|
+
"bin": {
|
|
3191
|
+
"wexts": "dist/cli/index.js"
|
|
3192
|
+
},
|
|
3193
|
+
"engines": {
|
|
3194
|
+
"node": ">=20.9.0",
|
|
3195
|
+
"pnpm": ">=10.0.0"
|
|
3196
|
+
},
|
|
3197
|
+
"peerDependencies": {
|
|
3198
|
+
"@nestjs/common": "^11.0.0",
|
|
3199
|
+
"@nestjs/core": "^11.0.0",
|
|
3200
|
+
"next": "^16.0.0",
|
|
3201
|
+
"react": "^19.0.0"
|
|
3202
|
+
},
|
|
3203
|
+
"peerDependenciesMeta": {
|
|
3204
|
+
"@nestjs/common": {
|
|
3205
|
+
"optional": true
|
|
3206
|
+
},
|
|
3207
|
+
"@nestjs/core": {
|
|
3208
|
+
"optional": true
|
|
3209
|
+
},
|
|
3210
|
+
"next": {
|
|
3211
|
+
"optional": true
|
|
3212
|
+
},
|
|
3213
|
+
"react": {
|
|
3214
|
+
"optional": true
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
"node_modules/wrap-ansi": {
|
|
3219
|
+
"version": "6.2.0",
|
|
3220
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
|
|
3221
|
+
"integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
|
|
3222
|
+
"license": "MIT",
|
|
3223
|
+
"dependencies": {
|
|
3224
|
+
"ansi-styles": "^4.0.0",
|
|
3225
|
+
"string-width": "^4.1.0",
|
|
3226
|
+
"strip-ansi": "^6.0.0"
|
|
3227
|
+
},
|
|
3228
|
+
"engines": {
|
|
3229
|
+
"node": ">=8"
|
|
3230
|
+
}
|
|
3231
|
+
},
|
|
3232
|
+
"node_modules/yoctocolors-cjs": {
|
|
3233
|
+
"version": "2.1.3",
|
|
3234
|
+
"resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz",
|
|
3235
|
+
"integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==",
|
|
3236
|
+
"license": "MIT",
|
|
3237
|
+
"engines": {
|
|
3238
|
+
"node": ">=18"
|
|
3239
|
+
},
|
|
3240
|
+
"funding": {
|
|
3241
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3242
|
+
}
|
|
3243
|
+
},
|
|
3244
|
+
"node_modules/zod": {
|
|
3245
|
+
"version": "4.1.12",
|
|
3246
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz",
|
|
3247
|
+
"integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==",
|
|
3248
|
+
"license": "MIT",
|
|
3249
|
+
"funding": {
|
|
3250
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3251
|
+
}
|
|
3252
|
+
}
|
|
3253
|
+
}
|
|
3254
|
+
}
|