@coze-arch/cli 0.0.37 → 0.0.39-alpha.bdff32
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 +69 -104
- package/docs/deploy.md +181 -0
- package/lib/__templates__/expo/.coze +5 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_build.ps1 +10 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_build.sh +4 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.ps1 +74 -0
- package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +108 -19
- package/lib/__templates__/expo/.cozeproj/scripts/prod_build.ps1 +15 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.ps1 +10 -0
- package/lib/__templates__/expo/.cozeproj/scripts/prod_run.sh +1 -1
- package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
- package/lib/__templates__/expo/.cozeproj/scripts/validate.ps1 +7 -0
- package/lib/__templates__/expo/client/metro.config.js +3 -1
- package/lib/__templates__/expo/pnpm-lock.yaml +5 -5
- package/lib/__templates__/expo/server/package.json +2 -2
- package/lib/__templates__/expo/server/src/index.ts +1 -1
- package/lib/__templates__/expo/template.config.js +11 -2
- package/lib/__templates__/native-static/.coze +4 -2
- package/lib/__templates__/native-static/scripts/serve.ps1 +7 -0
- package/lib/__templates__/nextjs/.coze +5 -0
- package/lib/__templates__/nextjs/package.json +7 -2
- package/lib/__templates__/nextjs/pnpm-lock.yaml +59 -334
- package/lib/__templates__/nextjs/scripts/build.ps1 +16 -0
- package/lib/__templates__/nextjs/scripts/dev.ps1 +63 -0
- package/lib/__templates__/nextjs/scripts/dev.sh +234 -7
- package/lib/__templates__/nextjs/scripts/prepare.ps1 +18 -0
- package/lib/__templates__/nextjs/scripts/start.ps1 +11 -0
- package/lib/__templates__/nextjs/scripts/validate.ps1 +8 -0
- package/lib/__templates__/nextjs/template.config.js +4 -2
- package/lib/__templates__/nuxt-vue/.coze +5 -0
- package/lib/__templates__/nuxt-vue/package.json +1 -1
- package/lib/__templates__/nuxt-vue/pnpm-lock.yaml +5 -5
- package/lib/__templates__/nuxt-vue/scripts/build.ps1 +12 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.ps1 +63 -0
- package/lib/__templates__/nuxt-vue/scripts/dev.sh +232 -3
- package/lib/__templates__/nuxt-vue/scripts/prepare.ps1 +12 -0
- package/lib/__templates__/nuxt-vue/scripts/start.ps1 +11 -0
- package/lib/__templates__/nuxt-vue/scripts/validate.ps1 +8 -0
- package/lib/__templates__/phaser/.coze +18 -0
- package/lib/__templates__/phaser/README.md +45 -0
- package/lib/__templates__/phaser/_gitignore +23 -0
- package/lib/__templates__/phaser/_npmrc +14 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0001.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0002.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0003.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0004.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0005.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0006.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0007.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0008.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0009.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0010.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0011.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0012.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0013.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0014.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0015.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0016.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0017.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0018.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0019.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0020.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0021.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0022.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0023.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/frame_0024.png +0 -0
- package/lib/__templates__/phaser/assets/image_sequence/coze-game-loading/manifest.json +11 -0
- package/lib/__templates__/phaser/debug-runtime/flow-graph.json +20 -0
- package/lib/__templates__/phaser/index.html +12 -0
- package/lib/__templates__/phaser/package.json +31 -0
- package/lib/__templates__/phaser/pnpm-lock.yaml +661 -0
- package/lib/__templates__/phaser/scripts/build.ps1 +12 -0
- package/lib/__templates__/phaser/scripts/build.sh +8 -0
- package/lib/__templates__/phaser/scripts/dev.ps1 +49 -0
- package/lib/__templates__/phaser/scripts/dev.sh +82 -0
- package/lib/__templates__/phaser/scripts/prepare.ps1 +8 -0
- package/lib/__templates__/phaser/scripts/prepare.sh +7 -0
- package/lib/__templates__/phaser/scripts/spawn-detached.cjs +29 -0
- package/lib/__templates__/phaser/scripts/start.ps1 +49 -0
- package/lib/__templates__/phaser/scripts/start.sh +82 -0
- package/lib/__templates__/phaser/scripts/validate.ps1 +7 -0
- package/lib/__templates__/phaser/scripts/validate.sh +7 -0
- package/lib/__templates__/phaser/src/assets.ts +15 -0
- package/lib/__templates__/phaser/src/global.d.ts +39 -0
- package/lib/__templates__/phaser/src/main.ts +28 -0
- package/lib/__templates__/phaser/src/scene/BootScene.ts +213 -0
- package/lib/__templates__/phaser/src/scene/DevLoadingScene.ts +69 -0
- package/lib/__templates__/phaser/src/style.css +28 -0
- package/lib/__templates__/phaser/src/types.ts +32 -0
- package/lib/__templates__/phaser/src/utils/asset-loader.ts +319 -0
- package/lib/__templates__/phaser/src/utils/index.ts +2 -0
- package/lib/__templates__/phaser/src/utils/mark-editable.ts +13 -0
- package/lib/__templates__/phaser/template.config.js +43 -0
- package/lib/__templates__/phaser/tsconfig.json +23 -0
- package/lib/__templates__/phaser/vite.config.ts +96 -0
- package/lib/__templates__/phaser-static/.coze +15 -0
- package/lib/__templates__/phaser-static/README.md +40 -0
- package/lib/__templates__/phaser-static/_gitignore +6 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0001.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0002.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0003.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0004.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0005.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0006.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0007.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0008.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0009.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0010.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0011.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0012.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0013.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0014.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0015.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0016.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0017.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0018.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0019.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0020.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0021.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0022.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0023.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/frame_0024.png +0 -0
- package/lib/__templates__/phaser-static/assets/image_sequence/coze-game-loading/manifest.json +11 -0
- package/lib/__templates__/phaser-static/debug-runtime/flow-graph.json +20 -0
- package/lib/__templates__/phaser-static/index.html +17 -0
- package/lib/__templates__/phaser-static/scripts/serve.ps1 +7 -0
- package/lib/__templates__/phaser-static/src/assets.js +15 -0
- package/lib/__templates__/phaser-static/src/main.js +26 -0
- package/lib/__templates__/phaser-static/src/phaser.js +7 -0
- package/lib/__templates__/phaser-static/src/scene/BootScene.js +205 -0
- package/lib/__templates__/phaser-static/src/scene/DevLoadingScene.js +67 -0
- package/lib/__templates__/phaser-static/src/style.css +28 -0
- package/lib/__templates__/phaser-static/src/utils/asset-loader.js +267 -0
- package/lib/__templates__/phaser-static/src/utils/index.js +2 -0
- package/lib/__templates__/phaser-static/src/utils/mark-editable.js +3 -0
- package/lib/__templates__/phaser-static/template.config.js +35 -0
- package/lib/__templates__/pi-agent/package.json +1 -1
- package/lib/__templates__/pi-agent/pnpm-lock.yaml +5 -5
- package/lib/__templates__/taro/.coze +6 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.ps1 +10 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.ps1 +8 -0
- package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +1 -1
- package/lib/__templates__/taro/.cozeproj/scripts/dev_build.ps1 +3 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.ps1 +62 -0
- package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +178 -68
- package/lib/__templates__/taro/.cozeproj/scripts/pack.ps1 +7 -0
- package/lib/__templates__/taro/.cozeproj/scripts/validate.ps1 +7 -0
- package/lib/__templates__/taro/AGENTS.md +11 -7
- package/lib/__templates__/taro/README.md +4 -4
- package/lib/__templates__/taro/config/index.ts +10 -2
- package/lib/__templates__/taro/pnpm-lock.yaml +5 -5
- package/lib/__templates__/taro/server/package.json +1 -1
- package/lib/__templates__/taro/server/src/main.ts +8 -2
- package/lib/__templates__/templates.json +51 -1
- package/lib/__templates__/vite/.coze +5 -0
- package/lib/__templates__/vite/package.json +1 -1
- package/lib/__templates__/vite/pnpm-lock.yaml +5 -5
- package/lib/__templates__/vite/scripts/build.ps1 +16 -0
- package/lib/__templates__/vite/scripts/dev.ps1 +63 -0
- package/lib/__templates__/vite/scripts/dev.sh +110 -1
- package/lib/__templates__/vite/scripts/prepare.ps1 +18 -0
- package/lib/__templates__/vite/scripts/start.ps1 +11 -0
- package/lib/__templates__/vite/scripts/validate.ps1 +8 -0
- package/lib/__templates__/vite/template.config.js +4 -2
- package/lib/cli.js +3719 -211
- package/lib/deploy/package-project.js +244 -0
- package/lib/deploy/package-project.py +183 -0
- package/package.json +5 -2
|
@@ -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
|
.:
|
|
@@ -108,8 +111,8 @@ importers:
|
|
|
108
111
|
specifier: ^1.1.1
|
|
109
112
|
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.10))(@types/react@19.2.10)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
|
|
110
113
|
coze-coding-dev-sdk:
|
|
111
|
-
specifier: ^0.7.
|
|
112
|
-
version: 0.7.
|
|
114
|
+
specifier: ^0.7.25
|
|
115
|
+
version: 0.7.25(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0)
|
|
113
116
|
date-fns:
|
|
114
117
|
specifier: ^4.1.0
|
|
115
118
|
version: 4.1.0
|
|
@@ -135,8 +138,8 @@ importers:
|
|
|
135
138
|
specifier: ^0.468.0
|
|
136
139
|
version: 0.468.0(react@19.2.3)
|
|
137
140
|
next:
|
|
138
|
-
specifier: 16.
|
|
139
|
-
version: 16.
|
|
141
|
+
specifier: 16.3.3
|
|
142
|
+
version: 16.3.3(@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'}
|
|
@@ -1580,60 +1434,60 @@ packages:
|
|
|
1580
1434
|
'@napi-rs/wasm-runtime@0.2.12':
|
|
1581
1435
|
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
|
|
1582
1436
|
|
|
1583
|
-
'@next/env@16.
|
|
1584
|
-
resolution: {integrity: sha512-
|
|
1437
|
+
'@next/env@16.3.3':
|
|
1438
|
+
resolution: {integrity: sha512-U2eYQRwXj+dsqxV79zFqExDdatnNY/ZWc2nsJU1p/OgT7fd3dXwlF6OjYaFQCfMoeTA19PWq+wVmYgimVA+V+g==}
|
|
1585
1439
|
|
|
1586
1440
|
'@next/eslint-plugin-next@16.3.3':
|
|
1587
1441
|
resolution: {integrity: sha512-pbEh30vvjKpDoTAmo1v3q2uM4JUi8QaEBpbmjWvGfoec2jLghy/WNtvzAT0bk+Ik9oz6etjt4YjXEk4BQnicCw==}
|
|
1588
1442
|
|
|
1589
|
-
'@next/swc-darwin-arm64@16.
|
|
1590
|
-
resolution: {integrity: sha512-
|
|
1443
|
+
'@next/swc-darwin-arm64@16.3.3':
|
|
1444
|
+
resolution: {integrity: sha512-8Hiv32QJPwdV6KYJ8meR9SBA061tQqnIKTJDocvOXlEQqib0xMFpzArosuffFUUc0sslbh7QQ8a3Yey1QV8EIw==}
|
|
1591
1445
|
engines: {node: '>= 10'}
|
|
1592
1446
|
cpu: [arm64]
|
|
1593
1447
|
os: [darwin]
|
|
1594
1448
|
|
|
1595
|
-
'@next/swc-darwin-x64@16.
|
|
1596
|
-
resolution: {integrity: sha512-
|
|
1449
|
+
'@next/swc-darwin-x64@16.3.3':
|
|
1450
|
+
resolution: {integrity: sha512-A1lgKgwVchRYmSe467zdwhxT9040dd8lH+o65sL5Jet8fjB4kegw/rDyPIpYVRb6jAqwXFOJpjIXJLxQKLiE3A==}
|
|
1597
1451
|
engines: {node: '>= 10'}
|
|
1598
1452
|
cpu: [x64]
|
|
1599
1453
|
os: [darwin]
|
|
1600
1454
|
|
|
1601
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
1602
|
-
resolution: {integrity: sha512
|
|
1455
|
+
'@next/swc-linux-arm64-gnu@16.3.3':
|
|
1456
|
+
resolution: {integrity: sha512-bf0FIssMFueU2dm7vQEWWxk0c8UjKTdW0yzuh0sQsD8pf1+KCLDdaqhYZNMYGmXwEOiHAUzgBKudovIlcvvBjg==}
|
|
1603
1457
|
engines: {node: '>= 10'}
|
|
1604
1458
|
cpu: [arm64]
|
|
1605
1459
|
os: [linux]
|
|
1606
1460
|
libc: [glibc]
|
|
1607
1461
|
|
|
1608
|
-
'@next/swc-linux-arm64-musl@16.
|
|
1609
|
-
resolution: {integrity: sha512-
|
|
1462
|
+
'@next/swc-linux-arm64-musl@16.3.3':
|
|
1463
|
+
resolution: {integrity: sha512-W7viwCk9JY/cAkdz/A273rd5bb3RgT/IHwR7Upv90tunjBWNtAAhGhoecHh+teRNRSinuAFmE+l7fwZ4YKkrXg==}
|
|
1610
1464
|
engines: {node: '>= 10'}
|
|
1611
1465
|
cpu: [arm64]
|
|
1612
1466
|
os: [linux]
|
|
1613
1467
|
libc: [musl]
|
|
1614
1468
|
|
|
1615
|
-
'@next/swc-linux-x64-gnu@16.
|
|
1616
|
-
resolution: {integrity: sha512-
|
|
1469
|
+
'@next/swc-linux-x64-gnu@16.3.3':
|
|
1470
|
+
resolution: {integrity: sha512-0W46zw1N3ODpI6n0GeivHvvob1pooozgZVqy65k0mh4/7vr+FbY9+WpHzNVXjHipJf/A3FDheBG19H1s5A25rA==}
|
|
1617
1471
|
engines: {node: '>= 10'}
|
|
1618
1472
|
cpu: [x64]
|
|
1619
1473
|
os: [linux]
|
|
1620
1474
|
libc: [glibc]
|
|
1621
1475
|
|
|
1622
|
-
'@next/swc-linux-x64-musl@16.
|
|
1623
|
-
resolution: {integrity: sha512-
|
|
1476
|
+
'@next/swc-linux-x64-musl@16.3.3':
|
|
1477
|
+
resolution: {integrity: sha512-H4mBso8ZTMBPtdT0PN0pBx2ayTvQuTuvS6qT13d77yVFJXAPCxkyIhLTmdMaGTJs0krQYI/qpzdHijCeihXhbg==}
|
|
1624
1478
|
engines: {node: '>= 10'}
|
|
1625
1479
|
cpu: [x64]
|
|
1626
1480
|
os: [linux]
|
|
1627
1481
|
libc: [musl]
|
|
1628
1482
|
|
|
1629
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
1630
|
-
resolution: {integrity: sha512-
|
|
1483
|
+
'@next/swc-win32-arm64-msvc@16.3.3':
|
|
1484
|
+
resolution: {integrity: sha512-cTMUJpcEGmeywofCUfhR+rSsoE33+rVPnPEYNTNdLNlsOeEg/vktOsKUSTb28vUGqD2jkm4Zaskcwn7OCI6FQg==}
|
|
1631
1485
|
engines: {node: '>= 10'}
|
|
1632
1486
|
cpu: [arm64]
|
|
1633
1487
|
os: [win32]
|
|
1634
1488
|
|
|
1635
|
-
'@next/swc-win32-x64-msvc@16.
|
|
1636
|
-
resolution: {integrity: sha512-
|
|
1489
|
+
'@next/swc-win32-x64-msvc@16.3.3':
|
|
1490
|
+
resolution: {integrity: sha512-2VR4cTBzHXaBjnGsuH6GyJjENzQOmHeAh11uY1iUhjm3j5dEUrVJuUj+VL78jaGi/Dik8xS76zEj18BsFhlVZQ==}
|
|
1637
1491
|
engines: {node: '>= 10'}
|
|
1638
1492
|
cpu: [x64]
|
|
1639
1493
|
os: [win32]
|
|
@@ -2729,8 +2583,8 @@ packages:
|
|
|
2729
2583
|
resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
|
|
2730
2584
|
engines: {node: '>=20.0.0'}
|
|
2731
2585
|
|
|
2732
|
-
'@swc/helpers@0.5.
|
|
2733
|
-
resolution: {integrity: sha512-
|
|
2586
|
+
'@swc/helpers@0.5.23':
|
|
2587
|
+
resolution: {integrity: sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==}
|
|
2734
2588
|
|
|
2735
2589
|
'@tailwindcss/node@4.1.18':
|
|
2736
2590
|
resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
|
|
@@ -3529,8 +3383,8 @@ packages:
|
|
|
3529
3383
|
typescript:
|
|
3530
3384
|
optional: true
|
|
3531
3385
|
|
|
3532
|
-
coze-coding-dev-sdk@0.7.
|
|
3533
|
-
resolution: {integrity: sha512-
|
|
3386
|
+
coze-coding-dev-sdk@0.7.25:
|
|
3387
|
+
resolution: {integrity: sha512-5683ngikMdsRW0slGTE2OAZ1Fyj0lhkC4fGNOwsqKc35e68/gtg9KmmtK9CK9SZ+5/oIn/4wLoHXFB0gHJtO2A==}
|
|
3534
3388
|
engines: {node: '>=18.0.0'}
|
|
3535
3389
|
hasBin: true
|
|
3536
3390
|
|
|
@@ -5108,8 +4962,8 @@ packages:
|
|
|
5108
4962
|
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
5109
4963
|
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
|
|
5110
4964
|
|
|
5111
|
-
next@16.
|
|
5112
|
-
resolution: {integrity: sha512-
|
|
4965
|
+
next@16.3.3:
|
|
4966
|
+
resolution: {integrity: sha512-tuRTx1nQ/yVw83cwJBo9F+njGUgMn3UHQycreWHB8XsStvvAh1AthbI8/4IpKnFaF58F+iSiHejYOlMQ/eq83g==}
|
|
5113
4967
|
engines: {node: '>=20.9.0'}
|
|
5114
4968
|
hasBin: true
|
|
5115
4969
|
peerDependencies:
|
|
@@ -5434,8 +5288,8 @@ packages:
|
|
|
5434
5288
|
postcss-value-parser@4.2.0:
|
|
5435
5289
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
5436
5290
|
|
|
5437
|
-
postcss@8.
|
|
5438
|
-
resolution: {integrity: sha512-
|
|
5291
|
+
postcss@8.5.23:
|
|
5292
|
+
resolution: {integrity: sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==}
|
|
5439
5293
|
engines: {node: ^10 || ^12 || >=14}
|
|
5440
5294
|
|
|
5441
5295
|
postcss@8.5.6:
|
|
@@ -5770,10 +5624,6 @@ packages:
|
|
|
5770
5624
|
resolution: {integrity: sha512-zOXNAIFclguSYmmoibyXyKiYA6qjEJtXDSvloAMziSREW9Q0R/dLqBUYdb81lOejmZkDYuZApGabbMLH7G8qvQ==}
|
|
5771
5625
|
hasBin: true
|
|
5772
5626
|
|
|
5773
|
-
sharp@0.34.5:
|
|
5774
|
-
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
5775
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
5776
|
-
|
|
5777
5627
|
sharp@0.35.3:
|
|
5778
5628
|
resolution: {integrity: sha512-ej0zVHuZGHCiABXcNxeYhpRnPNPAcvbG8RMdBAhDAxLKkCRVSpK3Iyu7qbqw3JMzoj0REeM6f3tJLtVwl0023Q==}
|
|
5779
5629
|
engines: {node: '>=20.9.0'}
|
|
@@ -7546,21 +7396,11 @@ snapshots:
|
|
|
7546
7396
|
|
|
7547
7397
|
'@img/colour@1.1.0': {}
|
|
7548
7398
|
|
|
7549
|
-
'@img/sharp-darwin-arm64@0.34.5':
|
|
7550
|
-
optionalDependencies:
|
|
7551
|
-
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
7552
|
-
optional: true
|
|
7553
|
-
|
|
7554
7399
|
'@img/sharp-darwin-arm64@0.35.3':
|
|
7555
7400
|
optionalDependencies:
|
|
7556
7401
|
'@img/sharp-libvips-darwin-arm64': 1.3.2
|
|
7557
7402
|
optional: true
|
|
7558
7403
|
|
|
7559
|
-
'@img/sharp-darwin-x64@0.34.5':
|
|
7560
|
-
optionalDependencies:
|
|
7561
|
-
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
7562
|
-
optional: true
|
|
7563
|
-
|
|
7564
7404
|
'@img/sharp-darwin-x64@0.35.3':
|
|
7565
7405
|
optionalDependencies:
|
|
7566
7406
|
'@img/sharp-libvips-darwin-x64': 1.3.2
|
|
@@ -7571,151 +7411,76 @@ snapshots:
|
|
|
7571
7411
|
'@img/sharp-wasm32': 0.35.3
|
|
7572
7412
|
optional: true
|
|
7573
7413
|
|
|
7574
|
-
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
7575
|
-
optional: true
|
|
7576
|
-
|
|
7577
7414
|
'@img/sharp-libvips-darwin-arm64@1.3.2':
|
|
7578
7415
|
optional: true
|
|
7579
7416
|
|
|
7580
|
-
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
7581
|
-
optional: true
|
|
7582
|
-
|
|
7583
7417
|
'@img/sharp-libvips-darwin-x64@1.3.2':
|
|
7584
7418
|
optional: true
|
|
7585
7419
|
|
|
7586
|
-
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
7587
|
-
optional: true
|
|
7588
|
-
|
|
7589
7420
|
'@img/sharp-libvips-linux-arm64@1.3.2':
|
|
7590
7421
|
optional: true
|
|
7591
7422
|
|
|
7592
|
-
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
7593
|
-
optional: true
|
|
7594
|
-
|
|
7595
7423
|
'@img/sharp-libvips-linux-arm@1.3.2':
|
|
7596
7424
|
optional: true
|
|
7597
7425
|
|
|
7598
|
-
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
7599
|
-
optional: true
|
|
7600
|
-
|
|
7601
7426
|
'@img/sharp-libvips-linux-ppc64@1.3.2':
|
|
7602
7427
|
optional: true
|
|
7603
7428
|
|
|
7604
|
-
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
7605
|
-
optional: true
|
|
7606
|
-
|
|
7607
7429
|
'@img/sharp-libvips-linux-riscv64@1.3.2':
|
|
7608
7430
|
optional: true
|
|
7609
7431
|
|
|
7610
|
-
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
7611
|
-
optional: true
|
|
7612
|
-
|
|
7613
7432
|
'@img/sharp-libvips-linux-s390x@1.3.2':
|
|
7614
7433
|
optional: true
|
|
7615
7434
|
|
|
7616
|
-
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
7617
|
-
optional: true
|
|
7618
|
-
|
|
7619
7435
|
'@img/sharp-libvips-linux-x64@1.3.2':
|
|
7620
7436
|
optional: true
|
|
7621
7437
|
|
|
7622
|
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
7623
|
-
optional: true
|
|
7624
|
-
|
|
7625
7438
|
'@img/sharp-libvips-linuxmusl-arm64@1.3.2':
|
|
7626
7439
|
optional: true
|
|
7627
7440
|
|
|
7628
|
-
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
7629
|
-
optional: true
|
|
7630
|
-
|
|
7631
7441
|
'@img/sharp-libvips-linuxmusl-x64@1.3.2':
|
|
7632
7442
|
optional: true
|
|
7633
7443
|
|
|
7634
|
-
'@img/sharp-linux-arm64@0.34.5':
|
|
7635
|
-
optionalDependencies:
|
|
7636
|
-
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
7637
|
-
optional: true
|
|
7638
|
-
|
|
7639
7444
|
'@img/sharp-linux-arm64@0.35.3':
|
|
7640
7445
|
optionalDependencies:
|
|
7641
7446
|
'@img/sharp-libvips-linux-arm64': 1.3.2
|
|
7642
7447
|
optional: true
|
|
7643
7448
|
|
|
7644
|
-
'@img/sharp-linux-arm@0.34.5':
|
|
7645
|
-
optionalDependencies:
|
|
7646
|
-
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
7647
|
-
optional: true
|
|
7648
|
-
|
|
7649
7449
|
'@img/sharp-linux-arm@0.35.3':
|
|
7650
7450
|
optionalDependencies:
|
|
7651
7451
|
'@img/sharp-libvips-linux-arm': 1.3.2
|
|
7652
7452
|
optional: true
|
|
7653
7453
|
|
|
7654
|
-
'@img/sharp-linux-ppc64@0.34.5':
|
|
7655
|
-
optionalDependencies:
|
|
7656
|
-
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
7657
|
-
optional: true
|
|
7658
|
-
|
|
7659
7454
|
'@img/sharp-linux-ppc64@0.35.3':
|
|
7660
7455
|
optionalDependencies:
|
|
7661
7456
|
'@img/sharp-libvips-linux-ppc64': 1.3.2
|
|
7662
7457
|
optional: true
|
|
7663
7458
|
|
|
7664
|
-
'@img/sharp-linux-riscv64@0.34.5':
|
|
7665
|
-
optionalDependencies:
|
|
7666
|
-
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
7667
|
-
optional: true
|
|
7668
|
-
|
|
7669
7459
|
'@img/sharp-linux-riscv64@0.35.3':
|
|
7670
7460
|
optionalDependencies:
|
|
7671
7461
|
'@img/sharp-libvips-linux-riscv64': 1.3.2
|
|
7672
7462
|
optional: true
|
|
7673
7463
|
|
|
7674
|
-
'@img/sharp-linux-s390x@0.34.5':
|
|
7675
|
-
optionalDependencies:
|
|
7676
|
-
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
7677
|
-
optional: true
|
|
7678
|
-
|
|
7679
7464
|
'@img/sharp-linux-s390x@0.35.3':
|
|
7680
7465
|
optionalDependencies:
|
|
7681
7466
|
'@img/sharp-libvips-linux-s390x': 1.3.2
|
|
7682
7467
|
optional: true
|
|
7683
7468
|
|
|
7684
|
-
'@img/sharp-linux-x64@0.34.5':
|
|
7685
|
-
optionalDependencies:
|
|
7686
|
-
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
7687
|
-
optional: true
|
|
7688
|
-
|
|
7689
7469
|
'@img/sharp-linux-x64@0.35.3':
|
|
7690
7470
|
optionalDependencies:
|
|
7691
7471
|
'@img/sharp-libvips-linux-x64': 1.3.2
|
|
7692
7472
|
optional: true
|
|
7693
7473
|
|
|
7694
|
-
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
7695
|
-
optionalDependencies:
|
|
7696
|
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
7697
|
-
optional: true
|
|
7698
|
-
|
|
7699
7474
|
'@img/sharp-linuxmusl-arm64@0.35.3':
|
|
7700
7475
|
optionalDependencies:
|
|
7701
7476
|
'@img/sharp-libvips-linuxmusl-arm64': 1.3.2
|
|
7702
7477
|
optional: true
|
|
7703
7478
|
|
|
7704
|
-
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
7705
|
-
optionalDependencies:
|
|
7706
|
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
7707
|
-
optional: true
|
|
7708
|
-
|
|
7709
7479
|
'@img/sharp-linuxmusl-x64@0.35.3':
|
|
7710
7480
|
optionalDependencies:
|
|
7711
7481
|
'@img/sharp-libvips-linuxmusl-x64': 1.3.2
|
|
7712
7482
|
optional: true
|
|
7713
7483
|
|
|
7714
|
-
'@img/sharp-wasm32@0.34.5':
|
|
7715
|
-
dependencies:
|
|
7716
|
-
'@emnapi/runtime': 1.11.3
|
|
7717
|
-
optional: true
|
|
7718
|
-
|
|
7719
7484
|
'@img/sharp-wasm32@0.35.3':
|
|
7720
7485
|
dependencies:
|
|
7721
7486
|
'@emnapi/runtime': 1.11.3
|
|
@@ -7726,21 +7491,12 @@ snapshots:
|
|
|
7726
7491
|
'@img/sharp-wasm32': 0.35.3
|
|
7727
7492
|
optional: true
|
|
7728
7493
|
|
|
7729
|
-
'@img/sharp-win32-arm64@0.34.5':
|
|
7730
|
-
optional: true
|
|
7731
|
-
|
|
7732
7494
|
'@img/sharp-win32-arm64@0.35.3':
|
|
7733
7495
|
optional: true
|
|
7734
7496
|
|
|
7735
|
-
'@img/sharp-win32-ia32@0.34.5':
|
|
7736
|
-
optional: true
|
|
7737
|
-
|
|
7738
7497
|
'@img/sharp-win32-ia32@0.35.3':
|
|
7739
7498
|
optional: true
|
|
7740
7499
|
|
|
7741
|
-
'@img/sharp-win32-x64@0.34.5':
|
|
7742
|
-
optional: true
|
|
7743
|
-
|
|
7744
7500
|
'@img/sharp-win32-x64@0.35.3':
|
|
7745
7501
|
optional: true
|
|
7746
7502
|
|
|
@@ -7877,7 +7633,7 @@ snapshots:
|
|
|
7877
7633
|
'@tybys/wasm-util': 0.10.1
|
|
7878
7634
|
optional: true
|
|
7879
7635
|
|
|
7880
|
-
'@next/env@16.
|
|
7636
|
+
'@next/env@16.3.3': {}
|
|
7881
7637
|
|
|
7882
7638
|
'@next/eslint-plugin-next@16.3.3(eslint@9.39.2(jiti@2.6.1))':
|
|
7883
7639
|
dependencies:
|
|
@@ -7886,28 +7642,28 @@ snapshots:
|
|
|
7886
7642
|
transitivePeerDependencies:
|
|
7887
7643
|
- eslint
|
|
7888
7644
|
|
|
7889
|
-
'@next/swc-darwin-arm64@16.
|
|
7645
|
+
'@next/swc-darwin-arm64@16.3.3':
|
|
7890
7646
|
optional: true
|
|
7891
7647
|
|
|
7892
|
-
'@next/swc-darwin-x64@16.
|
|
7648
|
+
'@next/swc-darwin-x64@16.3.3':
|
|
7893
7649
|
optional: true
|
|
7894
7650
|
|
|
7895
|
-
'@next/swc-linux-arm64-gnu@16.
|
|
7651
|
+
'@next/swc-linux-arm64-gnu@16.3.3':
|
|
7896
7652
|
optional: true
|
|
7897
7653
|
|
|
7898
|
-
'@next/swc-linux-arm64-musl@16.
|
|
7654
|
+
'@next/swc-linux-arm64-musl@16.3.3':
|
|
7899
7655
|
optional: true
|
|
7900
7656
|
|
|
7901
|
-
'@next/swc-linux-x64-gnu@16.
|
|
7657
|
+
'@next/swc-linux-x64-gnu@16.3.3':
|
|
7902
7658
|
optional: true
|
|
7903
7659
|
|
|
7904
|
-
'@next/swc-linux-x64-musl@16.
|
|
7660
|
+
'@next/swc-linux-x64-musl@16.3.3':
|
|
7905
7661
|
optional: true
|
|
7906
7662
|
|
|
7907
|
-
'@next/swc-win32-arm64-msvc@16.
|
|
7663
|
+
'@next/swc-win32-arm64-msvc@16.3.3':
|
|
7908
7664
|
optional: true
|
|
7909
7665
|
|
|
7910
|
-
'@next/swc-win32-x64-msvc@16.
|
|
7666
|
+
'@next/swc-win32-x64-msvc@16.3.3':
|
|
7911
7667
|
optional: true
|
|
7912
7668
|
|
|
7913
7669
|
'@noble/ciphers@1.3.0': {}
|
|
@@ -9127,7 +8883,7 @@ snapshots:
|
|
|
9127
8883
|
- bufferutil
|
|
9128
8884
|
- utf-8-validate
|
|
9129
8885
|
|
|
9130
|
-
'@swc/helpers@0.5.
|
|
8886
|
+
'@swc/helpers@0.5.23':
|
|
9131
8887
|
dependencies:
|
|
9132
8888
|
tslib: 2.8.1
|
|
9133
8889
|
|
|
@@ -9920,7 +9676,7 @@ snapshots:
|
|
|
9920
9676
|
optionalDependencies:
|
|
9921
9677
|
typescript: 5.9.3
|
|
9922
9678
|
|
|
9923
|
-
coze-coding-dev-sdk@0.7.
|
|
9679
|
+
coze-coding-dev-sdk@0.7.25(openai@6.16.0(ws@8.19.0)(zod@4.3.6))(ws@8.19.0):
|
|
9924
9680
|
dependencies:
|
|
9925
9681
|
'@langchain/core': 1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6))
|
|
9926
9682
|
'@langchain/openai': 1.2.3(@langchain/core@1.1.17(openai@6.16.0(ws@8.19.0)(zod@4.3.6)))(ws@8.19.0)
|
|
@@ -11532,28 +11288,29 @@ snapshots:
|
|
|
11532
11288
|
react: 19.2.3
|
|
11533
11289
|
react-dom: 19.2.3(react@19.2.3)
|
|
11534
11290
|
|
|
11535
|
-
next@16.
|
|
11291
|
+
next@16.3.3(@babel/core@7.28.6)(@types/node@20.19.30)(react-dom@19.2.3(react@19.2.3))(react@19.2.3):
|
|
11536
11292
|
dependencies:
|
|
11537
|
-
'@next/env': 16.
|
|
11538
|
-
'@swc/helpers': 0.5.
|
|
11293
|
+
'@next/env': 16.3.3
|
|
11294
|
+
'@swc/helpers': 0.5.23
|
|
11539
11295
|
baseline-browser-mapping: 2.11.19
|
|
11540
11296
|
caniuse-lite: 1.0.30001766
|
|
11541
|
-
postcss: 8.
|
|
11297
|
+
postcss: 8.5.23
|
|
11542
11298
|
react: 19.2.3
|
|
11543
11299
|
react-dom: 19.2.3(react@19.2.3)
|
|
11544
11300
|
styled-jsx: 5.1.6(@babel/core@7.28.6)(react@19.2.3)
|
|
11545
11301
|
optionalDependencies:
|
|
11546
|
-
'@next/swc-darwin-arm64': 16.
|
|
11547
|
-
'@next/swc-darwin-x64': 16.
|
|
11548
|
-
'@next/swc-linux-arm64-gnu': 16.
|
|
11549
|
-
'@next/swc-linux-arm64-musl': 16.
|
|
11550
|
-
'@next/swc-linux-x64-gnu': 16.
|
|
11551
|
-
'@next/swc-linux-x64-musl': 16.
|
|
11552
|
-
'@next/swc-win32-arm64-msvc': 16.
|
|
11553
|
-
'@next/swc-win32-x64-msvc': 16.
|
|
11554
|
-
sharp: 0.
|
|
11302
|
+
'@next/swc-darwin-arm64': 16.3.3
|
|
11303
|
+
'@next/swc-darwin-x64': 16.3.3
|
|
11304
|
+
'@next/swc-linux-arm64-gnu': 16.3.3
|
|
11305
|
+
'@next/swc-linux-arm64-musl': 16.3.3
|
|
11306
|
+
'@next/swc-linux-x64-gnu': 16.3.3
|
|
11307
|
+
'@next/swc-linux-x64-musl': 16.3.3
|
|
11308
|
+
'@next/swc-win32-arm64-msvc': 16.3.3
|
|
11309
|
+
'@next/swc-win32-x64-msvc': 16.3.3
|
|
11310
|
+
sharp: 0.35.3(@types/node@20.19.30)
|
|
11555
11311
|
transitivePeerDependencies:
|
|
11556
11312
|
- '@babel/core'
|
|
11313
|
+
- '@types/node'
|
|
11557
11314
|
- babel-plugin-macros
|
|
11558
11315
|
|
|
11559
11316
|
node-domexception@1.0.0: {}
|
|
@@ -11839,7 +11596,7 @@ snapshots:
|
|
|
11839
11596
|
|
|
11840
11597
|
postcss-value-parser@4.2.0: {}
|
|
11841
11598
|
|
|
11842
|
-
postcss@8.
|
|
11599
|
+
postcss@8.5.23:
|
|
11843
11600
|
dependencies:
|
|
11844
11601
|
nanoid: 3.3.18
|
|
11845
11602
|
picocolors: 1.1.1
|
|
@@ -12319,38 +12076,6 @@ snapshots:
|
|
|
12319
12076
|
- supports-color
|
|
12320
12077
|
- typescript
|
|
12321
12078
|
|
|
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
12079
|
sharp@0.35.3(@types/node@20.19.30):
|
|
12355
12080
|
dependencies:
|
|
12356
12081
|
'@img/colour': 1.1.0
|