@coze-arch/cli 0.1.3-alpha.8d71d5 → 0.1.3
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.
|
@@ -3,6 +3,7 @@ if [ -z "${BASH_VERSION:-}" ]; then exec /usr/bin/env bash "$0" "$@"; fi
|
|
|
3
3
|
set -euo pipefail
|
|
4
4
|
ROOT_DIR="$(pwd)"
|
|
5
5
|
PREVIEW_DIR="/source/preview"
|
|
6
|
+
SOURCE_DIR="/source"
|
|
6
7
|
|
|
7
8
|
# ==================== 配置项 ====================
|
|
8
9
|
SERVER_DIR="app"
|
|
@@ -40,6 +41,9 @@ echo "检查根目录 post_install.py"
|
|
|
40
41
|
if [ -f "$PREVIEW_DIR/post_install.py" ]; then
|
|
41
42
|
echo "执行:python $PREVIEW_DIR/post_install.py"
|
|
42
43
|
python "$PREVIEW_DIR/post_install.py" || echo "post_install.py 执行失败"
|
|
44
|
+
elif [ -f "$SOURCE_DIR/post_app_install.py" ]; then
|
|
45
|
+
echo "执行:python $SOURCE_DIR/post_app_install.py $ROOT_DIR"
|
|
46
|
+
python "$SOURCE_DIR/post_app_install.py" "$ROOT_DIR" || echo "post_app_install.py 执行失败"
|
|
43
47
|
fi
|
|
44
48
|
|
|
45
49
|
echo "==================== 依赖安装完成!====================\n"
|
|
@@ -18,7 +18,7 @@ EXPO_DIR="expo"
|
|
|
18
18
|
EXPO_PORT="${DEPLOY_RUN_PORT:-${EXPO_PORT:-<%= port %>}}"
|
|
19
19
|
COZE_HARDWARE_DID="${COZE_HARDWARE_DID:-}"
|
|
20
20
|
if [ -n "${EXPO_PORT:-}" ] && [ -n "${COZE_HARDWARE_DID}" ]; then
|
|
21
|
-
WEB_URL="${COZE_PROJECT_DOMAIN_DEFAULT:-https://
|
|
21
|
+
WEB_URL="${COZE_PROJECT_DOMAIN_DEFAULT:-https://preview-${COZE_HARDWARE_DID}-${EXPO_PORT}.dev.coze.site}"
|
|
22
22
|
else
|
|
23
23
|
WEB_URL="${COZE_PROJECT_DOMAIN_DEFAULT:-http://127.0.0.1:${SERVER_PORT}}"
|
|
24
24
|
fi
|
|
@@ -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",
|
|
@@ -95,5 +95,10 @@
|
|
|
95
95
|
"packageManager": "pnpm@9.0.0",
|
|
96
96
|
"engines": {
|
|
97
97
|
"pnpm": ">=9.0.0"
|
|
98
|
+
},
|
|
99
|
+
"pnpm": {
|
|
100
|
+
"overrides": {
|
|
101
|
+
"sharp": "0.35.3"
|
|
102
|
+
}
|
|
98
103
|
}
|
|
99
104
|
}
|
|
@@ -4,6 +4,9 @@ settings:
|
|
|
4
4
|
autoInstallPeers: true
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
|
+
overrides:
|
|
8
|
+
sharp: 0.35.3
|
|
9
|
+
|
|
7
10
|
importers:
|
|
8
11
|
|
|
9
12
|
.:
|
|
@@ -136,7 +139,7 @@ importers:
|
|
|
136
139
|
version: 0.468.0(react@19.2.3)
|
|
137
140
|
next:
|
|
138
141
|
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)
|
|
142
|
+
version: 16.1.1(@babel/core@7.28.6)(@types/node@20.19.30)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
140
143
|
next-themes:
|
|
141
144
|
specifier: ^0.4.6
|
|
142
145
|
version: 0.4.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
@@ -1175,24 +1178,12 @@ packages:
|
|
|
1175
1178
|
resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==}
|
|
1176
1179
|
engines: {node: '>=18'}
|
|
1177
1180
|
|
|
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
|
-
|
|
1184
1181
|
'@img/sharp-darwin-arm64@0.35.3':
|
|
1185
1182
|
resolution: {integrity: sha512-RMnFX7YQsMoh7lWfcM4NEHHymBX/rLuKNPVM84XE9ONPcaSCDgE7CHIHpSgPcO2xcRthgBy1HfNO319mwhIAkg==}
|
|
1186
1183
|
engines: {node: '>=20.9.0'}
|
|
1187
1184
|
cpu: [arm64]
|
|
1188
1185
|
os: [darwin]
|
|
1189
1186
|
|
|
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
|
-
|
|
1196
1187
|
'@img/sharp-darwin-x64@0.35.3':
|
|
1197
1188
|
resolution: {integrity: sha512-Xo+5uFBtLN0BKqieTxiFzFPQAUlBbbH5iBKyRX/z1JrbnYsHTfKJnUfL8+p2TPXr1pXqao4eeL4Rl144uDpK9w==}
|
|
1198
1189
|
engines: {node: '>=20.9.0'}
|
|
@@ -1204,129 +1195,64 @@ packages:
|
|
|
1204
1195
|
engines: {node: '>=20.9.0'}
|
|
1205
1196
|
os: [freebsd]
|
|
1206
1197
|
|
|
1207
|
-
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
1208
|
-
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
1209
|
-
cpu: [arm64]
|
|
1210
|
-
os: [darwin]
|
|
1211
|
-
|
|
1212
1198
|
'@img/sharp-libvips-darwin-arm64@1.3.2':
|
|
1213
1199
|
resolution: {integrity: sha512-9J6ypZFpQBj4YnePGoq/S38w6nz+vqg5WZLrLGY4YuSemdMq47GMLBPO42MzwdGwpg/agZ7xzZcFHa48xlywfg==}
|
|
1214
1200
|
cpu: [arm64]
|
|
1215
1201
|
os: [darwin]
|
|
1216
1202
|
|
|
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
|
-
|
|
1222
1203
|
'@img/sharp-libvips-darwin-x64@1.3.2':
|
|
1223
1204
|
resolution: {integrity: sha512-m2pW1n6cns9VaubNwsZ+c3CRYjxNQWgJ5gPlnL1nbBcpkBvFm6SCFN5o0psFHI8w9n11NKhFkeEDns98tiqbEw==}
|
|
1224
1205
|
cpu: [x64]
|
|
1225
1206
|
os: [darwin]
|
|
1226
1207
|
|
|
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
|
-
|
|
1233
1208
|
'@img/sharp-libvips-linux-arm64@1.3.2':
|
|
1234
1209
|
resolution: {integrity: sha512-dqVSFynCox4C/J8kT16V7SIFAns0IjgLwkvYT7p8LQVmJ5OS5b6tI9IGflxTeuBS//zXeFIUbwt5dwxyZ17cnA==}
|
|
1235
1210
|
cpu: [arm64]
|
|
1236
1211
|
os: [linux]
|
|
1237
1212
|
libc: [glibc]
|
|
1238
1213
|
|
|
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
|
-
|
|
1245
1214
|
'@img/sharp-libvips-linux-arm@1.3.2':
|
|
1246
1215
|
resolution: {integrity: sha512-1eMLzy92I4J6rmi4mAT8yC3HxOtniyGELlzGbNMLLeqe052ahFQ0h6LFq+lh5DsDIdYViIDst08abvSbcEdLXQ==}
|
|
1247
1216
|
cpu: [arm]
|
|
1248
1217
|
os: [linux]
|
|
1249
1218
|
libc: [glibc]
|
|
1250
1219
|
|
|
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
|
-
|
|
1257
1220
|
'@img/sharp-libvips-linux-ppc64@1.3.2':
|
|
1258
1221
|
resolution: {integrity: sha512-3z0NHDxD6n5I9gc05U1eW1AyRm+Gznzq3naMrthPNqE6oYykcogW0l/jfpJdjYnuNl8R7yI9pNbE1XiUeyq0Aw==}
|
|
1259
1222
|
cpu: [ppc64]
|
|
1260
1223
|
os: [linux]
|
|
1261
1224
|
libc: [glibc]
|
|
1262
1225
|
|
|
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
|
-
|
|
1269
1226
|
'@img/sharp-libvips-linux-riscv64@1.3.2':
|
|
1270
1227
|
resolution: {integrity: sha512-bsb4rI+NldGOsXuej2r8OdSS8+zXDVaCWxyWrcv6kneTOlgAHtZABRzBBCwdsPiD90J4myNJuHpg6kA20ImW/w==}
|
|
1271
1228
|
cpu: [riscv64]
|
|
1272
1229
|
os: [linux]
|
|
1273
1230
|
libc: [glibc]
|
|
1274
1231
|
|
|
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
|
-
|
|
1281
1232
|
'@img/sharp-libvips-linux-s390x@1.3.2':
|
|
1282
1233
|
resolution: {integrity: sha512-/ABshyj8gCpyIrNXnHn4LorDJ0HHm1VhXPBlxZ8zAtfVPAaSafXPGn+sUSIRiwaSBy0mmFjSjiXI5mkcwdChKQ==}
|
|
1283
1234
|
cpu: [s390x]
|
|
1284
1235
|
os: [linux]
|
|
1285
1236
|
libc: [glibc]
|
|
1286
1237
|
|
|
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
|
-
|
|
1293
1238
|
'@img/sharp-libvips-linux-x64@1.3.2':
|
|
1294
1239
|
resolution: {integrity: sha512-ITPEtgffGJ0S6G9dRyw/366tJQqFRcHWPHhC+Stpg3Z8AEMrDrTr2lhdz4f/Y/HMbRh//7Z5mBzEpVdi62Oc3w==}
|
|
1295
1240
|
cpu: [x64]
|
|
1296
1241
|
os: [linux]
|
|
1297
1242
|
libc: [glibc]
|
|
1298
1243
|
|
|
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
|
-
|
|
1305
1244
|
'@img/sharp-libvips-linuxmusl-arm64@1.3.2':
|
|
1306
1245
|
resolution: {integrity: sha512-zE9EdiUzUmg5mDT5a1rk5fYJ6GWPloTwWBYDS14naqHsL+EaMpDj1AWnpLgh3u0YCORv2Tt50wrcrpYqkP97Kw==}
|
|
1307
1246
|
cpu: [arm64]
|
|
1308
1247
|
os: [linux]
|
|
1309
1248
|
libc: [musl]
|
|
1310
1249
|
|
|
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
|
-
|
|
1317
1250
|
'@img/sharp-libvips-linuxmusl-x64@1.3.2':
|
|
1318
1251
|
resolution: {integrity: sha512-m0lrLiUt+lBYnCFr8qV/65yMR4E/c7/wf78I5eKTdkEakFAlZ9QlzEM3QIhhAwVeUhLAHLcCq7a7Vszq/oFNZQ==}
|
|
1319
1252
|
cpu: [x64]
|
|
1320
1253
|
os: [linux]
|
|
1321
1254
|
libc: [musl]
|
|
1322
1255
|
|
|
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
|
-
|
|
1330
1256
|
'@img/sharp-linux-arm64@0.35.3':
|
|
1331
1257
|
resolution: {integrity: sha512-QgKDspHPnrU+GQ55XPhGwyhC8acLVOOSyAvo1oVfFmrIXLkDNmGWzAfDZ4xK8oSA1qBQrALcHX0G5UZni/SuFQ==}
|
|
1332
1258
|
engines: {node: '>=20.9.0'}
|
|
@@ -1334,13 +1260,6 @@ packages:
|
|
|
1334
1260
|
os: [linux]
|
|
1335
1261
|
libc: [glibc]
|
|
1336
1262
|
|
|
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
|
-
|
|
1344
1263
|
'@img/sharp-linux-arm@0.35.3':
|
|
1345
1264
|
resolution: {integrity: sha512-affVWCTLooy8TSxbDx2qkzuDeaWLNVBA+P//FNBirHsXpP2fuBhk5AuboYUnrDnzoXes8GFjpTx0SBFOCRg+FA==}
|
|
1346
1265
|
engines: {node: '>=20.9.0'}
|
|
@@ -1348,13 +1267,6 @@ packages:
|
|
|
1348
1267
|
os: [linux]
|
|
1349
1268
|
libc: [glibc]
|
|
1350
1269
|
|
|
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
|
-
|
|
1358
1270
|
'@img/sharp-linux-ppc64@0.35.3':
|
|
1359
1271
|
resolution: {integrity: sha512-sMd8rDxmpLOwv/7N44klFjOD5DUO7FLdjiXDI0hoxYaf7Ar262dQIEkosE98bps+5HPLtp/EvNqeqQtOycP/IA==}
|
|
1360
1272
|
engines: {node: '>=20.9.0'}
|
|
@@ -1362,13 +1274,6 @@ packages:
|
|
|
1362
1274
|
os: [linux]
|
|
1363
1275
|
libc: [glibc]
|
|
1364
1276
|
|
|
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
|
-
|
|
1372
1277
|
'@img/sharp-linux-riscv64@0.35.3':
|
|
1373
1278
|
resolution: {integrity: sha512-0Eob78yjlYPfL5vMNWAW55l3R9Y6BQS/gOfe0ZcP9mEz9ohhKSt4im1hayiknXgf8AWrFqMvJcKIdmLmEe7yeQ==}
|
|
1374
1279
|
engines: {node: '>=20.9.0'}
|
|
@@ -1376,13 +1281,6 @@ packages:
|
|
|
1376
1281
|
os: [linux]
|
|
1377
1282
|
libc: [glibc]
|
|
1378
1283
|
|
|
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
|
-
|
|
1386
1284
|
'@img/sharp-linux-s390x@0.35.3':
|
|
1387
1285
|
resolution: {integrity: sha512-KgAxQ0DxpNOq1rG2t5cgTgShJFGSuU7XO45cqC+1NVOuZnP6tlgZRuSYOfNupGkHID0o3cJOsw4DVeJpMovcGw==}
|
|
1388
1286
|
engines: {node: '>=20.9.0'}
|
|
@@ -1390,13 +1288,6 @@ packages:
|
|
|
1390
1288
|
os: [linux]
|
|
1391
1289
|
libc: [glibc]
|
|
1392
1290
|
|
|
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
|
-
|
|
1400
1291
|
'@img/sharp-linux-x64@0.35.3':
|
|
1401
1292
|
resolution: {integrity: sha512-8pqvxubL2PGdhlPy6GLqzDYMUjyRmKAwKHYKixpdJYBUK7PJ0C029XdsnpFIdgRZG68fZiGdHVWcKPvtiPB4cA==}
|
|
1402
1293
|
engines: {node: '>=20.9.0'}
|
|
@@ -1404,13 +1295,6 @@ packages:
|
|
|
1404
1295
|
os: [linux]
|
|
1405
1296
|
libc: [glibc]
|
|
1406
1297
|
|
|
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
|
-
|
|
1414
1298
|
'@img/sharp-linuxmusl-arm64@0.35.3':
|
|
1415
1299
|
resolution: {integrity: sha512-Vz0iQjzzcSX3HCbfwFfCSG/9SCIqyO0mH2sXyiHaAYfBk0cRsCWXRyQYX0ovCK/PAQBbTzQ0dsPQHh5MAFL59w==}
|
|
1416
1300
|
engines: {node: '>=20.9.0'}
|
|
@@ -1418,13 +1302,6 @@ packages:
|
|
|
1418
1302
|
os: [linux]
|
|
1419
1303
|
libc: [musl]
|
|
1420
1304
|
|
|
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
|
-
|
|
1428
1305
|
'@img/sharp-linuxmusl-x64@0.35.3':
|
|
1429
1306
|
resolution: {integrity: sha512-6O1NPKcDVj9QEdg7Hx549EX8U0rp6yXQERqru6yRN7fGBn32UvIRJUlWnk+8xDCiG76hXVBbX82NZ/ZKr0euIg==}
|
|
1430
1307
|
engines: {node: '>=20.9.0'}
|
|
@@ -1432,11 +1309,6 @@ packages:
|
|
|
1432
1309
|
os: [linux]
|
|
1433
1310
|
libc: [musl]
|
|
1434
1311
|
|
|
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
|
-
|
|
1440
1312
|
'@img/sharp-wasm32@0.35.3':
|
|
1441
1313
|
resolution: {integrity: sha512-cZ0XkcYGpHZkqW6iCkqTcmUC0CD9DhD5d/qeZlZkfRBn6GnHniZXLUo5+9xw8Iv76YE6LQFN9YNBlKREcCG76w==}
|
|
1442
1314
|
engines: {node: '>=20.9.0'}
|
|
@@ -1446,36 +1318,18 @@ packages:
|
|
|
1446
1318
|
engines: {node: '>=20.9.0'}
|
|
1447
1319
|
cpu: [wasm32]
|
|
1448
1320
|
|
|
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
|
-
|
|
1455
1321
|
'@img/sharp-win32-arm64@0.35.3':
|
|
1456
1322
|
resolution: {integrity: sha512-4bPwFdMbeC4JQ8L8LOyWp6nsHcboP5fxkp6iPOXz2Vg49R42TuMs2whkJ5OAP4/Ul035qOzy0AecOF9VOscn4w==}
|
|
1457
1323
|
engines: {node: '>=20.9.0'}
|
|
1458
1324
|
cpu: [arm64]
|
|
1459
1325
|
os: [win32]
|
|
1460
1326
|
|
|
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
|
-
|
|
1467
1327
|
'@img/sharp-win32-ia32@0.35.3':
|
|
1468
1328
|
resolution: {integrity: sha512-r53mXsBN6lFUDiST764SvgwUdHAqM4rPAiDzAmf4fLoB6X/rkfyTrLCg6+g17wJJiCmB3JYgHuUldCWUIRFSXw==}
|
|
1469
1329
|
engines: {node: ^20.9.0}
|
|
1470
1330
|
cpu: [ia32]
|
|
1471
1331
|
os: [win32]
|
|
1472
1332
|
|
|
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
|
-
|
|
1479
1333
|
'@img/sharp-win32-x64@0.35.3':
|
|
1480
1334
|
resolution: {integrity: sha512-D4y1vNeZrIIJCN+uHaWVtH86B+aCrdMYYjicy9pXHvbGZeGYLLSd3wdVuC37FxVXlU1ARsk84eKWfWMXGYEqvA==}
|
|
1481
1335
|
engines: {node: '>=20.9.0'}
|
|
@@ -1603,28 +1457,24 @@ packages:
|
|
|
1603
1457
|
engines: {node: '>= 10'}
|
|
1604
1458
|
cpu: [arm64]
|
|
1605
1459
|
os: [linux]
|
|
1606
|
-
libc: [glibc]
|
|
1607
1460
|
|
|
1608
1461
|
'@next/swc-linux-arm64-musl@16.1.1':
|
|
1609
1462
|
resolution: {integrity: sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==}
|
|
1610
1463
|
engines: {node: '>= 10'}
|
|
1611
1464
|
cpu: [arm64]
|
|
1612
1465
|
os: [linux]
|
|
1613
|
-
libc: [musl]
|
|
1614
1466
|
|
|
1615
1467
|
'@next/swc-linux-x64-gnu@16.1.1':
|
|
1616
1468
|
resolution: {integrity: sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==}
|
|
1617
1469
|
engines: {node: '>= 10'}
|
|
1618
1470
|
cpu: [x64]
|
|
1619
1471
|
os: [linux]
|
|
1620
|
-
libc: [glibc]
|
|
1621
1472
|
|
|
1622
1473
|
'@next/swc-linux-x64-musl@16.1.1':
|
|
1623
1474
|
resolution: {integrity: sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==}
|
|
1624
1475
|
engines: {node: '>= 10'}
|
|
1625
1476
|
cpu: [x64]
|
|
1626
1477
|
os: [linux]
|
|
1627
|
-
libc: [musl]
|
|
1628
1478
|
|
|
1629
1479
|
'@next/swc-win32-arm64-msvc@16.1.1':
|
|
1630
1480
|
resolution: {integrity: sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==}
|
|
@@ -5770,10 +5620,6 @@ packages:
|
|
|
5770
5620
|
resolution: {integrity: sha512-zOXNAIFclguSYmmoibyXyKiYA6qjEJtXDSvloAMziSREW9Q0R/dLqBUYdb81lOejmZkDYuZApGabbMLH7G8qvQ==}
|
|
5771
5621
|
hasBin: true
|
|
5772
5622
|
|
|
5773
|
-
sharp@0.34.5:
|
|
5774
|
-
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
5775
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
5776
|
-
|
|
5777
5623
|
sharp@0.35.3:
|
|
5778
5624
|
resolution: {integrity: sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==}
|
|
5779
5625
|
engines: {node: '>=20.9.0'}
|
|
@@ -7546,21 +7392,11 @@ snapshots:
|
|
|
7546
7392
|
|
|
7547
7393
|
'@img/colour@1.1.0': {}
|
|
7548
7394
|
|
|
7549
|
-
'@img/sharp-darwin-arm64@0.34.5':
|
|
7550
|
-
optionalDependencies:
|
|
7551
|
-
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
7552
|
-
optional: true
|
|
7553
|
-
|
|
7554
7395
|
'@img/sharp-darwin-arm64@0.35.3':
|
|
7555
7396
|
optionalDependencies:
|
|
7556
7397
|
'@img/sharp-libvips-darwin-arm64': 1.3.2
|
|
7557
7398
|
optional: true
|
|
7558
7399
|
|
|
7559
|
-
'@img/sharp-darwin-x64@0.34.5':
|
|
7560
|
-
optionalDependencies:
|
|
7561
|
-
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
7562
|
-
optional: true
|
|
7563
|
-
|
|
7564
7400
|
'@img/sharp-darwin-x64@0.35.3':
|
|
7565
7401
|
optionalDependencies:
|
|
7566
7402
|
'@img/sharp-libvips-darwin-x64': 1.3.2
|
|
@@ -7571,151 +7407,76 @@ snapshots:
|
|
|
7571
7407
|
'@img/sharp-wasm32': 0.35.3
|
|
7572
7408
|
optional: true
|
|
7573
7409
|
|
|
7574
|
-
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
7575
|
-
optional: true
|
|
7576
|
-
|
|
7577
7410
|
'@img/sharp-libvips-darwin-arm64@1.3.2':
|
|
7578
7411
|
optional: true
|
|
7579
7412
|
|
|
7580
|
-
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
7581
|
-
optional: true
|
|
7582
|
-
|
|
7583
7413
|
'@img/sharp-libvips-darwin-x64@1.3.2':
|
|
7584
7414
|
optional: true
|
|
7585
7415
|
|
|
7586
|
-
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
7587
|
-
optional: true
|
|
7588
|
-
|
|
7589
7416
|
'@img/sharp-libvips-linux-arm64@1.3.2':
|
|
7590
7417
|
optional: true
|
|
7591
7418
|
|
|
7592
|
-
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
7593
|
-
optional: true
|
|
7594
|
-
|
|
7595
7419
|
'@img/sharp-libvips-linux-arm@1.3.2':
|
|
7596
7420
|
optional: true
|
|
7597
7421
|
|
|
7598
|
-
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
7599
|
-
optional: true
|
|
7600
|
-
|
|
7601
7422
|
'@img/sharp-libvips-linux-ppc64@1.3.2':
|
|
7602
7423
|
optional: true
|
|
7603
7424
|
|
|
7604
|
-
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
7605
|
-
optional: true
|
|
7606
|
-
|
|
7607
7425
|
'@img/sharp-libvips-linux-riscv64@1.3.2':
|
|
7608
7426
|
optional: true
|
|
7609
7427
|
|
|
7610
|
-
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
7611
|
-
optional: true
|
|
7612
|
-
|
|
7613
7428
|
'@img/sharp-libvips-linux-s390x@1.3.2':
|
|
7614
7429
|
optional: true
|
|
7615
7430
|
|
|
7616
|
-
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
7617
|
-
optional: true
|
|
7618
|
-
|
|
7619
7431
|
'@img/sharp-libvips-linux-x64@1.3.2':
|
|
7620
7432
|
optional: true
|
|
7621
7433
|
|
|
7622
|
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
7623
|
-
optional: true
|
|
7624
|
-
|
|
7625
7434
|
'@img/sharp-libvips-linuxmusl-arm64@1.3.2':
|
|
7626
7435
|
optional: true
|
|
7627
7436
|
|
|
7628
|
-
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
7629
|
-
optional: true
|
|
7630
|
-
|
|
7631
7437
|
'@img/sharp-libvips-linuxmusl-x64@1.3.2':
|
|
7632
7438
|
optional: true
|
|
7633
7439
|
|
|
7634
|
-
'@img/sharp-linux-arm64@0.34.5':
|
|
7635
|
-
optionalDependencies:
|
|
7636
|
-
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
7637
|
-
optional: true
|
|
7638
|
-
|
|
7639
7440
|
'@img/sharp-linux-arm64@0.35.3':
|
|
7640
7441
|
optionalDependencies:
|
|
7641
7442
|
'@img/sharp-libvips-linux-arm64': 1.3.2
|
|
7642
7443
|
optional: true
|
|
7643
7444
|
|
|
7644
|
-
'@img/sharp-linux-arm@0.34.5':
|
|
7645
|
-
optionalDependencies:
|
|
7646
|
-
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
7647
|
-
optional: true
|
|
7648
|
-
|
|
7649
7445
|
'@img/sharp-linux-arm@0.35.3':
|
|
7650
7446
|
optionalDependencies:
|
|
7651
7447
|
'@img/sharp-libvips-linux-arm': 1.3.2
|
|
7652
7448
|
optional: true
|
|
7653
7449
|
|
|
7654
|
-
'@img/sharp-linux-ppc64@0.34.5':
|
|
7655
|
-
optionalDependencies:
|
|
7656
|
-
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
7657
|
-
optional: true
|
|
7658
|
-
|
|
7659
7450
|
'@img/sharp-linux-ppc64@0.35.3':
|
|
7660
7451
|
optionalDependencies:
|
|
7661
7452
|
'@img/sharp-libvips-linux-ppc64': 1.3.2
|
|
7662
7453
|
optional: true
|
|
7663
7454
|
|
|
7664
|
-
'@img/sharp-linux-riscv64@0.34.5':
|
|
7665
|
-
optionalDependencies:
|
|
7666
|
-
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
7667
|
-
optional: true
|
|
7668
|
-
|
|
7669
7455
|
'@img/sharp-linux-riscv64@0.35.3':
|
|
7670
7456
|
optionalDependencies:
|
|
7671
7457
|
'@img/sharp-libvips-linux-riscv64': 1.3.2
|
|
7672
7458
|
optional: true
|
|
7673
7459
|
|
|
7674
|
-
'@img/sharp-linux-s390x@0.34.5':
|
|
7675
|
-
optionalDependencies:
|
|
7676
|
-
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
7677
|
-
optional: true
|
|
7678
|
-
|
|
7679
7460
|
'@img/sharp-linux-s390x@0.35.3':
|
|
7680
7461
|
optionalDependencies:
|
|
7681
7462
|
'@img/sharp-libvips-linux-s390x': 1.3.2
|
|
7682
7463
|
optional: true
|
|
7683
7464
|
|
|
7684
|
-
'@img/sharp-linux-x64@0.34.5':
|
|
7685
|
-
optionalDependencies:
|
|
7686
|
-
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
7687
|
-
optional: true
|
|
7688
|
-
|
|
7689
7465
|
'@img/sharp-linux-x64@0.35.3':
|
|
7690
7466
|
optionalDependencies:
|
|
7691
7467
|
'@img/sharp-libvips-linux-x64': 1.3.2
|
|
7692
7468
|
optional: true
|
|
7693
7469
|
|
|
7694
|
-
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
7695
|
-
optionalDependencies:
|
|
7696
|
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
7697
|
-
optional: true
|
|
7698
|
-
|
|
7699
7470
|
'@img/sharp-linuxmusl-arm64@0.35.3':
|
|
7700
7471
|
optionalDependencies:
|
|
7701
7472
|
'@img/sharp-libvips-linuxmusl-arm64': 1.3.2
|
|
7702
7473
|
optional: true
|
|
7703
7474
|
|
|
7704
|
-
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
7705
|
-
optionalDependencies:
|
|
7706
|
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
7707
|
-
optional: true
|
|
7708
|
-
|
|
7709
7475
|
'@img/sharp-linuxmusl-x64@0.35.3':
|
|
7710
7476
|
optionalDependencies:
|
|
7711
7477
|
'@img/sharp-libvips-linuxmusl-x64': 1.3.2
|
|
7712
7478
|
optional: true
|
|
7713
7479
|
|
|
7714
|
-
'@img/sharp-wasm32@0.34.5':
|
|
7715
|
-
dependencies:
|
|
7716
|
-
'@emnapi/runtime': 1.11.3
|
|
7717
|
-
optional: true
|
|
7718
|
-
|
|
7719
7480
|
'@img/sharp-wasm32@0.35.3':
|
|
7720
7481
|
dependencies:
|
|
7721
7482
|
'@emnapi/runtime': 1.11.3
|
|
@@ -7726,21 +7487,12 @@ snapshots:
|
|
|
7726
7487
|
'@img/sharp-wasm32': 0.35.3
|
|
7727
7488
|
optional: true
|
|
7728
7489
|
|
|
7729
|
-
'@img/sharp-win32-arm64@0.34.5':
|
|
7730
|
-
optional: true
|
|
7731
|
-
|
|
7732
7490
|
'@img/sharp-win32-arm64@0.35.3':
|
|
7733
7491
|
optional: true
|
|
7734
7492
|
|
|
7735
|
-
'@img/sharp-win32-ia32@0.34.5':
|
|
7736
|
-
optional: true
|
|
7737
|
-
|
|
7738
7493
|
'@img/sharp-win32-ia32@0.35.3':
|
|
7739
7494
|
optional: true
|
|
7740
7495
|
|
|
7741
|
-
'@img/sharp-win32-x64@0.34.5':
|
|
7742
|
-
optional: true
|
|
7743
|
-
|
|
7744
7496
|
'@img/sharp-win32-x64@0.35.3':
|
|
7745
7497
|
optional: true
|
|
7746
7498
|
|
|
@@ -11532,7 +11284,7 @@ snapshots:
|
|
|
11532
11284
|
react: 19.2.3
|
|
11533
11285
|
react-dom: 19.2.3(react@19.2.3)
|
|
11534
11286
|
|
|
11535
|
-
next@16.1.1(@babel/core@7.28.6)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
11287
|
+
next@16.1.1(@babel/core@7.28.6)(@types/node@20.19.30)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
11536
11288
|
dependencies:
|
|
11537
11289
|
'@next/env': 16.1.1
|
|
11538
11290
|
'@swc/helpers': 0.5.15
|
|
@@ -11551,9 +11303,10 @@ snapshots:
|
|
|
11551
11303
|
'@next/swc-linux-x64-musl': 16.1.1
|
|
11552
11304
|
'@next/swc-win32-arm64-msvc': 16.1.1
|
|
11553
11305
|
'@next/swc-win32-x64-msvc': 16.1.1
|
|
11554
|
-
sharp: 0.
|
|
11306
|
+
sharp: 0.35.3(@types/node@20.19.30)
|
|
11555
11307
|
transitivePeerDependencies:
|
|
11556
11308
|
- '@babel/core'
|
|
11309
|
+
- '@types/node'
|
|
11557
11310
|
- babel-plugin-macros
|
|
11558
11311
|
|
|
11559
11312
|
node-domexception@1.0.0: {}
|
|
@@ -12319,38 +12072,6 @@ snapshots:
|
|
|
12319
12072
|
- supports-color
|
|
12320
12073
|
- typescript
|
|
12321
12074
|
|
|
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
|
-
|
|
12354
12075
|
sharp@0.35.3(@types/node@20.19.30):
|
|
12355
12076
|
dependencies:
|
|
12356
12077
|
'@img/colour': 1.1.0
|
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
|
|
2117
|
+
var version = "0.1.3";
|
|
2118
2118
|
var description = "coze coding devtools cli";
|
|
2119
2119
|
var license = "MIT";
|
|
2120
2120
|
var author = "fanwenjie.fe@bytedance.com";
|