r1-create 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/llm/index.d.ts +125 -1
- package/dist/llm/index.d.ts.map +1 -1
- package/dist/llm/index.js +237 -4
- package/dist/llm/index.js.map +1 -1
- package/dist/types/index.d.ts +5 -0
- package/dist/types/index.d.ts.map +1 -1
- package/examples/README.md +36 -0
- package/examples/camera/index.html +160 -0
- package/examples/device-controls/index.html +191 -0
- package/examples/hardware-game/index.html +165 -0
- package/examples/messaging-test/index.html +359 -0
- package/examples/nextjs-test-app/README.md +72 -0
- package/examples/nextjs-test-app/app/globals.css +282 -0
- package/examples/nextjs-test-app/app/layout.jsx +14 -0
- package/examples/nextjs-test-app/app/page.jsx +1265 -0
- package/examples/nextjs-test-app/log-relay/device-console-bridge.js +91 -0
- package/examples/nextjs-test-app/log-relay/server.js +55 -0
- package/examples/nextjs-test-app/next.config.js +8 -0
- package/examples/nextjs-test-app/package-lock.json +1227 -0
- package/examples/nextjs-test-app/package.json +18 -0
- package/examples/text-to-speech/index.html +128 -0
- package/examples/ui-design/index.html +189 -0
- package/examples/voice-recorder/index.html +149 -0
- package/examples/web-search/index.html +147 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1227 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "r1-create-nextjs-test-app",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "r1-create-nextjs-test-app",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"next": "16.2.2",
|
|
12
|
+
"react": "18.3.1",
|
|
13
|
+
"react-dom": "18.3.1",
|
|
14
|
+
"socket.io": "^4.8.1",
|
|
15
|
+
"socket.io-client": "^4.8.1"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"node_modules/@emnapi/runtime": {
|
|
19
|
+
"version": "1.9.2",
|
|
20
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz",
|
|
21
|
+
"integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"optional": true,
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"tslib": "^2.4.0"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"node_modules/@img/colour": {
|
|
29
|
+
"version": "1.1.0",
|
|
30
|
+
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
|
|
31
|
+
"integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"optional": true,
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/@img/sharp-darwin-arm64": {
|
|
39
|
+
"version": "0.34.5",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
|
|
41
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
42
|
+
"cpu": [
|
|
43
|
+
"arm64"
|
|
44
|
+
],
|
|
45
|
+
"license": "Apache-2.0",
|
|
46
|
+
"optional": true,
|
|
47
|
+
"os": [
|
|
48
|
+
"darwin"
|
|
49
|
+
],
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
52
|
+
},
|
|
53
|
+
"funding": {
|
|
54
|
+
"url": "https://opencollective.com/libvips"
|
|
55
|
+
},
|
|
56
|
+
"optionalDependencies": {
|
|
57
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/@img/sharp-darwin-x64": {
|
|
61
|
+
"version": "0.34.5",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
|
|
63
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
64
|
+
"cpu": [
|
|
65
|
+
"x64"
|
|
66
|
+
],
|
|
67
|
+
"license": "Apache-2.0",
|
|
68
|
+
"optional": true,
|
|
69
|
+
"os": [
|
|
70
|
+
"darwin"
|
|
71
|
+
],
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
74
|
+
},
|
|
75
|
+
"funding": {
|
|
76
|
+
"url": "https://opencollective.com/libvips"
|
|
77
|
+
},
|
|
78
|
+
"optionalDependencies": {
|
|
79
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
83
|
+
"version": "1.2.4",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
|
|
85
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
86
|
+
"cpu": [
|
|
87
|
+
"arm64"
|
|
88
|
+
],
|
|
89
|
+
"license": "LGPL-3.0-or-later",
|
|
90
|
+
"optional": true,
|
|
91
|
+
"os": [
|
|
92
|
+
"darwin"
|
|
93
|
+
],
|
|
94
|
+
"funding": {
|
|
95
|
+
"url": "https://opencollective.com/libvips"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
99
|
+
"version": "1.2.4",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
|
|
101
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
102
|
+
"cpu": [
|
|
103
|
+
"x64"
|
|
104
|
+
],
|
|
105
|
+
"license": "LGPL-3.0-or-later",
|
|
106
|
+
"optional": true,
|
|
107
|
+
"os": [
|
|
108
|
+
"darwin"
|
|
109
|
+
],
|
|
110
|
+
"funding": {
|
|
111
|
+
"url": "https://opencollective.com/libvips"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
115
|
+
"version": "1.2.4",
|
|
116
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
|
|
117
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
118
|
+
"cpu": [
|
|
119
|
+
"arm"
|
|
120
|
+
],
|
|
121
|
+
"license": "LGPL-3.0-or-later",
|
|
122
|
+
"optional": true,
|
|
123
|
+
"os": [
|
|
124
|
+
"linux"
|
|
125
|
+
],
|
|
126
|
+
"funding": {
|
|
127
|
+
"url": "https://opencollective.com/libvips"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
131
|
+
"version": "1.2.4",
|
|
132
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
|
|
133
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
134
|
+
"cpu": [
|
|
135
|
+
"arm64"
|
|
136
|
+
],
|
|
137
|
+
"license": "LGPL-3.0-or-later",
|
|
138
|
+
"optional": true,
|
|
139
|
+
"os": [
|
|
140
|
+
"linux"
|
|
141
|
+
],
|
|
142
|
+
"funding": {
|
|
143
|
+
"url": "https://opencollective.com/libvips"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
147
|
+
"version": "1.2.4",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
|
|
149
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
150
|
+
"cpu": [
|
|
151
|
+
"ppc64"
|
|
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-riscv64": {
|
|
163
|
+
"version": "1.2.4",
|
|
164
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
|
|
165
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
166
|
+
"cpu": [
|
|
167
|
+
"riscv64"
|
|
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-s390x": {
|
|
179
|
+
"version": "1.2.4",
|
|
180
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
|
|
181
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
182
|
+
"cpu": [
|
|
183
|
+
"s390x"
|
|
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-x64": {
|
|
195
|
+
"version": "1.2.4",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
|
|
197
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
198
|
+
"cpu": [
|
|
199
|
+
"x64"
|
|
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-linuxmusl-arm64": {
|
|
211
|
+
"version": "1.2.4",
|
|
212
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
|
|
213
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
214
|
+
"cpu": [
|
|
215
|
+
"arm64"
|
|
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-linuxmusl-x64": {
|
|
227
|
+
"version": "1.2.4",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
|
|
229
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
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-linux-arm": {
|
|
243
|
+
"version": "0.34.5",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
|
|
245
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
246
|
+
"cpu": [
|
|
247
|
+
"arm"
|
|
248
|
+
],
|
|
249
|
+
"license": "Apache-2.0",
|
|
250
|
+
"optional": true,
|
|
251
|
+
"os": [
|
|
252
|
+
"linux"
|
|
253
|
+
],
|
|
254
|
+
"engines": {
|
|
255
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
256
|
+
},
|
|
257
|
+
"funding": {
|
|
258
|
+
"url": "https://opencollective.com/libvips"
|
|
259
|
+
},
|
|
260
|
+
"optionalDependencies": {
|
|
261
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@img/sharp-linux-arm64": {
|
|
265
|
+
"version": "0.34.5",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
|
|
267
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
268
|
+
"cpu": [
|
|
269
|
+
"arm64"
|
|
270
|
+
],
|
|
271
|
+
"license": "Apache-2.0",
|
|
272
|
+
"optional": true,
|
|
273
|
+
"os": [
|
|
274
|
+
"linux"
|
|
275
|
+
],
|
|
276
|
+
"engines": {
|
|
277
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
278
|
+
},
|
|
279
|
+
"funding": {
|
|
280
|
+
"url": "https://opencollective.com/libvips"
|
|
281
|
+
},
|
|
282
|
+
"optionalDependencies": {
|
|
283
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
287
|
+
"version": "0.34.5",
|
|
288
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
|
|
289
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
290
|
+
"cpu": [
|
|
291
|
+
"ppc64"
|
|
292
|
+
],
|
|
293
|
+
"license": "Apache-2.0",
|
|
294
|
+
"optional": true,
|
|
295
|
+
"os": [
|
|
296
|
+
"linux"
|
|
297
|
+
],
|
|
298
|
+
"engines": {
|
|
299
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
300
|
+
},
|
|
301
|
+
"funding": {
|
|
302
|
+
"url": "https://opencollective.com/libvips"
|
|
303
|
+
},
|
|
304
|
+
"optionalDependencies": {
|
|
305
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
309
|
+
"version": "0.34.5",
|
|
310
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
|
|
311
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
312
|
+
"cpu": [
|
|
313
|
+
"riscv64"
|
|
314
|
+
],
|
|
315
|
+
"license": "Apache-2.0",
|
|
316
|
+
"optional": true,
|
|
317
|
+
"os": [
|
|
318
|
+
"linux"
|
|
319
|
+
],
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
322
|
+
},
|
|
323
|
+
"funding": {
|
|
324
|
+
"url": "https://opencollective.com/libvips"
|
|
325
|
+
},
|
|
326
|
+
"optionalDependencies": {
|
|
327
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"node_modules/@img/sharp-linux-s390x": {
|
|
331
|
+
"version": "0.34.5",
|
|
332
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
|
|
333
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
334
|
+
"cpu": [
|
|
335
|
+
"s390x"
|
|
336
|
+
],
|
|
337
|
+
"license": "Apache-2.0",
|
|
338
|
+
"optional": true,
|
|
339
|
+
"os": [
|
|
340
|
+
"linux"
|
|
341
|
+
],
|
|
342
|
+
"engines": {
|
|
343
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
344
|
+
},
|
|
345
|
+
"funding": {
|
|
346
|
+
"url": "https://opencollective.com/libvips"
|
|
347
|
+
},
|
|
348
|
+
"optionalDependencies": {
|
|
349
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"node_modules/@img/sharp-linux-x64": {
|
|
353
|
+
"version": "0.34.5",
|
|
354
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
|
|
355
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
356
|
+
"cpu": [
|
|
357
|
+
"x64"
|
|
358
|
+
],
|
|
359
|
+
"license": "Apache-2.0",
|
|
360
|
+
"optional": true,
|
|
361
|
+
"os": [
|
|
362
|
+
"linux"
|
|
363
|
+
],
|
|
364
|
+
"engines": {
|
|
365
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
366
|
+
},
|
|
367
|
+
"funding": {
|
|
368
|
+
"url": "https://opencollective.com/libvips"
|
|
369
|
+
},
|
|
370
|
+
"optionalDependencies": {
|
|
371
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
375
|
+
"version": "0.34.5",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
|
|
377
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
378
|
+
"cpu": [
|
|
379
|
+
"arm64"
|
|
380
|
+
],
|
|
381
|
+
"license": "Apache-2.0",
|
|
382
|
+
"optional": true,
|
|
383
|
+
"os": [
|
|
384
|
+
"linux"
|
|
385
|
+
],
|
|
386
|
+
"engines": {
|
|
387
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
388
|
+
},
|
|
389
|
+
"funding": {
|
|
390
|
+
"url": "https://opencollective.com/libvips"
|
|
391
|
+
},
|
|
392
|
+
"optionalDependencies": {
|
|
393
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
397
|
+
"version": "0.34.5",
|
|
398
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
|
|
399
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
400
|
+
"cpu": [
|
|
401
|
+
"x64"
|
|
402
|
+
],
|
|
403
|
+
"license": "Apache-2.0",
|
|
404
|
+
"optional": true,
|
|
405
|
+
"os": [
|
|
406
|
+
"linux"
|
|
407
|
+
],
|
|
408
|
+
"engines": {
|
|
409
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
410
|
+
},
|
|
411
|
+
"funding": {
|
|
412
|
+
"url": "https://opencollective.com/libvips"
|
|
413
|
+
},
|
|
414
|
+
"optionalDependencies": {
|
|
415
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"node_modules/@img/sharp-wasm32": {
|
|
419
|
+
"version": "0.34.5",
|
|
420
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
|
|
421
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
422
|
+
"cpu": [
|
|
423
|
+
"wasm32"
|
|
424
|
+
],
|
|
425
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
426
|
+
"optional": true,
|
|
427
|
+
"dependencies": {
|
|
428
|
+
"@emnapi/runtime": "^1.7.0"
|
|
429
|
+
},
|
|
430
|
+
"engines": {
|
|
431
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
432
|
+
},
|
|
433
|
+
"funding": {
|
|
434
|
+
"url": "https://opencollective.com/libvips"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
438
|
+
"version": "0.34.5",
|
|
439
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
|
|
440
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
441
|
+
"cpu": [
|
|
442
|
+
"arm64"
|
|
443
|
+
],
|
|
444
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
445
|
+
"optional": true,
|
|
446
|
+
"os": [
|
|
447
|
+
"win32"
|
|
448
|
+
],
|
|
449
|
+
"engines": {
|
|
450
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
451
|
+
},
|
|
452
|
+
"funding": {
|
|
453
|
+
"url": "https://opencollective.com/libvips"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"node_modules/@img/sharp-win32-ia32": {
|
|
457
|
+
"version": "0.34.5",
|
|
458
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
|
|
459
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
460
|
+
"cpu": [
|
|
461
|
+
"ia32"
|
|
462
|
+
],
|
|
463
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
464
|
+
"optional": true,
|
|
465
|
+
"os": [
|
|
466
|
+
"win32"
|
|
467
|
+
],
|
|
468
|
+
"engines": {
|
|
469
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
470
|
+
},
|
|
471
|
+
"funding": {
|
|
472
|
+
"url": "https://opencollective.com/libvips"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"node_modules/@img/sharp-win32-x64": {
|
|
476
|
+
"version": "0.34.5",
|
|
477
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
|
|
478
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
479
|
+
"cpu": [
|
|
480
|
+
"x64"
|
|
481
|
+
],
|
|
482
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
483
|
+
"optional": true,
|
|
484
|
+
"os": [
|
|
485
|
+
"win32"
|
|
486
|
+
],
|
|
487
|
+
"engines": {
|
|
488
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
489
|
+
},
|
|
490
|
+
"funding": {
|
|
491
|
+
"url": "https://opencollective.com/libvips"
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"node_modules/@next/env": {
|
|
495
|
+
"version": "16.2.2",
|
|
496
|
+
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.2.tgz",
|
|
497
|
+
"integrity": "sha512-LqSGz5+xGk9EL/iBDr2yo/CgNQV6cFsNhRR2xhSXYh7B/hb4nePCxlmDvGEKG30NMHDFf0raqSyOZiQrO7BkHQ==",
|
|
498
|
+
"license": "MIT"
|
|
499
|
+
},
|
|
500
|
+
"node_modules/@next/swc-darwin-arm64": {
|
|
501
|
+
"version": "16.2.2",
|
|
502
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.2.tgz",
|
|
503
|
+
"integrity": "sha512-B92G3ulrwmkDSEJEp9+XzGLex5wC1knrmCSIylyVeiAtCIfvEJYiN3v5kXPlYt5R4RFlsfO/v++aKV63Acrugg==",
|
|
504
|
+
"cpu": [
|
|
505
|
+
"arm64"
|
|
506
|
+
],
|
|
507
|
+
"license": "MIT",
|
|
508
|
+
"optional": true,
|
|
509
|
+
"os": [
|
|
510
|
+
"darwin"
|
|
511
|
+
],
|
|
512
|
+
"engines": {
|
|
513
|
+
"node": ">= 10"
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"node_modules/@next/swc-darwin-x64": {
|
|
517
|
+
"version": "16.2.2",
|
|
518
|
+
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.2.tgz",
|
|
519
|
+
"integrity": "sha512-7ZwSgNKJNQiwW0CKhNm9B1WS2L1Olc4B2XY0hPYCAL3epFnugMhuw5TMWzMilQ3QCZcCHoYm9NGWTHbr5REFxw==",
|
|
520
|
+
"cpu": [
|
|
521
|
+
"x64"
|
|
522
|
+
],
|
|
523
|
+
"license": "MIT",
|
|
524
|
+
"optional": true,
|
|
525
|
+
"os": [
|
|
526
|
+
"darwin"
|
|
527
|
+
],
|
|
528
|
+
"engines": {
|
|
529
|
+
"node": ">= 10"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
533
|
+
"version": "16.2.2",
|
|
534
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.2.tgz",
|
|
535
|
+
"integrity": "sha512-c3m8kBHMziMgo2fICOP/cd/5YlrxDU5YYjAJeQLyFsCqVF8xjOTH/QYG4a2u48CvvZZSj1eHQfBCbyh7kBr30Q==",
|
|
536
|
+
"cpu": [
|
|
537
|
+
"arm64"
|
|
538
|
+
],
|
|
539
|
+
"license": "MIT",
|
|
540
|
+
"optional": true,
|
|
541
|
+
"os": [
|
|
542
|
+
"linux"
|
|
543
|
+
],
|
|
544
|
+
"engines": {
|
|
545
|
+
"node": ">= 10"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"node_modules/@next/swc-linux-arm64-musl": {
|
|
549
|
+
"version": "16.2.2",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.2.tgz",
|
|
551
|
+
"integrity": "sha512-VKLuscm0P/mIfzt+SDdn2+8TNNJ7f0qfEkA+az7OqQbjzKdBxAHs0UvuiVoCtbwX+dqMEL9U54b5wQ/aN3dHeg==",
|
|
552
|
+
"cpu": [
|
|
553
|
+
"arm64"
|
|
554
|
+
],
|
|
555
|
+
"license": "MIT",
|
|
556
|
+
"optional": true,
|
|
557
|
+
"os": [
|
|
558
|
+
"linux"
|
|
559
|
+
],
|
|
560
|
+
"engines": {
|
|
561
|
+
"node": ">= 10"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"node_modules/@next/swc-linux-x64-gnu": {
|
|
565
|
+
"version": "16.2.2",
|
|
566
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.2.tgz",
|
|
567
|
+
"integrity": "sha512-kU3OPHJq6sBUjOk7wc5zJ7/lipn8yGldMoAv4z67j6ov6Xo/JvzA7L7LCsyzzsXmgLEhk3Qkpwqaq/1+XpNR3g==",
|
|
568
|
+
"cpu": [
|
|
569
|
+
"x64"
|
|
570
|
+
],
|
|
571
|
+
"license": "MIT",
|
|
572
|
+
"optional": true,
|
|
573
|
+
"os": [
|
|
574
|
+
"linux"
|
|
575
|
+
],
|
|
576
|
+
"engines": {
|
|
577
|
+
"node": ">= 10"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"node_modules/@next/swc-linux-x64-musl": {
|
|
581
|
+
"version": "16.2.2",
|
|
582
|
+
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.2.tgz",
|
|
583
|
+
"integrity": "sha512-CKXRILyErMtUftp+coGcZ38ZwE/Aqq45VMCcRLr2I4OXKrgxIBDXHnBgeX/UMil0S09i2JXaDL3Q+TN8D/cKmg==",
|
|
584
|
+
"cpu": [
|
|
585
|
+
"x64"
|
|
586
|
+
],
|
|
587
|
+
"license": "MIT",
|
|
588
|
+
"optional": true,
|
|
589
|
+
"os": [
|
|
590
|
+
"linux"
|
|
591
|
+
],
|
|
592
|
+
"engines": {
|
|
593
|
+
"node": ">= 10"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
597
|
+
"version": "16.2.2",
|
|
598
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.2.tgz",
|
|
599
|
+
"integrity": "sha512-sS/jSk5VUoShUqINJFvNjVT7JfR5ORYj/+/ZpOYbbIohv/lQfduWnGAycq2wlknbOql2xOR0DoV0s6Xfcy49+g==",
|
|
600
|
+
"cpu": [
|
|
601
|
+
"arm64"
|
|
602
|
+
],
|
|
603
|
+
"license": "MIT",
|
|
604
|
+
"optional": true,
|
|
605
|
+
"os": [
|
|
606
|
+
"win32"
|
|
607
|
+
],
|
|
608
|
+
"engines": {
|
|
609
|
+
"node": ">= 10"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"node_modules/@next/swc-win32-x64-msvc": {
|
|
613
|
+
"version": "16.2.2",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.2.tgz",
|
|
615
|
+
"integrity": "sha512-aHaKceJgdySReT7qeck5oShucxWRiiEuwCGK8HHALe6yZga8uyFpLkPgaRw3kkF04U7ROogL/suYCNt/+CuXGA==",
|
|
616
|
+
"cpu": [
|
|
617
|
+
"x64"
|
|
618
|
+
],
|
|
619
|
+
"license": "MIT",
|
|
620
|
+
"optional": true,
|
|
621
|
+
"os": [
|
|
622
|
+
"win32"
|
|
623
|
+
],
|
|
624
|
+
"engines": {
|
|
625
|
+
"node": ">= 10"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"node_modules/@socket.io/component-emitter": {
|
|
629
|
+
"version": "3.1.2",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz",
|
|
631
|
+
"integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==",
|
|
632
|
+
"license": "MIT"
|
|
633
|
+
},
|
|
634
|
+
"node_modules/@swc/helpers": {
|
|
635
|
+
"version": "0.5.15",
|
|
636
|
+
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
|
|
637
|
+
"integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
|
|
638
|
+
"license": "Apache-2.0",
|
|
639
|
+
"dependencies": {
|
|
640
|
+
"tslib": "^2.8.0"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"node_modules/@types/cors": {
|
|
644
|
+
"version": "2.8.19",
|
|
645
|
+
"resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz",
|
|
646
|
+
"integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==",
|
|
647
|
+
"license": "MIT",
|
|
648
|
+
"dependencies": {
|
|
649
|
+
"@types/node": "*"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"node_modules/@types/node": {
|
|
653
|
+
"version": "25.5.2",
|
|
654
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.2.tgz",
|
|
655
|
+
"integrity": "sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg==",
|
|
656
|
+
"license": "MIT",
|
|
657
|
+
"dependencies": {
|
|
658
|
+
"undici-types": "~7.18.0"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"node_modules/@types/ws": {
|
|
662
|
+
"version": "8.18.1",
|
|
663
|
+
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
|
|
664
|
+
"integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
|
|
665
|
+
"license": "MIT",
|
|
666
|
+
"dependencies": {
|
|
667
|
+
"@types/node": "*"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
"node_modules/accepts": {
|
|
671
|
+
"version": "1.3.8",
|
|
672
|
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
|
673
|
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
|
674
|
+
"license": "MIT",
|
|
675
|
+
"dependencies": {
|
|
676
|
+
"mime-types": "~2.1.34",
|
|
677
|
+
"negotiator": "0.6.3"
|
|
678
|
+
},
|
|
679
|
+
"engines": {
|
|
680
|
+
"node": ">= 0.6"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"node_modules/base64id": {
|
|
684
|
+
"version": "2.0.0",
|
|
685
|
+
"resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
|
|
686
|
+
"integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==",
|
|
687
|
+
"license": "MIT",
|
|
688
|
+
"engines": {
|
|
689
|
+
"node": "^4.5.0 || >= 5.9"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"node_modules/baseline-browser-mapping": {
|
|
693
|
+
"version": "2.10.14",
|
|
694
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.14.tgz",
|
|
695
|
+
"integrity": "sha512-fOVLPAsFTsQfuCkvahZkzq6nf8KvGWanlYoTh0SVA0A/PIUxQGU2AOZAoD95n2gFLVDW/jP6sbGLny95nmEuHA==",
|
|
696
|
+
"license": "Apache-2.0",
|
|
697
|
+
"bin": {
|
|
698
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
699
|
+
},
|
|
700
|
+
"engines": {
|
|
701
|
+
"node": ">=6.0.0"
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"node_modules/caniuse-lite": {
|
|
705
|
+
"version": "1.0.30001784",
|
|
706
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001784.tgz",
|
|
707
|
+
"integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
|
|
708
|
+
"funding": [
|
|
709
|
+
{
|
|
710
|
+
"type": "opencollective",
|
|
711
|
+
"url": "https://opencollective.com/browserslist"
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"type": "tidelift",
|
|
715
|
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"type": "github",
|
|
719
|
+
"url": "https://github.com/sponsors/ai"
|
|
720
|
+
}
|
|
721
|
+
],
|
|
722
|
+
"license": "CC-BY-4.0"
|
|
723
|
+
},
|
|
724
|
+
"node_modules/client-only": {
|
|
725
|
+
"version": "0.0.1",
|
|
726
|
+
"resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
|
|
727
|
+
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
|
728
|
+
"license": "MIT"
|
|
729
|
+
},
|
|
730
|
+
"node_modules/cookie": {
|
|
731
|
+
"version": "0.7.2",
|
|
732
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
|
|
733
|
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
|
734
|
+
"license": "MIT",
|
|
735
|
+
"engines": {
|
|
736
|
+
"node": ">= 0.6"
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"node_modules/cors": {
|
|
740
|
+
"version": "2.8.6",
|
|
741
|
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
|
|
742
|
+
"integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
|
|
743
|
+
"license": "MIT",
|
|
744
|
+
"dependencies": {
|
|
745
|
+
"object-assign": "^4",
|
|
746
|
+
"vary": "^1"
|
|
747
|
+
},
|
|
748
|
+
"engines": {
|
|
749
|
+
"node": ">= 0.10"
|
|
750
|
+
},
|
|
751
|
+
"funding": {
|
|
752
|
+
"type": "opencollective",
|
|
753
|
+
"url": "https://opencollective.com/express"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"node_modules/debug": {
|
|
757
|
+
"version": "4.4.3",
|
|
758
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
759
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
760
|
+
"license": "MIT",
|
|
761
|
+
"dependencies": {
|
|
762
|
+
"ms": "^2.1.3"
|
|
763
|
+
},
|
|
764
|
+
"engines": {
|
|
765
|
+
"node": ">=6.0"
|
|
766
|
+
},
|
|
767
|
+
"peerDependenciesMeta": {
|
|
768
|
+
"supports-color": {
|
|
769
|
+
"optional": true
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"node_modules/detect-libc": {
|
|
774
|
+
"version": "2.1.2",
|
|
775
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
776
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
777
|
+
"license": "Apache-2.0",
|
|
778
|
+
"optional": true,
|
|
779
|
+
"engines": {
|
|
780
|
+
"node": ">=8"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"node_modules/engine.io": {
|
|
784
|
+
"version": "6.6.6",
|
|
785
|
+
"resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.6.tgz",
|
|
786
|
+
"integrity": "sha512-U2SN0w3OpjFRVlrc17E6TMDmH58Xl9rai1MblNjAdwWp07Kk+llmzX0hjDpQdrDGzwmvOtgM5yI+meYX6iZ2xA==",
|
|
787
|
+
"license": "MIT",
|
|
788
|
+
"dependencies": {
|
|
789
|
+
"@types/cors": "^2.8.12",
|
|
790
|
+
"@types/node": ">=10.0.0",
|
|
791
|
+
"@types/ws": "^8.5.12",
|
|
792
|
+
"accepts": "~1.3.4",
|
|
793
|
+
"base64id": "2.0.0",
|
|
794
|
+
"cookie": "~0.7.2",
|
|
795
|
+
"cors": "~2.8.5",
|
|
796
|
+
"debug": "~4.4.1",
|
|
797
|
+
"engine.io-parser": "~5.2.1",
|
|
798
|
+
"ws": "~8.18.3"
|
|
799
|
+
},
|
|
800
|
+
"engines": {
|
|
801
|
+
"node": ">=10.2.0"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
"node_modules/engine.io-client": {
|
|
805
|
+
"version": "6.6.4",
|
|
806
|
+
"resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.4.tgz",
|
|
807
|
+
"integrity": "sha512-+kjUJnZGwzewFDw951CDWcwj35vMNf2fcj7xQWOctq1F2i1jkDdVvdFG9kM/BEChymCH36KgjnW0NsL58JYRxw==",
|
|
808
|
+
"license": "MIT",
|
|
809
|
+
"dependencies": {
|
|
810
|
+
"@socket.io/component-emitter": "~3.1.0",
|
|
811
|
+
"debug": "~4.4.1",
|
|
812
|
+
"engine.io-parser": "~5.2.1",
|
|
813
|
+
"ws": "~8.18.3",
|
|
814
|
+
"xmlhttprequest-ssl": "~2.1.1"
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
"node_modules/engine.io-parser": {
|
|
818
|
+
"version": "5.2.3",
|
|
819
|
+
"resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz",
|
|
820
|
+
"integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==",
|
|
821
|
+
"license": "MIT",
|
|
822
|
+
"engines": {
|
|
823
|
+
"node": ">=10.0.0"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"node_modules/js-tokens": {
|
|
827
|
+
"version": "4.0.0",
|
|
828
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
829
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
830
|
+
"license": "MIT"
|
|
831
|
+
},
|
|
832
|
+
"node_modules/loose-envify": {
|
|
833
|
+
"version": "1.4.0",
|
|
834
|
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
835
|
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
836
|
+
"license": "MIT",
|
|
837
|
+
"dependencies": {
|
|
838
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
839
|
+
},
|
|
840
|
+
"bin": {
|
|
841
|
+
"loose-envify": "cli.js"
|
|
842
|
+
}
|
|
843
|
+
},
|
|
844
|
+
"node_modules/mime-db": {
|
|
845
|
+
"version": "1.52.0",
|
|
846
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
847
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
848
|
+
"license": "MIT",
|
|
849
|
+
"engines": {
|
|
850
|
+
"node": ">= 0.6"
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
"node_modules/mime-types": {
|
|
854
|
+
"version": "2.1.35",
|
|
855
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
856
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
857
|
+
"license": "MIT",
|
|
858
|
+
"dependencies": {
|
|
859
|
+
"mime-db": "1.52.0"
|
|
860
|
+
},
|
|
861
|
+
"engines": {
|
|
862
|
+
"node": ">= 0.6"
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
"node_modules/ms": {
|
|
866
|
+
"version": "2.1.3",
|
|
867
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
868
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
869
|
+
"license": "MIT"
|
|
870
|
+
},
|
|
871
|
+
"node_modules/nanoid": {
|
|
872
|
+
"version": "3.3.11",
|
|
873
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
874
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
875
|
+
"funding": [
|
|
876
|
+
{
|
|
877
|
+
"type": "github",
|
|
878
|
+
"url": "https://github.com/sponsors/ai"
|
|
879
|
+
}
|
|
880
|
+
],
|
|
881
|
+
"license": "MIT",
|
|
882
|
+
"bin": {
|
|
883
|
+
"nanoid": "bin/nanoid.cjs"
|
|
884
|
+
},
|
|
885
|
+
"engines": {
|
|
886
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
"node_modules/negotiator": {
|
|
890
|
+
"version": "0.6.3",
|
|
891
|
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
|
892
|
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
|
893
|
+
"license": "MIT",
|
|
894
|
+
"engines": {
|
|
895
|
+
"node": ">= 0.6"
|
|
896
|
+
}
|
|
897
|
+
},
|
|
898
|
+
"node_modules/next": {
|
|
899
|
+
"version": "16.2.2",
|
|
900
|
+
"resolved": "https://registry.npmjs.org/next/-/next-16.2.2.tgz",
|
|
901
|
+
"integrity": "sha512-i6AJdyVa4oQjyvX/6GeER8dpY/xlIV+4NMv/svykcLtURJSy/WzDnnUk/TM4d0uewFHK7xSQz4TbIwPgjky+3A==",
|
|
902
|
+
"license": "MIT",
|
|
903
|
+
"dependencies": {
|
|
904
|
+
"@next/env": "16.2.2",
|
|
905
|
+
"@swc/helpers": "0.5.15",
|
|
906
|
+
"baseline-browser-mapping": "^2.9.19",
|
|
907
|
+
"caniuse-lite": "^1.0.30001579",
|
|
908
|
+
"postcss": "8.4.31",
|
|
909
|
+
"styled-jsx": "5.1.6"
|
|
910
|
+
},
|
|
911
|
+
"bin": {
|
|
912
|
+
"next": "dist/bin/next"
|
|
913
|
+
},
|
|
914
|
+
"engines": {
|
|
915
|
+
"node": ">=20.9.0"
|
|
916
|
+
},
|
|
917
|
+
"optionalDependencies": {
|
|
918
|
+
"@next/swc-darwin-arm64": "16.2.2",
|
|
919
|
+
"@next/swc-darwin-x64": "16.2.2",
|
|
920
|
+
"@next/swc-linux-arm64-gnu": "16.2.2",
|
|
921
|
+
"@next/swc-linux-arm64-musl": "16.2.2",
|
|
922
|
+
"@next/swc-linux-x64-gnu": "16.2.2",
|
|
923
|
+
"@next/swc-linux-x64-musl": "16.2.2",
|
|
924
|
+
"@next/swc-win32-arm64-msvc": "16.2.2",
|
|
925
|
+
"@next/swc-win32-x64-msvc": "16.2.2",
|
|
926
|
+
"sharp": "^0.34.5"
|
|
927
|
+
},
|
|
928
|
+
"peerDependencies": {
|
|
929
|
+
"@opentelemetry/api": "^1.1.0",
|
|
930
|
+
"@playwright/test": "^1.51.1",
|
|
931
|
+
"babel-plugin-react-compiler": "*",
|
|
932
|
+
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
933
|
+
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
934
|
+
"sass": "^1.3.0"
|
|
935
|
+
},
|
|
936
|
+
"peerDependenciesMeta": {
|
|
937
|
+
"@opentelemetry/api": {
|
|
938
|
+
"optional": true
|
|
939
|
+
},
|
|
940
|
+
"@playwright/test": {
|
|
941
|
+
"optional": true
|
|
942
|
+
},
|
|
943
|
+
"babel-plugin-react-compiler": {
|
|
944
|
+
"optional": true
|
|
945
|
+
},
|
|
946
|
+
"sass": {
|
|
947
|
+
"optional": true
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"node_modules/object-assign": {
|
|
952
|
+
"version": "4.1.1",
|
|
953
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
954
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
955
|
+
"license": "MIT",
|
|
956
|
+
"engines": {
|
|
957
|
+
"node": ">=0.10.0"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"node_modules/picocolors": {
|
|
961
|
+
"version": "1.1.1",
|
|
962
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
963
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
964
|
+
"license": "ISC"
|
|
965
|
+
},
|
|
966
|
+
"node_modules/postcss": {
|
|
967
|
+
"version": "8.4.31",
|
|
968
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
|
|
969
|
+
"integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
|
|
970
|
+
"funding": [
|
|
971
|
+
{
|
|
972
|
+
"type": "opencollective",
|
|
973
|
+
"url": "https://opencollective.com/postcss/"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"type": "tidelift",
|
|
977
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"type": "github",
|
|
981
|
+
"url": "https://github.com/sponsors/ai"
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
"license": "MIT",
|
|
985
|
+
"dependencies": {
|
|
986
|
+
"nanoid": "^3.3.6",
|
|
987
|
+
"picocolors": "^1.0.0",
|
|
988
|
+
"source-map-js": "^1.0.2"
|
|
989
|
+
},
|
|
990
|
+
"engines": {
|
|
991
|
+
"node": "^10 || ^12 || >=14"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"node_modules/react": {
|
|
995
|
+
"version": "18.3.1",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
997
|
+
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
998
|
+
"license": "MIT",
|
|
999
|
+
"peer": true,
|
|
1000
|
+
"dependencies": {
|
|
1001
|
+
"loose-envify": "^1.1.0"
|
|
1002
|
+
},
|
|
1003
|
+
"engines": {
|
|
1004
|
+
"node": ">=0.10.0"
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
"node_modules/react-dom": {
|
|
1008
|
+
"version": "18.3.1",
|
|
1009
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
|
|
1010
|
+
"integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
|
|
1011
|
+
"license": "MIT",
|
|
1012
|
+
"peer": true,
|
|
1013
|
+
"dependencies": {
|
|
1014
|
+
"loose-envify": "^1.1.0",
|
|
1015
|
+
"scheduler": "^0.23.2"
|
|
1016
|
+
},
|
|
1017
|
+
"peerDependencies": {
|
|
1018
|
+
"react": "^18.3.1"
|
|
1019
|
+
}
|
|
1020
|
+
},
|
|
1021
|
+
"node_modules/scheduler": {
|
|
1022
|
+
"version": "0.23.2",
|
|
1023
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
|
1024
|
+
"integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
|
|
1025
|
+
"license": "MIT",
|
|
1026
|
+
"dependencies": {
|
|
1027
|
+
"loose-envify": "^1.1.0"
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
"node_modules/semver": {
|
|
1031
|
+
"version": "7.7.4",
|
|
1032
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
1033
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
1034
|
+
"license": "ISC",
|
|
1035
|
+
"optional": true,
|
|
1036
|
+
"bin": {
|
|
1037
|
+
"semver": "bin/semver.js"
|
|
1038
|
+
},
|
|
1039
|
+
"engines": {
|
|
1040
|
+
"node": ">=10"
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
"node_modules/sharp": {
|
|
1044
|
+
"version": "0.34.5",
|
|
1045
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
|
|
1046
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
1047
|
+
"hasInstallScript": true,
|
|
1048
|
+
"license": "Apache-2.0",
|
|
1049
|
+
"optional": true,
|
|
1050
|
+
"dependencies": {
|
|
1051
|
+
"@img/colour": "^1.0.0",
|
|
1052
|
+
"detect-libc": "^2.1.2",
|
|
1053
|
+
"semver": "^7.7.3"
|
|
1054
|
+
},
|
|
1055
|
+
"engines": {
|
|
1056
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
1057
|
+
},
|
|
1058
|
+
"funding": {
|
|
1059
|
+
"url": "https://opencollective.com/libvips"
|
|
1060
|
+
},
|
|
1061
|
+
"optionalDependencies": {
|
|
1062
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
1063
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
1064
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
1065
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
1066
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
1067
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
1068
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
1069
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
1070
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
1071
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
1072
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
1073
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
1074
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
1075
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
1076
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
1077
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
1078
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
1079
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
1080
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
1081
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
1082
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
1083
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
1084
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
1085
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"node_modules/socket.io": {
|
|
1089
|
+
"version": "4.8.3",
|
|
1090
|
+
"resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.3.tgz",
|
|
1091
|
+
"integrity": "sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==",
|
|
1092
|
+
"license": "MIT",
|
|
1093
|
+
"dependencies": {
|
|
1094
|
+
"accepts": "~1.3.4",
|
|
1095
|
+
"base64id": "~2.0.0",
|
|
1096
|
+
"cors": "~2.8.5",
|
|
1097
|
+
"debug": "~4.4.1",
|
|
1098
|
+
"engine.io": "~6.6.0",
|
|
1099
|
+
"socket.io-adapter": "~2.5.2",
|
|
1100
|
+
"socket.io-parser": "~4.2.4"
|
|
1101
|
+
},
|
|
1102
|
+
"engines": {
|
|
1103
|
+
"node": ">=10.2.0"
|
|
1104
|
+
}
|
|
1105
|
+
},
|
|
1106
|
+
"node_modules/socket.io-adapter": {
|
|
1107
|
+
"version": "2.5.6",
|
|
1108
|
+
"resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.6.tgz",
|
|
1109
|
+
"integrity": "sha512-DkkO/dz7MGln0dHn5bmN3pPy+JmywNICWrJqVWiVOyvXjWQFIv9c2h24JrQLLFJ2aQVQf/Cvl1vblnd4r2apLQ==",
|
|
1110
|
+
"license": "MIT",
|
|
1111
|
+
"dependencies": {
|
|
1112
|
+
"debug": "~4.4.1",
|
|
1113
|
+
"ws": "~8.18.3"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/socket.io-client": {
|
|
1117
|
+
"version": "4.8.3",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.3.tgz",
|
|
1119
|
+
"integrity": "sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==",
|
|
1120
|
+
"license": "MIT",
|
|
1121
|
+
"dependencies": {
|
|
1122
|
+
"@socket.io/component-emitter": "~3.1.0",
|
|
1123
|
+
"debug": "~4.4.1",
|
|
1124
|
+
"engine.io-client": "~6.6.1",
|
|
1125
|
+
"socket.io-parser": "~4.2.4"
|
|
1126
|
+
},
|
|
1127
|
+
"engines": {
|
|
1128
|
+
"node": ">=10.0.0"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
"node_modules/socket.io-parser": {
|
|
1132
|
+
"version": "4.2.6",
|
|
1133
|
+
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.6.tgz",
|
|
1134
|
+
"integrity": "sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg==",
|
|
1135
|
+
"license": "MIT",
|
|
1136
|
+
"dependencies": {
|
|
1137
|
+
"@socket.io/component-emitter": "~3.1.0",
|
|
1138
|
+
"debug": "~4.4.1"
|
|
1139
|
+
},
|
|
1140
|
+
"engines": {
|
|
1141
|
+
"node": ">=10.0.0"
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1144
|
+
"node_modules/source-map-js": {
|
|
1145
|
+
"version": "1.2.1",
|
|
1146
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1147
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1148
|
+
"license": "BSD-3-Clause",
|
|
1149
|
+
"engines": {
|
|
1150
|
+
"node": ">=0.10.0"
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
"node_modules/styled-jsx": {
|
|
1154
|
+
"version": "5.1.6",
|
|
1155
|
+
"resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
|
|
1156
|
+
"integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
|
|
1157
|
+
"license": "MIT",
|
|
1158
|
+
"dependencies": {
|
|
1159
|
+
"client-only": "0.0.1"
|
|
1160
|
+
},
|
|
1161
|
+
"engines": {
|
|
1162
|
+
"node": ">= 12.0.0"
|
|
1163
|
+
},
|
|
1164
|
+
"peerDependencies": {
|
|
1165
|
+
"react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
|
|
1166
|
+
},
|
|
1167
|
+
"peerDependenciesMeta": {
|
|
1168
|
+
"@babel/core": {
|
|
1169
|
+
"optional": true
|
|
1170
|
+
},
|
|
1171
|
+
"babel-plugin-macros": {
|
|
1172
|
+
"optional": true
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
},
|
|
1176
|
+
"node_modules/tslib": {
|
|
1177
|
+
"version": "2.8.1",
|
|
1178
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
1179
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1180
|
+
"license": "0BSD"
|
|
1181
|
+
},
|
|
1182
|
+
"node_modules/undici-types": {
|
|
1183
|
+
"version": "7.18.2",
|
|
1184
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
|
1185
|
+
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
|
1186
|
+
"license": "MIT"
|
|
1187
|
+
},
|
|
1188
|
+
"node_modules/vary": {
|
|
1189
|
+
"version": "1.1.2",
|
|
1190
|
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
|
1191
|
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
|
1192
|
+
"license": "MIT",
|
|
1193
|
+
"engines": {
|
|
1194
|
+
"node": ">= 0.8"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"node_modules/ws": {
|
|
1198
|
+
"version": "8.18.3",
|
|
1199
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
1200
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
1201
|
+
"license": "MIT",
|
|
1202
|
+
"engines": {
|
|
1203
|
+
"node": ">=10.0.0"
|
|
1204
|
+
},
|
|
1205
|
+
"peerDependencies": {
|
|
1206
|
+
"bufferutil": "^4.0.1",
|
|
1207
|
+
"utf-8-validate": ">=5.0.2"
|
|
1208
|
+
},
|
|
1209
|
+
"peerDependenciesMeta": {
|
|
1210
|
+
"bufferutil": {
|
|
1211
|
+
"optional": true
|
|
1212
|
+
},
|
|
1213
|
+
"utf-8-validate": {
|
|
1214
|
+
"optional": true
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"node_modules/xmlhttprequest-ssl": {
|
|
1219
|
+
"version": "2.1.2",
|
|
1220
|
+
"resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz",
|
|
1221
|
+
"integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==",
|
|
1222
|
+
"engines": {
|
|
1223
|
+
"node": ">=0.4.0"
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
}
|