@coze-arch/cli 0.1.3-alpha.6f25e6 → 0.1.3-alpha.75c39d
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/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +2 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prepare-node-modules.sh +9 -1
- package/lib/__templates__/nextjs/next.config.ts +1 -0
- package/lib/__templates__/nextjs/package.json +2 -2
- package/lib/__templates__/nextjs/pnpm-lock.yaml +351 -67
- package/lib/__templates__/nextjs/scripts/build.ps1 +1 -1
- package/lib/__templates__/nextjs/scripts/build.sh +1 -1
- package/lib/__templates__/nextjs/scripts/dev.sh +1 -1
- package/lib/__templates__/nextjs/scripts/prepare-node-modules.sh +9 -1
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +1 -1
- package/lib/__templates__/nuxt-vue/scripts/prepare-node-modules.sh +9 -1
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +1 -1
- package/lib/__templates__/taro/.cozeproj/scripts/prepare-node-modules.sh +9 -1
- package/lib/__templates__/vite/scripts/dev.sh +1 -1
- package/lib/__templates__/vite/scripts/prepare-node-modules.sh +9 -1
- package/lib/cli.js +1 -1
- package/package.json +1 -1
|
@@ -135,6 +135,7 @@ shift
|
|
|
135
135
|
child_pid=$!
|
|
136
136
|
|
|
137
137
|
# 先忽略 TERM,才能在向整组发 TERM(自己也在组里)之后存活下来补一发 KILL。
|
|
138
|
+
if [[ -z "${COZE_EVAL:-}" && -z "${COZE_PROJECT_TYPE:-}" ]]; then
|
|
138
139
|
( trap "" TERM
|
|
139
140
|
sleep "${timeout_seconds}"
|
|
140
141
|
echo "[dev] 后台进程运行超过 ${timeout_seconds}s,回收进程组 $$。"
|
|
@@ -142,6 +143,7 @@ child_pid=$!
|
|
|
142
143
|
sleep 5
|
|
143
144
|
kill -KILL -- "-$$" 2>/dev/null || true
|
|
144
145
|
) &
|
|
146
|
+
fi
|
|
145
147
|
|
|
146
148
|
wait "${child_pid}"
|
|
147
149
|
kill -KILL -- "-$$" 2>/dev/null || true
|
|
@@ -33,7 +33,6 @@ PROJECT_ID="$(basename "$PROJECT_ROOT")-$(printf '%s' "$PROJECT_ROOT" | cksum |
|
|
|
33
33
|
mkdir -p "$COZE_ROOT/nm"
|
|
34
34
|
COZE_ROOT="$(cd "$COZE_ROOT" && pwd -P)"
|
|
35
35
|
WORK_DIR="$COZE_ROOT/nm/$PROJECT_ID"
|
|
36
|
-
mkdir -p "$WORK_DIR"
|
|
37
36
|
case "$WORK_DIR" in
|
|
38
37
|
"$DRIVE_ROOT"|"$DRIVE_ROOT"/*)
|
|
39
38
|
echo "[node_modules] local dependency directory must not be on Coze Drive: $WORK_DIR" >&2
|
|
@@ -41,6 +40,15 @@ case "$WORK_DIR" in
|
|
|
41
40
|
;;
|
|
42
41
|
esac
|
|
43
42
|
|
|
43
|
+
LOCK_DIR="$COZE_ROOT/nm/$PROJECT_ID.lock"
|
|
44
|
+
while ! mkdir "$LOCK_DIR" 2>/dev/null; do
|
|
45
|
+
echo "[node_modules] Waiting for another dependency preparation for this project..."
|
|
46
|
+
sleep 1
|
|
47
|
+
done
|
|
48
|
+
trap 'rmdir "$LOCK_DIR" 2>/dev/null || true' EXIT
|
|
49
|
+
|
|
50
|
+
mkdir -p "$WORK_DIR"
|
|
51
|
+
|
|
44
52
|
# Mirror the project with symlinks. node_modules stays real in WORK_DIR;
|
|
45
53
|
# workspace directories stay real too, so pnpm never writes them to Drive.
|
|
46
54
|
mirror_root() {
|
|
@@ -3,6 +3,7 @@ import type { NextConfig } from 'next';
|
|
|
3
3
|
const nextConfig: NextConfig = {
|
|
4
4
|
// outputFileTracingRoot: path.resolve(__dirname, '../../'), // Uncomment and add 'import path from "path"' if needed
|
|
5
5
|
/* config options here */
|
|
6
|
+
serverExternalPackages: ['coze-coding-dev-sdk'],
|
|
6
7
|
allowedDevOrigins: ['*.dev.coze.site'],
|
|
7
8
|
images: {
|
|
8
9
|
remotePatterns: [
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"embla-carousel-react": "^8.6.0",
|
|
57
57
|
"input-otp": "^1.4.2",
|
|
58
58
|
"lucide-react": "^0.468.0",
|
|
59
|
-
"next": "16.
|
|
59
|
+
"next": "16.1.1",
|
|
60
60
|
"next-themes": "^0.4.6",
|
|
61
61
|
"pg": "^8.16.3",
|
|
62
62
|
"react": "19.2.3",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@types/react": "^19",
|
|
82
82
|
"@types/react-dom": "^19",
|
|
83
83
|
"eslint": "^9",
|
|
84
|
-
"eslint-config-next": "16.
|
|
84
|
+
"eslint-config-next": "16.1.1",
|
|
85
85
|
"only-allow": "^1.2.2",
|
|
86
86
|
"react-dev-inspector": "^2.0.1",
|
|
87
87
|
"shadcn": "latest",
|
|
@@ -135,8 +135,8 @@ importers:
|
|
|
135
135
|
specifier: ^0.468.0
|
|
136
136
|
version: 0.468.0(react@19.2.3)
|
|
137
137
|
next:
|
|
138
|
-
specifier: 16.
|
|
139
|
-
version: 16.
|
|
138
|
+
specifier: 16.1.1
|
|
139
|
+
version: 16.1.1(@babel/core@7.28.6)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
140
140
|
next-themes:
|
|
141
141
|
specifier: ^0.4.6
|
|
142
142
|
version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
@@ -205,8 +205,8 @@ importers:
|
|
|
205
205
|
specifier: ^9
|
|
206
206
|
version: 9.39.2(jiti@2.6.1)
|
|
207
207
|
eslint-config-next:
|
|
208
|
-
specifier: 16.
|
|
209
|
-
version: 16.
|
|
208
|
+
specifier: 16.1.1
|
|
209
|
+
version: 16.1.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
|
|
210
210
|
only-allow:
|
|
211
211
|
specifier: ^1.2.2
|
|
212
212
|
version: 1.2.2
|
|
@@ -641,11 +641,11 @@ packages:
|
|
|
641
641
|
|
|
642
642
|
'@esbuild-kit/core-utils@3.3.2':
|
|
643
643
|
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
|
|
644
|
-
deprecated: 'Merged into tsx: https://tsx.
|
|
644
|
+
deprecated: 'Merged into tsx: https://tsx.hirok.io'
|
|
645
645
|
|
|
646
646
|
'@esbuild-kit/esm-loader@2.6.5':
|
|
647
647
|
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
648
|
-
deprecated: 'Merged into tsx: https://tsx.
|
|
648
|
+
deprecated: 'Merged into tsx: https://tsx.hirok.io'
|
|
649
649
|
|
|
650
650
|
'@esbuild/aix-ppc64@0.25.12':
|
|
651
651
|
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
@@ -1175,12 +1175,24 @@ packages:
|
|
|
1175
1175
|
resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
|
|
1176
1176
|
engines: {node: '>=18'}
|
|
1177
1177
|
|
|
1178
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
1179
|
+
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
|
|
1180
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1181
|
+
cpu: [arm64]
|
|
1182
|
+
os: [darwin]
|
|
1183
|
+
|
|
1178
1184
|
'@img/sharp-darwin-arm64@0.35.3':
|
|
1179
1185
|
resolution: {integrity: sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==}
|
|
1180
1186
|
engines: {node: '>=20.9.0'}
|
|
1181
1187
|
cpu: [arm64]
|
|
1182
1188
|
os: [darwin]
|
|
1183
1189
|
|
|
1190
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
1191
|
+
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
|
|
1192
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1193
|
+
cpu: [x64]
|
|
1194
|
+
os: [darwin]
|
|
1195
|
+
|
|
1184
1196
|
'@img/sharp-darwin-x64@0.35.3':
|
|
1185
1197
|
resolution: {integrity: sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==}
|
|
1186
1198
|
engines: {node: '>=20.9.0'}
|
|
@@ -1192,64 +1204,129 @@ packages:
|
|
|
1192
1204
|
engines: {node: '>=20.9.0'}
|
|
1193
1205
|
os: [freebsd]
|
|
1194
1206
|
|
|
1207
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
1208
|
+
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
1209
|
+
cpu: [arm64]
|
|
1210
|
+
os: [darwin]
|
|
1211
|
+
|
|
1195
1212
|
'@img/sharp-libvips-darwin-arm64@1.3.2':
|
|
1196
1213
|
resolution: {integrity: sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==}
|
|
1197
1214
|
cpu: [arm64]
|
|
1198
1215
|
os: [darwin]
|
|
1199
1216
|
|
|
1217
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
1218
|
+
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
|
|
1219
|
+
cpu: [x64]
|
|
1220
|
+
os: [darwin]
|
|
1221
|
+
|
|
1200
1222
|
'@img/sharp-libvips-darwin-x64@1.3.2':
|
|
1201
1223
|
resolution: {integrity: sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==}
|
|
1202
1224
|
cpu: [x64]
|
|
1203
1225
|
os: [darwin]
|
|
1204
1226
|
|
|
1227
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
1228
|
+
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
1229
|
+
cpu: [arm64]
|
|
1230
|
+
os: [linux]
|
|
1231
|
+
libc: [glibc]
|
|
1232
|
+
|
|
1205
1233
|
'@img/sharp-libvips-linux-arm64@1.3.2':
|
|
1206
1234
|
resolution: {integrity: sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==}
|
|
1207
1235
|
cpu: [arm64]
|
|
1208
1236
|
os: [linux]
|
|
1209
1237
|
libc: [glibc]
|
|
1210
1238
|
|
|
1239
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
1240
|
+
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
1241
|
+
cpu: [arm]
|
|
1242
|
+
os: [linux]
|
|
1243
|
+
libc: [glibc]
|
|
1244
|
+
|
|
1211
1245
|
'@img/sharp-libvips-linux-arm@1.3.2':
|
|
1212
1246
|
resolution: {integrity: sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==}
|
|
1213
1247
|
cpu: [arm]
|
|
1214
1248
|
os: [linux]
|
|
1215
1249
|
libc: [glibc]
|
|
1216
1250
|
|
|
1251
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
1252
|
+
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
1253
|
+
cpu: [ppc64]
|
|
1254
|
+
os: [linux]
|
|
1255
|
+
libc: [glibc]
|
|
1256
|
+
|
|
1217
1257
|
'@img/sharp-libvips-linux-ppc64@1.3.2':
|
|
1218
1258
|
resolution: {integrity: sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==}
|
|
1219
1259
|
cpu: [ppc64]
|
|
1220
1260
|
os: [linux]
|
|
1221
1261
|
libc: [glibc]
|
|
1222
1262
|
|
|
1263
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
1264
|
+
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
1265
|
+
cpu: [riscv64]
|
|
1266
|
+
os: [linux]
|
|
1267
|
+
libc: [glibc]
|
|
1268
|
+
|
|
1223
1269
|
'@img/sharp-libvips-linux-riscv64@1.3.2':
|
|
1224
1270
|
resolution: {integrity: sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==}
|
|
1225
1271
|
cpu: [riscv64]
|
|
1226
1272
|
os: [linux]
|
|
1227
1273
|
libc: [glibc]
|
|
1228
1274
|
|
|
1275
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
1276
|
+
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
1277
|
+
cpu: [s390x]
|
|
1278
|
+
os: [linux]
|
|
1279
|
+
libc: [glibc]
|
|
1280
|
+
|
|
1229
1281
|
'@img/sharp-libvips-linux-s390x@1.3.2':
|
|
1230
1282
|
resolution: {integrity: sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==}
|
|
1231
1283
|
cpu: [s390x]
|
|
1232
1284
|
os: [linux]
|
|
1233
1285
|
libc: [glibc]
|
|
1234
1286
|
|
|
1287
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
1288
|
+
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
1289
|
+
cpu: [x64]
|
|
1290
|
+
os: [linux]
|
|
1291
|
+
libc: [glibc]
|
|
1292
|
+
|
|
1235
1293
|
'@img/sharp-libvips-linux-x64@1.3.2':
|
|
1236
1294
|
resolution: {integrity: sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==}
|
|
1237
1295
|
cpu: [x64]
|
|
1238
1296
|
os: [linux]
|
|
1239
1297
|
libc: [glibc]
|
|
1240
1298
|
|
|
1299
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
1300
|
+
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
1301
|
+
cpu: [arm64]
|
|
1302
|
+
os: [linux]
|
|
1303
|
+
libc: [musl]
|
|
1304
|
+
|
|
1241
1305
|
'@img/sharp-libvips-linuxmusl-arm64@1.3.2':
|
|
1242
1306
|
resolution: {integrity: sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==}
|
|
1243
1307
|
cpu: [arm64]
|
|
1244
1308
|
os: [linux]
|
|
1245
1309
|
libc: [musl]
|
|
1246
1310
|
|
|
1311
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
1312
|
+
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
1313
|
+
cpu: [x64]
|
|
1314
|
+
os: [linux]
|
|
1315
|
+
libc: [musl]
|
|
1316
|
+
|
|
1247
1317
|
'@img/sharp-libvips-linuxmusl-x64@1.3.2':
|
|
1248
1318
|
resolution: {integrity: sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==}
|
|
1249
1319
|
cpu: [x64]
|
|
1250
1320
|
os: [linux]
|
|
1251
1321
|
libc: [musl]
|
|
1252
1322
|
|
|
1323
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
1324
|
+
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
1325
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1326
|
+
cpu: [arm64]
|
|
1327
|
+
os: [linux]
|
|
1328
|
+
libc: [glibc]
|
|
1329
|
+
|
|
1253
1330
|
'@img/sharp-linux-arm64@0.35.3':
|
|
1254
1331
|
resolution: {integrity: sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==}
|
|
1255
1332
|
engines: {node: '>=20.9.0'}
|
|
@@ -1257,6 +1334,13 @@ packages:
|
|
|
1257
1334
|
os: [linux]
|
|
1258
1335
|
libc: [glibc]
|
|
1259
1336
|
|
|
1337
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
1338
|
+
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
1339
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1340
|
+
cpu: [arm]
|
|
1341
|
+
os: [linux]
|
|
1342
|
+
libc: [glibc]
|
|
1343
|
+
|
|
1260
1344
|
'@img/sharp-linux-arm@0.35.3':
|
|
1261
1345
|
resolution: {integrity: sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==}
|
|
1262
1346
|
engines: {node: '>=20.9.0'}
|
|
@@ -1264,6 +1348,13 @@ packages:
|
|
|
1264
1348
|
os: [linux]
|
|
1265
1349
|
libc: [glibc]
|
|
1266
1350
|
|
|
1351
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
1352
|
+
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
1353
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1354
|
+
cpu: [ppc64]
|
|
1355
|
+
os: [linux]
|
|
1356
|
+
libc: [glibc]
|
|
1357
|
+
|
|
1267
1358
|
'@img/sharp-linux-ppc64@0.35.3':
|
|
1268
1359
|
resolution: {integrity: sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==}
|
|
1269
1360
|
engines: {node: '>=20.9.0'}
|
|
@@ -1271,6 +1362,13 @@ packages:
|
|
|
1271
1362
|
os: [linux]
|
|
1272
1363
|
libc: [glibc]
|
|
1273
1364
|
|
|
1365
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
1366
|
+
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
1367
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1368
|
+
cpu: [riscv64]
|
|
1369
|
+
os: [linux]
|
|
1370
|
+
libc: [glibc]
|
|
1371
|
+
|
|
1274
1372
|
'@img/sharp-linux-riscv64@0.35.3':
|
|
1275
1373
|
resolution: {integrity: sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==}
|
|
1276
1374
|
engines: {node: '>=20.9.0'}
|
|
@@ -1278,6 +1376,13 @@ packages:
|
|
|
1278
1376
|
os: [linux]
|
|
1279
1377
|
libc: [glibc]
|
|
1280
1378
|
|
|
1379
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
1380
|
+
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
1381
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1382
|
+
cpu: [s390x]
|
|
1383
|
+
os: [linux]
|
|
1384
|
+
libc: [glibc]
|
|
1385
|
+
|
|
1281
1386
|
'@img/sharp-linux-s390x@0.35.3':
|
|
1282
1387
|
resolution: {integrity: sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==}
|
|
1283
1388
|
engines: {node: '>=20.9.0'}
|
|
@@ -1285,6 +1390,13 @@ packages:
|
|
|
1285
1390
|
os: [linux]
|
|
1286
1391
|
libc: [glibc]
|
|
1287
1392
|
|
|
1393
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
1394
|
+
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
1395
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1396
|
+
cpu: [x64]
|
|
1397
|
+
os: [linux]
|
|
1398
|
+
libc: [glibc]
|
|
1399
|
+
|
|
1288
1400
|
'@img/sharp-linux-x64@0.35.3':
|
|
1289
1401
|
resolution: {integrity: sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==}
|
|
1290
1402
|
engines: {node: '>=20.9.0'}
|
|
@@ -1292,6 +1404,13 @@ packages:
|
|
|
1292
1404
|
os: [linux]
|
|
1293
1405
|
libc: [glibc]
|
|
1294
1406
|
|
|
1407
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
1408
|
+
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
1409
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1410
|
+
cpu: [arm64]
|
|
1411
|
+
os: [linux]
|
|
1412
|
+
libc: [musl]
|
|
1413
|
+
|
|
1295
1414
|
'@img/sharp-linuxmusl-arm64@0.35.3':
|
|
1296
1415
|
resolution: {integrity: sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==}
|
|
1297
1416
|
engines: {node: '>=20.9.0'}
|
|
@@ -1299,6 +1418,13 @@ packages:
|
|
|
1299
1418
|
os: [linux]
|
|
1300
1419
|
libc: [musl]
|
|
1301
1420
|
|
|
1421
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
1422
|
+
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
1423
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1424
|
+
cpu: [x64]
|
|
1425
|
+
os: [linux]
|
|
1426
|
+
libc: [musl]
|
|
1427
|
+
|
|
1302
1428
|
'@img/sharp-linuxmusl-x64@0.35.3':
|
|
1303
1429
|
resolution: {integrity: sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==}
|
|
1304
1430
|
engines: {node: '>=20.9.0'}
|
|
@@ -1306,6 +1432,11 @@ packages:
|
|
|
1306
1432
|
os: [linux]
|
|
1307
1433
|
libc: [musl]
|
|
1308
1434
|
|
|
1435
|
+
'@img/sharp-wasm32@0.34.5':
|
|
1436
|
+
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
1437
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1438
|
+
cpu: [wasm32]
|
|
1439
|
+
|
|
1309
1440
|
'@img/sharp-wasm32@0.35.3':
|
|
1310
1441
|
resolution: {integrity: sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==}
|
|
1311
1442
|
engines: {node: '>=20.9.0'}
|
|
@@ -1315,18 +1446,36 @@ packages:
|
|
|
1315
1446
|
engines: {node: '>=20.9.0'}
|
|
1316
1447
|
cpu: [wasm32]
|
|
1317
1448
|
|
|
1449
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
1450
|
+
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
|
|
1451
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1452
|
+
cpu: [arm64]
|
|
1453
|
+
os: [win32]
|
|
1454
|
+
|
|
1318
1455
|
'@img/sharp-win32-arm64@0.35.3':
|
|
1319
1456
|
resolution: {integrity: sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==}
|
|
1320
1457
|
engines: {node: '>=20.9.0'}
|
|
1321
1458
|
cpu: [arm64]
|
|
1322
1459
|
os: [win32]
|
|
1323
1460
|
|
|
1461
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
1462
|
+
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
|
|
1463
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1464
|
+
cpu: [ia32]
|
|
1465
|
+
os: [win32]
|
|
1466
|
+
|
|
1324
1467
|
'@img/sharp-win32-ia32@0.35.3':
|
|
1325
1468
|
resolution: {integrity: sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==}
|
|
1326
1469
|
engines: {node: ^20.9.0}
|
|
1327
1470
|
cpu: [ia32]
|
|
1328
1471
|
os: [win32]
|
|
1329
1472
|
|
|
1473
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
1474
|
+
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
|
|
1475
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1476
|
+
cpu: [x64]
|
|
1477
|
+
os: [win32]
|
|
1478
|
+
|
|
1330
1479
|
'@img/sharp-win32-x64@0.35.3':
|
|
1331
1480
|
resolution: {integrity: sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==}
|
|
1332
1481
|
engines: {node: '>=20.9.0'}
|
|
@@ -1431,60 +1580,60 @@ packages:
|
|
|
1431
1580
|
'@napi-rs/wasm-runtime@0.2.12':
|
|
1432
1581
|
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
|
|
1433
1582
|
|
|
1434
|
-
'@next/env@16.
|
|
1435
|
-
resolution: {integrity: sha512-
|
|
1583
|
+
'@next/env@16.1.1':
|
|
1584
|
+
resolution: {integrity: sha512-3oxyM97Sr2PqiVyMyrZUtrtM3jqqFxOQJVuKclDsgj/L728iZt/GyslkN4NwarledZATCenbk4Offjk1hQmaAA==}
|
|
1436
1585
|
|
|
1437
|
-
'@next/eslint-plugin-next@16.
|
|
1438
|
-
resolution: {integrity: sha512-
|
|
1586
|
+
'@next/eslint-plugin-next@16.1.1':
|
|
1587
|
+
resolution: {integrity: sha512-Ovb/6TuLKbE1UiPcg0p39Ke3puyTCIKN9hGbNItmpQsp+WX3qrjO3WaMVSi6JHr9X1NrmthqIguVHodMJbh/dw==}
|
|
1439
1588
|
|
|
1440
|
-
'@next/swc-darwin-arm64@16.
|
|
1441
|
-
resolution: {integrity: sha512-
|
|
1589
|
+
'@next/swc-darwin-arm64@16.1.1':
|
|
1590
|
+
resolution: {integrity: sha512-JS3m42ifsVSJjSTzh27nW+Igfha3NdBOFScr9C80hHGrWx55pTrVL23RJbqir7k7/15SKlrLHhh/MQzqBBYrQA==}
|
|
1442
1591
|
engines: {node: '>= 10'}
|
|
1443
1592
|
cpu: [arm64]
|
|
1444
1593
|
os: [darwin]
|
|
1445
1594
|
|
|
1446
|
-
'@next/swc-darwin-x64@16.
|
|
1447
|
-
resolution: {integrity: sha512-
|
|
1595
|
+
'@next/swc-darwin-x64@16.1.1':
|
|
1596
|
+
resolution: {integrity: sha512-hbyKtrDGUkgkyQi1m1IyD3q4I/3m9ngr+V93z4oKHrPcmxwNL5iMWORvLSGAf2YujL+6HxgVvZuCYZfLfb4bGw==}
|
|
1448
1597
|
engines: {node: '>= 10'}
|
|
1449
1598
|
cpu: [x64]
|
|
1450
1599
|
os: [darwin]
|
|
1451
1600
|
|
|
1452
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
1453
|
-
resolution: {integrity: sha512
|
|
1601
|
+
'@next/swc-linux-arm64-gnu@16.1.1':
|
|
1602
|
+
resolution: {integrity: sha512-/fvHet+EYckFvRLQ0jPHJCUI5/B56+2DpI1xDSvi80r/3Ez+Eaa2Yq4tJcRTaB1kqj/HrYKn8Yplm9bNoMJpwQ==}
|
|
1454
1603
|
engines: {node: '>= 10'}
|
|
1455
1604
|
cpu: [arm64]
|
|
1456
1605
|
os: [linux]
|
|
1457
1606
|
libc: [glibc]
|
|
1458
1607
|
|
|
1459
|
-
'@next/swc-linux-arm64-musl@16.
|
|
1460
|
-
resolution: {integrity: sha512-
|
|
1608
|
+
'@next/swc-linux-arm64-musl@16.1.1':
|
|
1609
|
+
resolution: {integrity: sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==}
|
|
1461
1610
|
engines: {node: '>= 10'}
|
|
1462
1611
|
cpu: [arm64]
|
|
1463
1612
|
os: [linux]
|
|
1464
1613
|
libc: [musl]
|
|
1465
1614
|
|
|
1466
|
-
'@next/swc-linux-x64-gnu@16.
|
|
1467
|
-
resolution: {integrity: sha512-
|
|
1615
|
+
'@next/swc-linux-x64-gnu@16.1.1':
|
|
1616
|
+
resolution: {integrity: sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==}
|
|
1468
1617
|
engines: {node: '>= 10'}
|
|
1469
1618
|
cpu: [x64]
|
|
1470
1619
|
os: [linux]
|
|
1471
1620
|
libc: [glibc]
|
|
1472
1621
|
|
|
1473
|
-
'@next/swc-linux-x64-musl@16.
|
|
1474
|
-
resolution: {integrity: sha512-
|
|
1622
|
+
'@next/swc-linux-x64-musl@16.1.1':
|
|
1623
|
+
resolution: {integrity: sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==}
|
|
1475
1624
|
engines: {node: '>= 10'}
|
|
1476
1625
|
cpu: [x64]
|
|
1477
1626
|
os: [linux]
|
|
1478
1627
|
libc: [musl]
|
|
1479
1628
|
|
|
1480
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
1481
|
-
resolution: {integrity: sha512-
|
|
1629
|
+
'@next/swc-win32-arm64-msvc@16.1.1':
|
|
1630
|
+
resolution: {integrity: sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==}
|
|
1482
1631
|
engines: {node: '>= 10'}
|
|
1483
1632
|
cpu: [arm64]
|
|
1484
1633
|
os: [win32]
|
|
1485
1634
|
|
|
1486
|
-
'@next/swc-win32-x64-msvc@16.
|
|
1487
|
-
resolution: {integrity: sha512-
|
|
1635
|
+
'@next/swc-win32-x64-msvc@16.1.1':
|
|
1636
|
+
resolution: {integrity: sha512-Ncwbw2WJ57Al5OX0k4chM68DKhEPlrXBaSXDCi2kPi5f4d8b3ejr3RRJGfKBLrn2YJL5ezNS7w2TZLHSti8CMw==}
|
|
1488
1637
|
engines: {node: '>= 10'}
|
|
1489
1638
|
cpu: [x64]
|
|
1490
1639
|
os: [win32]
|
|
@@ -2580,8 +2729,8 @@ packages:
|
|
|
2580
2729
|
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
2581
2730
|
engines: {node: '>=20.0.0'}
|
|
2582
2731
|
|
|
2583
|
-
'@swc/helpers@0.5.
|
|
2584
|
-
resolution: {integrity: sha512-
|
|
2732
|
+
'@swc/helpers@0.5.15':
|
|
2733
|
+
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
2585
2734
|
|
|
2586
2735
|
'@tailwindcss/node@4.1.18':
|
|
2587
2736
|
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
|
|
@@ -3163,6 +3312,10 @@ packages:
|
|
|
3163
3312
|
engines: {node: '>=6.0.0'}
|
|
3164
3313
|
hasBin: true
|
|
3165
3314
|
|
|
3315
|
+
baseline-browser-mapping@2.9.18:
|
|
3316
|
+
resolution: {integrity: sha512-e23vBV1ZLfjb9apvfPk4rHVu2ry6RIr2Wfs+O324okSidrX7pTAnEJPCh/O5BtRlr7QtZI7ktOP3vsqr7Z5XoA==}
|
|
3317
|
+
hasBin: true
|
|
3318
|
+
|
|
3166
3319
|
binary-extensions@2.3.0:
|
|
3167
3320
|
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
3168
3321
|
engines: {node: '>=8'}
|
|
@@ -3802,8 +3955,8 @@ packages:
|
|
|
3802
3955
|
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
3803
3956
|
engines: {node: '>=10'}
|
|
3804
3957
|
|
|
3805
|
-
eslint-config-next@16.
|
|
3806
|
-
resolution: {integrity: sha512-
|
|
3958
|
+
eslint-config-next@16.1.1:
|
|
3959
|
+
resolution: {integrity: sha512-55nTpVWm3qeuxoQKLOjQVciKZJUphKrNM0fCcQHAIOGl6VFXgaqeMfv0aKJhs7QtcnlAPhNVqsqRfRjeKBPIUA==}
|
|
3807
3960
|
peerDependencies:
|
|
3808
3961
|
eslint: '>=9.0.0'
|
|
3809
3962
|
typescript: '>=3.3.1'
|
|
@@ -3895,6 +4048,7 @@ packages:
|
|
|
3895
4048
|
eslint@9.39.2:
|
|
3896
4049
|
resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
|
|
3897
4050
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4051
|
+
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
|
|
3898
4052
|
hasBin: true
|
|
3899
4053
|
peerDependencies:
|
|
3900
4054
|
jiti: '*'
|
|
@@ -4201,7 +4355,7 @@ packages:
|
|
|
4201
4355
|
|
|
4202
4356
|
glob@7.2.3:
|
|
4203
4357
|
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
4204
|
-
deprecated:
|
|
4358
|
+
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
|
4205
4359
|
|
|
4206
4360
|
global-modules@2.0.0:
|
|
4207
4361
|
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
|
|
@@ -4955,8 +5109,8 @@ packages:
|
|
|
4955
5109
|
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
4956
5110
|
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
4957
5111
|
|
|
4958
|
-
next@16.
|
|
4959
|
-
resolution: {integrity: sha512-
|
|
5112
|
+
next@16.1.1:
|
|
5113
|
+
resolution: {integrity: sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==}
|
|
4960
5114
|
engines: {node: '>=20.9.0'}
|
|
4961
5115
|
hasBin: true
|
|
4962
5116
|
peerDependencies:
|
|
@@ -5281,8 +5435,8 @@ packages:
|
|
|
5281
5435
|
postcss-value-parser@4.2.0:
|
|
5282
5436
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
5283
5437
|
|
|
5284
|
-
postcss@8.
|
|
5285
|
-
resolution: {integrity: sha512-
|
|
5438
|
+
postcss@8.4.31:
|
|
5439
|
+
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
5286
5440
|
engines: {node: ^10 || ^12 || >=14}
|
|
5287
5441
|
|
|
5288
5442
|
postcss@8.5.6:
|
|
@@ -5473,6 +5627,7 @@ packages:
|
|
|
5473
5627
|
recharts@2.15.4:
|
|
5474
5628
|
resolution: {integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==}
|
|
5475
5629
|
engines: {node: '>=14'}
|
|
5630
|
+
deprecated: 1.x and 2.x branches are no longer active. Bump to Recharts v3 to receive latest features and bugfixes. See https://github.com/recharts/recharts/wiki/3.0-migration-guide
|
|
5476
5631
|
peerDependencies:
|
|
5477
5632
|
react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
5478
5633
|
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
@@ -5617,6 +5772,10 @@ packages:
|
|
|
5617
5772
|
resolution: {integrity: sha512-zOXNAIFclguSYmmoibyXyKiYA6qjEJtXDSvloAMziSREW9Q0R/dLqBUYdb81lOejmZkDYuZApGabbMLH7G8qvQ==}
|
|
5618
5773
|
hasBin: true
|
|
5619
5774
|
|
|
5775
|
+
sharp@0.34.5:
|
|
5776
|
+
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
5777
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
5778
|
+
|
|
5620
5779
|
sharp@0.35.3:
|
|
5621
5780
|
resolution: {integrity: sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==}
|
|
5622
5781
|
engines: {node: '>=20.9.0'}
|
|
@@ -6090,6 +6249,7 @@ packages:
|
|
|
6090
6249
|
|
|
6091
6250
|
uuid@10.0.0:
|
|
6092
6251
|
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
6252
|
+
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
|
|
6093
6253
|
hasBin: true
|
|
6094
6254
|
|
|
6095
6255
|
validate-npm-package-name@7.0.2:
|
|
@@ -7389,11 +7549,21 @@ snapshots:
|
|
|
7389
7549
|
|
|
7390
7550
|
'@img/colour@1.1.0': {}
|
|
7391
7551
|
|
|
7552
|
+
'@img/sharp-darwin-arm64@0.34.5':
|
|
7553
|
+
optionalDependencies:
|
|
7554
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
7555
|
+
optional: true
|
|
7556
|
+
|
|
7392
7557
|
'@img/sharp-darwin-arm64@0.35.3':
|
|
7393
7558
|
optionalDependencies:
|
|
7394
7559
|
'@img/sharp-libvips-darwin-arm64': 1.3.2
|
|
7395
7560
|
optional: true
|
|
7396
7561
|
|
|
7562
|
+
'@img/sharp-darwin-x64@0.34.5':
|
|
7563
|
+
optionalDependencies:
|
|
7564
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
7565
|
+
optional: true
|
|
7566
|
+
|
|
7397
7567
|
'@img/sharp-darwin-x64@0.35.3':
|
|
7398
7568
|
optionalDependencies:
|
|
7399
7569
|
'@img/sharp-libvips-darwin-x64': 1.3.2
|
|
@@ -7404,76 +7574,151 @@ snapshots:
|
|
|
7404
7574
|
'@img/sharp-wasm32': 0.35.3
|
|
7405
7575
|
optional: true
|
|
7406
7576
|
|
|
7577
|
+
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
7578
|
+
optional: true
|
|
7579
|
+
|
|
7407
7580
|
'@img/sharp-libvips-darwin-arm64@1.3.2':
|
|
7408
7581
|
optional: true
|
|
7409
7582
|
|
|
7583
|
+
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
7584
|
+
optional: true
|
|
7585
|
+
|
|
7410
7586
|
'@img/sharp-libvips-darwin-x64@1.3.2':
|
|
7411
7587
|
optional: true
|
|
7412
7588
|
|
|
7589
|
+
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
7590
|
+
optional: true
|
|
7591
|
+
|
|
7413
7592
|
'@img/sharp-libvips-linux-arm64@1.3.2':
|
|
7414
7593
|
optional: true
|
|
7415
7594
|
|
|
7595
|
+
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
7596
|
+
optional: true
|
|
7597
|
+
|
|
7416
7598
|
'@img/sharp-libvips-linux-arm@1.3.2':
|
|
7417
7599
|
optional: true
|
|
7418
7600
|
|
|
7601
|
+
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
7602
|
+
optional: true
|
|
7603
|
+
|
|
7419
7604
|
'@img/sharp-libvips-linux-ppc64@1.3.2':
|
|
7420
7605
|
optional: true
|
|
7421
7606
|
|
|
7607
|
+
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
7608
|
+
optional: true
|
|
7609
|
+
|
|
7422
7610
|
'@img/sharp-libvips-linux-riscv64@1.3.2':
|
|
7423
7611
|
optional: true
|
|
7424
7612
|
|
|
7613
|
+
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
7614
|
+
optional: true
|
|
7615
|
+
|
|
7425
7616
|
'@img/sharp-libvips-linux-s390x@1.3.2':
|
|
7426
7617
|
optional: true
|
|
7427
7618
|
|
|
7619
|
+
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
7620
|
+
optional: true
|
|
7621
|
+
|
|
7428
7622
|
'@img/sharp-libvips-linux-x64@1.3.2':
|
|
7429
7623
|
optional: true
|
|
7430
7624
|
|
|
7625
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
7626
|
+
optional: true
|
|
7627
|
+
|
|
7431
7628
|
'@img/sharp-libvips-linuxmusl-arm64@1.3.2':
|
|
7432
7629
|
optional: true
|
|
7433
7630
|
|
|
7631
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
7632
|
+
optional: true
|
|
7633
|
+
|
|
7434
7634
|
'@img/sharp-libvips-linuxmusl-x64@1.3.2':
|
|
7435
7635
|
optional: true
|
|
7436
7636
|
|
|
7637
|
+
'@img/sharp-linux-arm64@0.34.5':
|
|
7638
|
+
optionalDependencies:
|
|
7639
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
7640
|
+
optional: true
|
|
7641
|
+
|
|
7437
7642
|
'@img/sharp-linux-arm64@0.35.3':
|
|
7438
7643
|
optionalDependencies:
|
|
7439
7644
|
'@img/sharp-libvips-linux-arm64': 1.3.2
|
|
7440
7645
|
optional: true
|
|
7441
7646
|
|
|
7647
|
+
'@img/sharp-linux-arm@0.34.5':
|
|
7648
|
+
optionalDependencies:
|
|
7649
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
7650
|
+
optional: true
|
|
7651
|
+
|
|
7442
7652
|
'@img/sharp-linux-arm@0.35.3':
|
|
7443
7653
|
optionalDependencies:
|
|
7444
7654
|
'@img/sharp-libvips-linux-arm': 1.3.2
|
|
7445
7655
|
optional: true
|
|
7446
7656
|
|
|
7657
|
+
'@img/sharp-linux-ppc64@0.34.5':
|
|
7658
|
+
optionalDependencies:
|
|
7659
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
7660
|
+
optional: true
|
|
7661
|
+
|
|
7447
7662
|
'@img/sharp-linux-ppc64@0.35.3':
|
|
7448
7663
|
optionalDependencies:
|
|
7449
7664
|
'@img/sharp-libvips-linux-ppc64': 1.3.2
|
|
7450
7665
|
optional: true
|
|
7451
7666
|
|
|
7667
|
+
'@img/sharp-linux-riscv64@0.34.5':
|
|
7668
|
+
optionalDependencies:
|
|
7669
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
7670
|
+
optional: true
|
|
7671
|
+
|
|
7452
7672
|
'@img/sharp-linux-riscv64@0.35.3':
|
|
7453
7673
|
optionalDependencies:
|
|
7454
7674
|
'@img/sharp-libvips-linux-riscv64': 1.3.2
|
|
7455
7675
|
optional: true
|
|
7456
7676
|
|
|
7677
|
+
'@img/sharp-linux-s390x@0.34.5':
|
|
7678
|
+
optionalDependencies:
|
|
7679
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
7680
|
+
optional: true
|
|
7681
|
+
|
|
7457
7682
|
'@img/sharp-linux-s390x@0.35.3':
|
|
7458
7683
|
optionalDependencies:
|
|
7459
7684
|
'@img/sharp-libvips-linux-s390x': 1.3.2
|
|
7460
7685
|
optional: true
|
|
7461
7686
|
|
|
7687
|
+
'@img/sharp-linux-x64@0.34.5':
|
|
7688
|
+
optionalDependencies:
|
|
7689
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
7690
|
+
optional: true
|
|
7691
|
+
|
|
7462
7692
|
'@img/sharp-linux-x64@0.35.3':
|
|
7463
7693
|
optionalDependencies:
|
|
7464
7694
|
'@img/sharp-libvips-linux-x64': 1.3.2
|
|
7465
7695
|
optional: true
|
|
7466
7696
|
|
|
7697
|
+
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
7698
|
+
optionalDependencies:
|
|
7699
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
7700
|
+
optional: true
|
|
7701
|
+
|
|
7467
7702
|
'@img/sharp-linuxmusl-arm64@0.35.3':
|
|
7468
7703
|
optionalDependencies:
|
|
7469
7704
|
'@img/sharp-libvips-linuxmusl-arm64': 1.3.2
|
|
7470
7705
|
optional: true
|
|
7471
7706
|
|
|
7707
|
+
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
7708
|
+
optionalDependencies:
|
|
7709
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
7710
|
+
optional: true
|
|
7711
|
+
|
|
7472
7712
|
'@img/sharp-linuxmusl-x64@0.35.3':
|
|
7473
7713
|
optionalDependencies:
|
|
7474
7714
|
'@img/sharp-libvips-linuxmusl-x64': 1.3.2
|
|
7475
7715
|
optional: true
|
|
7476
7716
|
|
|
7717
|
+
'@img/sharp-wasm32@0.34.5':
|
|
7718
|
+
dependencies:
|
|
7719
|
+
'@emnapi/runtime': 1.11.3
|
|
7720
|
+
optional: true
|
|
7721
|
+
|
|
7477
7722
|
'@img/sharp-wasm32@0.35.3':
|
|
7478
7723
|
dependencies:
|
|
7479
7724
|
'@emnapi/runtime': 1.11.3
|
|
@@ -7484,12 +7729,21 @@ snapshots:
|
|
|
7484
7729
|
'@img/sharp-wasm32': 0.35.3
|
|
7485
7730
|
optional: true
|
|
7486
7731
|
|
|
7732
|
+
'@img/sharp-win32-arm64@0.34.5':
|
|
7733
|
+
optional: true
|
|
7734
|
+
|
|
7487
7735
|
'@img/sharp-win32-arm64@0.35.3':
|
|
7488
7736
|
optional: true
|
|
7489
7737
|
|
|
7738
|
+
'@img/sharp-win32-ia32@0.34.5':
|
|
7739
|
+
optional: true
|
|
7740
|
+
|
|
7490
7741
|
'@img/sharp-win32-ia32@0.35.3':
|
|
7491
7742
|
optional: true
|
|
7492
7743
|
|
|
7744
|
+
'@img/sharp-win32-x64@0.34.5':
|
|
7745
|
+
optional: true
|
|
7746
|
+
|
|
7493
7747
|
'@img/sharp-win32-x64@0.35.3':
|
|
7494
7748
|
optional: true
|
|
7495
7749
|
|
|
@@ -7626,37 +7880,34 @@ snapshots:
|
|
|
7626
7880
|
'@tybys/wasm-util': 0.10.1
|
|
7627
7881
|
optional: true
|
|
7628
7882
|
|
|
7629
|
-
'@next/env@16.
|
|
7883
|
+
'@next/env@16.1.1': {}
|
|
7630
7884
|
|
|
7631
|
-
'@next/eslint-plugin-next@16.
|
|
7885
|
+
'@next/eslint-plugin-next@16.1.1':
|
|
7632
7886
|
dependencies:
|
|
7633
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
|
|
7634
7887
|
fast-glob: 3.3.1
|
|
7635
|
-
transitivePeerDependencies:
|
|
7636
|
-
- eslint
|
|
7637
7888
|
|
|
7638
|
-
'@next/swc-darwin-arm64@16.
|
|
7889
|
+
'@next/swc-darwin-arm64@16.1.1':
|
|
7639
7890
|
optional: true
|
|
7640
7891
|
|
|
7641
|
-
'@next/swc-darwin-x64@16.
|
|
7892
|
+
'@next/swc-darwin-x64@16.1.1':
|
|
7642
7893
|
optional: true
|
|
7643
7894
|
|
|
7644
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
7895
|
+
'@next/swc-linux-arm64-gnu@16.1.1':
|
|
7645
7896
|
optional: true
|
|
7646
7897
|
|
|
7647
|
-
'@next/swc-linux-arm64-musl@16.
|
|
7898
|
+
'@next/swc-linux-arm64-musl@16.1.1':
|
|
7648
7899
|
optional: true
|
|
7649
7900
|
|
|
7650
|
-
'@next/swc-linux-x64-gnu@16.
|
|
7901
|
+
'@next/swc-linux-x64-gnu@16.1.1':
|
|
7651
7902
|
optional: true
|
|
7652
7903
|
|
|
7653
|
-
'@next/swc-linux-x64-musl@16.
|
|
7904
|
+
'@next/swc-linux-x64-musl@16.1.1':
|
|
7654
7905
|
optional: true
|
|
7655
7906
|
|
|
7656
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
7907
|
+
'@next/swc-win32-arm64-msvc@16.1.1':
|
|
7657
7908
|
optional: true
|
|
7658
7909
|
|
|
7659
|
-
'@next/swc-win32-x64-msvc@16.
|
|
7910
|
+
'@next/swc-win32-x64-msvc@16.1.1':
|
|
7660
7911
|
optional: true
|
|
7661
7912
|
|
|
7662
7913
|
'@noble/ciphers@1.3.0': {}
|
|
@@ -8876,7 +9127,7 @@ snapshots:
|
|
|
8876
9127
|
- bufferutil
|
|
8877
9128
|
- utf-8-validate
|
|
8878
9129
|
|
|
8879
|
-
'@swc/helpers@0.5.
|
|
9130
|
+
'@swc/helpers@0.5.15':
|
|
8880
9131
|
dependencies:
|
|
8881
9132
|
tslib: 2.8.1
|
|
8882
9133
|
|
|
@@ -9452,6 +9703,8 @@ snapshots:
|
|
|
9452
9703
|
|
|
9453
9704
|
baseline-browser-mapping@2.11.19: {}
|
|
9454
9705
|
|
|
9706
|
+
baseline-browser-mapping@2.9.18: {}
|
|
9707
|
+
|
|
9455
9708
|
binary-extensions@2.3.0: {}
|
|
9456
9709
|
|
|
9457
9710
|
body-parser@2.2.2:
|
|
@@ -9485,7 +9738,7 @@ snapshots:
|
|
|
9485
9738
|
|
|
9486
9739
|
browserslist@4.28.1:
|
|
9487
9740
|
dependencies:
|
|
9488
|
-
baseline-browser-mapping: 2.
|
|
9741
|
+
baseline-browser-mapping: 2.9.18
|
|
9489
9742
|
caniuse-lite: 1.0.30001766
|
|
9490
9743
|
electron-to-chromium: 1.5.279
|
|
9491
9744
|
node-releases: 2.0.27
|
|
@@ -10111,9 +10364,9 @@ snapshots:
|
|
|
10111
10364
|
|
|
10112
10365
|
escape-string-regexp@4.0.0: {}
|
|
10113
10366
|
|
|
10114
|
-
eslint-config-next@16.
|
|
10367
|
+
eslint-config-next@16.1.1(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3):
|
|
10115
10368
|
dependencies:
|
|
10116
|
-
'@next/eslint-plugin-next': 16.
|
|
10369
|
+
'@next/eslint-plugin-next': 16.1.1
|
|
10117
10370
|
eslint: 9.39.2(jiti@2.6.1)
|
|
10118
10371
|
eslint-import-resolver-node: 0.3.9
|
|
10119
10372
|
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.2(jiti@2.6.1))
|
|
@@ -11279,29 +11532,28 @@ snapshots:
|
|
|
11279
11532
|
react: 19.2.3
|
|
11280
11533
|
react-dom: 19.2.3(react@19.2.3)
|
|
11281
11534
|
|
|
11282
|
-
next@16.
|
|
11535
|
+
next@16.1.1(@babel/core@7.28.6)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
11283
11536
|
dependencies:
|
|
11284
|
-
'@next/env': 16.
|
|
11285
|
-
'@swc/helpers': 0.5.
|
|
11537
|
+
'@next/env': 16.1.1
|
|
11538
|
+
'@swc/helpers': 0.5.15
|
|
11286
11539
|
baseline-browser-mapping: 2.11.19
|
|
11287
11540
|
caniuse-lite: 1.0.30001766
|
|
11288
|
-
postcss: 8.
|
|
11541
|
+
postcss: 8.4.31
|
|
11289
11542
|
react: 19.2.3
|
|
11290
11543
|
react-dom: 19.2.3(react@19.2.3)
|
|
11291
11544
|
styled-jsx: 5.1.6(@babel/core@7.28.6)(react@19.2.3)
|
|
11292
11545
|
optionalDependencies:
|
|
11293
|
-
'@next/swc-darwin-arm64': 16.
|
|
11294
|
-
'@next/swc-darwin-x64': 16.
|
|
11295
|
-
'@next/swc-linux-arm64-gnu': 16.
|
|
11296
|
-
'@next/swc-linux-arm64-musl': 16.
|
|
11297
|
-
'@next/swc-linux-x64-gnu': 16.
|
|
11298
|
-
'@next/swc-linux-x64-musl': 16.
|
|
11299
|
-
'@next/swc-win32-arm64-msvc': 16.
|
|
11300
|
-
'@next/swc-win32-x64-msvc': 16.
|
|
11301
|
-
sharp: 0.
|
|
11546
|
+
'@next/swc-darwin-arm64': 16.1.1
|
|
11547
|
+
'@next/swc-darwin-x64': 16.1.1
|
|
11548
|
+
'@next/swc-linux-arm64-gnu': 16.1.1
|
|
11549
|
+
'@next/swc-linux-arm64-musl': 16.1.1
|
|
11550
|
+
'@next/swc-linux-x64-gnu': 16.1.1
|
|
11551
|
+
'@next/swc-linux-x64-musl': 16.1.1
|
|
11552
|
+
'@next/swc-win32-arm64-msvc': 16.1.1
|
|
11553
|
+
'@next/swc-win32-x64-msvc': 16.1.1
|
|
11554
|
+
sharp: 0.34.5
|
|
11302
11555
|
transitivePeerDependencies:
|
|
11303
11556
|
- '@babel/core'
|
|
11304
|
-
- '@types/node'
|
|
11305
11557
|
- babel-plugin-macros
|
|
11306
11558
|
|
|
11307
11559
|
node-domexception@1.0.0: {}
|
|
@@ -11587,7 +11839,7 @@ snapshots:
|
|
|
11587
11839
|
|
|
11588
11840
|
postcss-value-parser@4.2.0: {}
|
|
11589
11841
|
|
|
11590
|
-
postcss@8.
|
|
11842
|
+
postcss@8.4.31:
|
|
11591
11843
|
dependencies:
|
|
11592
11844
|
nanoid: 3.3.18
|
|
11593
11845
|
picocolors: 1.1.1
|
|
@@ -12067,6 +12319,38 @@ snapshots:
|
|
|
12067
12319
|
- supports-color
|
|
12068
12320
|
- typescript
|
|
12069
12321
|
|
|
12322
|
+
sharp@0.34.5:
|
|
12323
|
+
dependencies:
|
|
12324
|
+
'@img/colour': 1.1.0
|
|
12325
|
+
detect-libc: 2.1.2
|
|
12326
|
+
semver: 7.8.5
|
|
12327
|
+
optionalDependencies:
|
|
12328
|
+
'@img/sharp-darwin-arm64': 0.34.5
|
|
12329
|
+
'@img/sharp-darwin-x64': 0.34.5
|
|
12330
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
12331
|
+
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
12332
|
+
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
12333
|
+
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
12334
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
12335
|
+
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
12336
|
+
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
12337
|
+
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
12338
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
12339
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
12340
|
+
'@img/sharp-linux-arm': 0.34.5
|
|
12341
|
+
'@img/sharp-linux-arm64': 0.34.5
|
|
12342
|
+
'@img/sharp-linux-ppc64': 0.34.5
|
|
12343
|
+
'@img/sharp-linux-riscv64': 0.34.5
|
|
12344
|
+
'@img/sharp-linux-s390x': 0.34.5
|
|
12345
|
+
'@img/sharp-linux-x64': 0.34.5
|
|
12346
|
+
'@img/sharp-linuxmusl-arm64': 0.34.5
|
|
12347
|
+
'@img/sharp-linuxmusl-x64': 0.34.5
|
|
12348
|
+
'@img/sharp-wasm32': 0.34.5
|
|
12349
|
+
'@img/sharp-win32-arm64': 0.34.5
|
|
12350
|
+
'@img/sharp-win32-ia32': 0.34.5
|
|
12351
|
+
'@img/sharp-win32-x64': 0.34.5
|
|
12352
|
+
optional: true
|
|
12353
|
+
|
|
12070
12354
|
sharp@0.35.3(@types/node@20.19.30):
|
|
12071
12355
|
dependencies:
|
|
12072
12356
|
'@img/colour': 1.1.0
|
|
@@ -8,7 +8,7 @@ Write-Host "Installing dependencies..."
|
|
|
8
8
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
9
9
|
|
|
10
10
|
Write-Host "Building the Next.js project..."
|
|
11
|
-
& pnpm next build
|
|
11
|
+
& pnpm next build --webpack
|
|
12
12
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
13
13
|
|
|
14
14
|
Write-Host "Bundling server with tsup..."
|
|
@@ -9,7 +9,7 @@ echo "Installing dependencies..."
|
|
|
9
9
|
bash "$COZE_WORKSPACE_PATH/scripts/prepare-node-modules.sh" --prefer-frozen-lockfile --prefer-offline --loglevel debug --reporter=append-only
|
|
10
10
|
|
|
11
11
|
echo "Building the Next.js project..."
|
|
12
|
-
pnpm next build
|
|
12
|
+
pnpm next build --webpack
|
|
13
13
|
|
|
14
14
|
echo "Bundling server with tsup..."
|
|
15
15
|
pnpm tsup src/server.ts --format cjs --platform node --target node20 --outDir dist --no-splitting --no-minify
|
|
@@ -77,7 +77,7 @@ shift
|
|
|
77
77
|
child_pid=$!
|
|
78
78
|
|
|
79
79
|
# 先忽略 TERM,才能在向整组发 TERM(自己也在组里)之后存活下来补一发 KILL。
|
|
80
|
-
if [[ -z "${COZE_EVAL:-}" ]]; then
|
|
80
|
+
if [[ -z "${COZE_EVAL:-}" && -z "${COZE_PROJECT_TYPE:-}" ]]; then
|
|
81
81
|
( trap "" TERM
|
|
82
82
|
sleep "${timeout_seconds}"
|
|
83
83
|
echo "[dev] 后台进程运行超过 ${timeout_seconds}s,回收进程组 $$。"
|
|
@@ -33,7 +33,6 @@ PROJECT_ID="$(basename "$PROJECT_ROOT")-$(printf '%s' "$PROJECT_ROOT" | cksum |
|
|
|
33
33
|
mkdir -p "$COZE_ROOT/nm"
|
|
34
34
|
COZE_ROOT="$(cd "$COZE_ROOT" && pwd -P)"
|
|
35
35
|
WORK_DIR="$COZE_ROOT/nm/$PROJECT_ID"
|
|
36
|
-
mkdir -p "$WORK_DIR"
|
|
37
36
|
case "$WORK_DIR" in
|
|
38
37
|
"$DRIVE_ROOT"|"$DRIVE_ROOT"/*)
|
|
39
38
|
echo "[node_modules] local dependency directory must not be on Coze Drive: $WORK_DIR" >&2
|
|
@@ -41,6 +40,15 @@ case "$WORK_DIR" in
|
|
|
41
40
|
;;
|
|
42
41
|
esac
|
|
43
42
|
|
|
43
|
+
LOCK_DIR="$COZE_ROOT/nm/$PROJECT_ID.lock"
|
|
44
|
+
while ! mkdir "$LOCK_DIR" 2>/dev/null; do
|
|
45
|
+
echo "[node_modules] Waiting for another dependency preparation for this project..."
|
|
46
|
+
sleep 1
|
|
47
|
+
done
|
|
48
|
+
trap 'rmdir "$LOCK_DIR" 2>/dev/null || true' EXIT
|
|
49
|
+
|
|
50
|
+
mkdir -p "$WORK_DIR"
|
|
51
|
+
|
|
44
52
|
# Mirror the project with symlinks. node_modules stays real in WORK_DIR;
|
|
45
53
|
# workspace directories stay real too, so pnpm never writes them to Drive.
|
|
46
54
|
mirror_root() {
|
|
@@ -77,7 +77,7 @@ shift
|
|
|
77
77
|
child_pid=$!
|
|
78
78
|
|
|
79
79
|
# 先忽略 TERM,才能在向整组发 TERM(自己也在组里)之后存活下来补一发 KILL。
|
|
80
|
-
if [[ -z "${COZE_EVAL:-}" ]]; then
|
|
80
|
+
if [[ -z "${COZE_EVAL:-}" && -z "${COZE_PROJECT_TYPE:-}" ]]; then
|
|
81
81
|
( trap "" TERM
|
|
82
82
|
sleep "${timeout_seconds}"
|
|
83
83
|
echo "[dev] 后台进程运行超过 ${timeout_seconds}s,回收进程组 $$。"
|
|
@@ -33,7 +33,6 @@ PROJECT_ID="$(basename "$PROJECT_ROOT")-$(printf '%s' "$PROJECT_ROOT" | cksum |
|
|
|
33
33
|
mkdir -p "$COZE_ROOT/nm"
|
|
34
34
|
COZE_ROOT="$(cd "$COZE_ROOT" && pwd -P)"
|
|
35
35
|
WORK_DIR="$COZE_ROOT/nm/$PROJECT_ID"
|
|
36
|
-
mkdir -p "$WORK_DIR"
|
|
37
36
|
case "$WORK_DIR" in
|
|
38
37
|
"$DRIVE_ROOT"|"$DRIVE_ROOT"/*)
|
|
39
38
|
echo "[node_modules] local dependency directory must not be on Coze Drive: $WORK_DIR" >&2
|
|
@@ -41,6 +40,15 @@ case "$WORK_DIR" in
|
|
|
41
40
|
;;
|
|
42
41
|
esac
|
|
43
42
|
|
|
43
|
+
LOCK_DIR="$COZE_ROOT/nm/$PROJECT_ID.lock"
|
|
44
|
+
while ! mkdir "$LOCK_DIR" 2>/dev/null; do
|
|
45
|
+
echo "[node_modules] Waiting for another dependency preparation for this project..."
|
|
46
|
+
sleep 1
|
|
47
|
+
done
|
|
48
|
+
trap 'rmdir "$LOCK_DIR" 2>/dev/null || true' EXIT
|
|
49
|
+
|
|
50
|
+
mkdir -p "$WORK_DIR"
|
|
51
|
+
|
|
44
52
|
# Mirror the project with symlinks. node_modules stays real in WORK_DIR;
|
|
45
53
|
# workspace directories stay real too, so pnpm never writes them to Drive.
|
|
46
54
|
mirror_root() {
|
|
@@ -43,7 +43,7 @@ shift
|
|
|
43
43
|
child_pid=$!
|
|
44
44
|
|
|
45
45
|
# 先忽略 TERM,才能在向整组发 TERM(自己也在组里)之后存活下来补一发 KILL。
|
|
46
|
-
if [[ -z "${COZE_EVAL:-}" ]]; then
|
|
46
|
+
if [[ -z "${COZE_EVAL:-}" && -z "${COZE_PROJECT_TYPE:-}" ]]; then
|
|
47
47
|
( trap "" TERM
|
|
48
48
|
sleep "${timeout_seconds}"
|
|
49
49
|
echo "[dev] 后台进程运行超过 ${timeout_seconds}s,回收进程组 $$。"
|
|
@@ -33,7 +33,6 @@ PROJECT_ID="$(basename "$PROJECT_ROOT")-$(printf '%s' "$PROJECT_ROOT" | cksum |
|
|
|
33
33
|
mkdir -p "$COZE_ROOT/nm"
|
|
34
34
|
COZE_ROOT="$(cd "$COZE_ROOT" && pwd -P)"
|
|
35
35
|
WORK_DIR="$COZE_ROOT/nm/$PROJECT_ID"
|
|
36
|
-
mkdir -p "$WORK_DIR"
|
|
37
36
|
case "$WORK_DIR" in
|
|
38
37
|
"$DRIVE_ROOT"|"$DRIVE_ROOT"/*)
|
|
39
38
|
echo "[node_modules] local dependency directory must not be on Coze Drive: $WORK_DIR" >&2
|
|
@@ -41,6 +40,15 @@ case "$WORK_DIR" in
|
|
|
41
40
|
;;
|
|
42
41
|
esac
|
|
43
42
|
|
|
43
|
+
LOCK_DIR="$COZE_ROOT/nm/$PROJECT_ID.lock"
|
|
44
|
+
while ! mkdir "$LOCK_DIR" 2>/dev/null; do
|
|
45
|
+
echo "[node_modules] Waiting for another dependency preparation for this project..."
|
|
46
|
+
sleep 1
|
|
47
|
+
done
|
|
48
|
+
trap 'rmdir "$LOCK_DIR" 2>/dev/null || true' EXIT
|
|
49
|
+
|
|
50
|
+
mkdir -p "$WORK_DIR"
|
|
51
|
+
|
|
44
52
|
# Mirror the project with symlinks. node_modules stays real in WORK_DIR;
|
|
45
53
|
# workspace directories stay real too, so pnpm never writes them to Drive.
|
|
46
54
|
mirror_root() {
|
|
@@ -57,7 +57,7 @@ shift
|
|
|
57
57
|
child_pid=$!
|
|
58
58
|
|
|
59
59
|
# 先忽略 TERM,才能在向整组发 TERM(自己也在组里)之后存活下来补一发 KILL。
|
|
60
|
-
if [[ -z "${COZE_EVAL:-}" ]]; then
|
|
60
|
+
if [[ -z "${COZE_EVAL:-}" && -z "${COZE_PROJECT_TYPE:-}" ]]; then
|
|
61
61
|
( trap "" TERM
|
|
62
62
|
sleep "${timeout_seconds}"
|
|
63
63
|
echo "[dev] 后台进程运行超过 ${timeout_seconds}s,回收进程组 $$。"
|
|
@@ -33,7 +33,6 @@ PROJECT_ID="$(basename "$PROJECT_ROOT")-$(printf '%s' "$PROJECT_ROOT" | cksum |
|
|
|
33
33
|
mkdir -p "$COZE_ROOT/nm"
|
|
34
34
|
COZE_ROOT="$(cd "$COZE_ROOT" && pwd -P)"
|
|
35
35
|
WORK_DIR="$COZE_ROOT/nm/$PROJECT_ID"
|
|
36
|
-
mkdir -p "$WORK_DIR"
|
|
37
36
|
case "$WORK_DIR" in
|
|
38
37
|
"$DRIVE_ROOT"|"$DRIVE_ROOT"/*)
|
|
39
38
|
echo "[node_modules] local dependency directory must not be on Coze Drive: $WORK_DIR" >&2
|
|
@@ -41,6 +40,15 @@ case "$WORK_DIR" in
|
|
|
41
40
|
;;
|
|
42
41
|
esac
|
|
43
42
|
|
|
43
|
+
LOCK_DIR="$COZE_ROOT/nm/$PROJECT_ID.lock"
|
|
44
|
+
while ! mkdir "$LOCK_DIR" 2>/dev/null; do
|
|
45
|
+
echo "[node_modules] Waiting for another dependency preparation for this project..."
|
|
46
|
+
sleep 1
|
|
47
|
+
done
|
|
48
|
+
trap 'rmdir "$LOCK_DIR" 2>/dev/null || true' EXIT
|
|
49
|
+
|
|
50
|
+
mkdir -p "$WORK_DIR"
|
|
51
|
+
|
|
44
52
|
# Mirror the project with symlinks. node_modules stays real in WORK_DIR;
|
|
45
53
|
# workspace directories stay real too, so pnpm never writes them to Drive.
|
|
46
54
|
mirror_root() {
|
package/lib/cli.js
CHANGED
|
@@ -2114,7 +2114,7 @@ const EventBuilder = {
|
|
|
2114
2114
|
};
|
|
2115
2115
|
|
|
2116
2116
|
var name = "@coze-arch/cli";
|
|
2117
|
-
var version = "0.1.3-alpha.
|
|
2117
|
+
var version = "0.1.3-alpha.75c39d";
|
|
2118
2118
|
var description = "coze coding devtools cli";
|
|
2119
2119
|
var license = "MIT";
|
|
2120
2120
|
var author = "fanwenjie.fe@bytedance.com";
|