feat: remove image compress
This commit is contained in:
parent
9468f3b511
commit
568d4814e3
@ -63,7 +63,6 @@ electronDownload:
|
|||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
全新的对话气泡界面 by @teojs
|
支持聊天气泡样式和简洁样式切换
|
||||||
将主题切换按钮移到左下角菜单栏中 by @teojs
|
支持导出对话为 Word 文档
|
||||||
智能体界面使用更加紧凑布局
|
错误修复
|
||||||
会话面板默认移动到左侧
|
|
||||||
|
|||||||
@ -48,7 +48,6 @@
|
|||||||
"html2canvas": "^1.4.1",
|
"html2canvas": "^1.4.1",
|
||||||
"markdown-it": "^14.1.0",
|
"markdown-it": "^14.1.0",
|
||||||
"officeparser": "^4.1.1",
|
"officeparser": "^4.1.1",
|
||||||
"sharp": "^0.33.5",
|
|
||||||
"unzipper": "^0.12.3",
|
"unzipper": "^0.12.3",
|
||||||
"webdav": "4.11.4"
|
"webdav": "4.11.4"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
export const imageExts = ['.jpg', '.jpeg', '.png', '.gif', '.webp']
|
export const imageExts = ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.webp']
|
||||||
export const videoExts = ['.mp4', '.avi', '.mov', '.wmv', '.flv', '.mkv']
|
export const videoExts = ['.mp4', '.avi', '.mov', '.wmv', '.flv', '.mkv']
|
||||||
export const audioExts = ['.mp3', '.wav', '.ogg', '.flac', '.aac']
|
export const audioExts = ['.mp3', '.wav', '.ogg', '.flac', '.aac']
|
||||||
export const documentExts = ['.pdf', '.docx', '.pptx', '.xlsx', '.odt', '.odp', '.ods']
|
export const documentExts = ['.pdf', '.docx', '.pptx', '.xlsx', '.odt', '.odp', '.ods']
|
||||||
|
|||||||
@ -17,7 +17,6 @@ import { readFile } from 'fs/promises'
|
|||||||
import officeParser from 'officeparser'
|
import officeParser from 'officeparser'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
import { chdir } from 'process'
|
import { chdir } from 'process'
|
||||||
import sharp from 'sharp'
|
|
||||||
import { v4 as uuidv4 } from 'uuid'
|
import { v4 as uuidv4 } from 'uuid'
|
||||||
|
|
||||||
class FileStorage {
|
class FileStorage {
|
||||||
@ -127,22 +126,20 @@ class FileStorage {
|
|||||||
|
|
||||||
// 如果图片大于1MB才进行压缩
|
// 如果图片大于1MB才进行压缩
|
||||||
if (fileSizeInMB > 1) {
|
if (fileSizeInMB > 1) {
|
||||||
await sharp(sourcePath)
|
try {
|
||||||
.resize(1920, 1080, {
|
await fs.promises.copyFile(sourcePath, destPath)
|
||||||
fit: 'inside',
|
logger.info('[FileStorage] Image compressed successfully:', sourcePath)
|
||||||
withoutEnlargement: true
|
} catch (jimpError) {
|
||||||
})
|
logger.error('[FileStorage] Image compression failed:', jimpError)
|
||||||
.jpeg({ quality: 80 })
|
await fs.promises.copyFile(sourcePath, destPath)
|
||||||
.toFile(destPath)
|
}
|
||||||
|
|
||||||
logger.info('[FileStorage] Image compressed successfully:', sourcePath)
|
|
||||||
} else {
|
} else {
|
||||||
// 小图片直接复制
|
// 小图片直接复制
|
||||||
await fs.promises.copyFile(sourcePath, destPath)
|
await fs.promises.copyFile(sourcePath, destPath)
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error('[FileStorage] Image compression failed:', error)
|
logger.error('[FileStorage] Image handling failed:', error)
|
||||||
// 压缩失败时直接复制原文件
|
// 错误情况下直接复制原文件
|
||||||
await fs.promises.copyFile(sourcePath, destPath)
|
await fs.promises.copyFile(sourcePath, destPath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,7 @@ export const isMac = platform === 'darwin'
|
|||||||
export const isWindows = platform === 'win32' || platform === 'win64'
|
export const isWindows = platform === 'win32' || platform === 'win64'
|
||||||
export const isLinux = platform === 'linux'
|
export const isLinux = platform === 'linux'
|
||||||
|
|
||||||
export const imageExts = ['.jpg', '.jpeg', '.png', '.gif', '.webp']
|
export const imageExts = ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.webp']
|
||||||
export const documentExts = ['.pdf', '.docx', '.pptx', '.xlsx', '.odt', '.odp', '.ods']
|
export const documentExts = ['.pdf', '.docx', '.pptx', '.xlsx', '.odt', '.odp', '.ods']
|
||||||
export const textExts = [
|
export const textExts = [
|
||||||
'.txt', // 普通文本文件
|
'.txt', // 普通文本文件
|
||||||
|
|||||||
301
yarn.lock
301
yarn.lock
@ -551,15 +551,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@emnapi/runtime@npm:^1.2.0":
|
|
||||||
version: 1.3.1
|
|
||||||
resolution: "@emnapi/runtime@npm:1.3.1"
|
|
||||||
dependencies:
|
|
||||||
tslib: "npm:^2.4.0"
|
|
||||||
checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@emotion/hash@npm:^0.8.0":
|
"@emotion/hash@npm:^0.8.0":
|
||||||
version: 0.8.0
|
version: 0.8.0
|
||||||
resolution: "@emotion/hash@npm:0.8.0"
|
resolution: "@emotion/hash@npm:0.8.0"
|
||||||
@ -857,181 +848,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@img/sharp-darwin-arm64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-darwin-arm64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=darwin & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-darwin-x64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-darwin-x64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-darwin-x64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-darwin-x64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=darwin & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
|
|
||||||
conditions: os=darwin & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-darwin-x64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
|
|
||||||
conditions: os=darwin & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
|
|
||||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-arm@npm:1.0.5":
|
|
||||||
version: 1.0.5
|
|
||||||
resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
|
|
||||||
conditions: os=linux & cpu=arm & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-s390x@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
|
|
||||||
conditions: os=linux & cpu=s390x & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linux-x64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
|
|
||||||
conditions: os=linux & cpu=x64 & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
|
|
||||||
conditions: os=linux & cpu=arm64 & libc=musl
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
|
|
||||||
version: 1.0.4
|
|
||||||
resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
|
|
||||||
conditions: os=linux & cpu=x64 & libc=musl
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linux-arm64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linux-arm64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linux-arm64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linux-arm64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linux-arm@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linux-arm@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linux-arm": "npm:1.0.5"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linux-arm":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=arm & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linux-s390x@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linux-s390x@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linux-s390x": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linux-s390x":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=s390x & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linux-x64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linux-x64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linux-x64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linux-x64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=x64 & libc=glibc
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-arm64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=arm64 & libc=musl
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-linuxmusl-x64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64":
|
|
||||||
optional: true
|
|
||||||
conditions: os=linux & cpu=x64 & libc=musl
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-wasm32@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-wasm32@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@emnapi/runtime": "npm:^1.2.0"
|
|
||||||
conditions: cpu=wasm32
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-win32-ia32@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-win32-ia32@npm:0.33.5"
|
|
||||||
conditions: os=win32 & cpu=ia32
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@img/sharp-win32-x64@npm:0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "@img/sharp-win32-x64@npm:0.33.5"
|
|
||||||
conditions: os=win32 & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@isaacs/cliui@npm:^8.0.2":
|
"@isaacs/cliui@npm:^8.0.2":
|
||||||
version: 8.0.2
|
version: 8.0.2
|
||||||
resolution: "@isaacs/cliui@npm:8.0.2"
|
resolution: "@isaacs/cliui@npm:8.0.2"
|
||||||
@ -2546,7 +2362,6 @@ __metadata:
|
|||||||
remark-gfm: "npm:^4.0.0"
|
remark-gfm: "npm:^4.0.0"
|
||||||
remark-math: "npm:^6.0.0"
|
remark-math: "npm:^6.0.0"
|
||||||
sass: "npm:^1.77.2"
|
sass: "npm:^1.77.2"
|
||||||
sharp: "npm:^0.33.5"
|
|
||||||
styled-components: "npm:^6.1.11"
|
styled-components: "npm:^6.1.11"
|
||||||
tinycolor2: "npm:^1.6.0"
|
tinycolor2: "npm:^1.6.0"
|
||||||
typescript: "npm:^5.6.2"
|
typescript: "npm:^5.6.2"
|
||||||
@ -3798,23 +3613,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"color-name@npm:^1.0.0, color-name@npm:~1.1.4":
|
"color-name@npm:~1.1.4":
|
||||||
version: 1.1.4
|
version: 1.1.4
|
||||||
resolution: "color-name@npm:1.1.4"
|
resolution: "color-name@npm:1.1.4"
|
||||||
checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95
|
checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"color-string@npm:^1.9.0":
|
|
||||||
version: 1.9.1
|
|
||||||
resolution: "color-string@npm:1.9.1"
|
|
||||||
dependencies:
|
|
||||||
color-name: "npm:^1.0.0"
|
|
||||||
simple-swizzle: "npm:^0.2.2"
|
|
||||||
checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"color-support@npm:^1.1.3":
|
"color-support@npm:^1.1.3":
|
||||||
version: 1.1.3
|
version: 1.1.3
|
||||||
resolution: "color-support@npm:1.1.3"
|
resolution: "color-support@npm:1.1.3"
|
||||||
@ -3824,16 +3629,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"color@npm:^4.2.3":
|
|
||||||
version: 4.2.3
|
|
||||||
resolution: "color@npm:4.2.3"
|
|
||||||
dependencies:
|
|
||||||
color-convert: "npm:^2.0.1"
|
|
||||||
color-string: "npm:^1.9.0"
|
|
||||||
checksum: 10c0/7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"combined-stream@npm:^1.0.6, combined-stream@npm:^1.0.8, combined-stream@npm:~1.0.6":
|
"combined-stream@npm:^1.0.6, combined-stream@npm:^1.0.8, combined-stream@npm:~1.0.6":
|
||||||
version: 1.0.8
|
version: 1.0.8
|
||||||
resolution: "combined-stream@npm:1.0.8"
|
resolution: "combined-stream@npm:1.0.8"
|
||||||
@ -4386,7 +4181,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.3":
|
"detect-libc@npm:^2.0.0":
|
||||||
version: 2.0.3
|
version: 2.0.3
|
||||||
resolution: "detect-libc@npm:2.0.3"
|
resolution: "detect-libc@npm:2.0.3"
|
||||||
checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7
|
checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7
|
||||||
@ -6782,13 +6577,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"is-arrayish@npm:^0.3.1":
|
|
||||||
version: 0.3.2
|
|
||||||
resolution: "is-arrayish@npm:0.3.2"
|
|
||||||
checksum: 10c0/f59b43dc1d129edb6f0e282595e56477f98c40278a2acdc8b0a5c57097c9eff8fe55470493df5775478cf32a4dc8eaf6d3a749f07ceee5bc263a78b2434f6a54
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"is-async-function@npm:^2.0.0":
|
"is-async-function@npm:^2.0.0":
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
resolution: "is-async-function@npm:2.0.0"
|
resolution: "is-async-function@npm:2.0.0"
|
||||||
@ -11333,75 +11121,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"sharp@npm:^0.33.5":
|
|
||||||
version: 0.33.5
|
|
||||||
resolution: "sharp@npm:0.33.5"
|
|
||||||
dependencies:
|
|
||||||
"@img/sharp-darwin-arm64": "npm:0.33.5"
|
|
||||||
"@img/sharp-darwin-x64": "npm:0.33.5"
|
|
||||||
"@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-darwin-x64": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-linux-arm": "npm:1.0.5"
|
|
||||||
"@img/sharp-libvips-linux-arm64": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-linux-s390x": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-linux-x64": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
|
|
||||||
"@img/sharp-linux-arm": "npm:0.33.5"
|
|
||||||
"@img/sharp-linux-arm64": "npm:0.33.5"
|
|
||||||
"@img/sharp-linux-s390x": "npm:0.33.5"
|
|
||||||
"@img/sharp-linux-x64": "npm:0.33.5"
|
|
||||||
"@img/sharp-linuxmusl-arm64": "npm:0.33.5"
|
|
||||||
"@img/sharp-linuxmusl-x64": "npm:0.33.5"
|
|
||||||
"@img/sharp-wasm32": "npm:0.33.5"
|
|
||||||
"@img/sharp-win32-ia32": "npm:0.33.5"
|
|
||||||
"@img/sharp-win32-x64": "npm:0.33.5"
|
|
||||||
color: "npm:^4.2.3"
|
|
||||||
detect-libc: "npm:^2.0.3"
|
|
||||||
semver: "npm:^7.6.3"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@img/sharp-darwin-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-darwin-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-darwin-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-darwin-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linux-arm":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linux-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linux-s390x":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linux-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linuxmusl-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-libvips-linuxmusl-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linux-arm":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linux-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linux-s390x":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linux-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linuxmusl-arm64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-linuxmusl-x64":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-wasm32":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-win32-ia32":
|
|
||||||
optional: true
|
|
||||||
"@img/sharp-win32-x64":
|
|
||||||
optional: true
|
|
||||||
checksum: 10c0/6b81421ddfe6ee524d8d77e325c5e147fef22884e1c7b1656dfd89a88d7025894115da02d5f984261bf2e6daa16f98cadd1721c4ba408b4212b1d2a60f233484
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"shebang-command@npm:^2.0.0":
|
"shebang-command@npm:^2.0.0":
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
resolution: "shebang-command@npm:2.0.0"
|
resolution: "shebang-command@npm:2.0.0"
|
||||||
@ -11462,15 +11181,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"simple-swizzle@npm:^0.2.2":
|
|
||||||
version: 0.2.2
|
|
||||||
resolution: "simple-swizzle@npm:0.2.2"
|
|
||||||
dependencies:
|
|
||||||
is-arrayish: "npm:^0.3.1"
|
|
||||||
checksum: 10c0/df5e4662a8c750bdba69af4e8263c5d96fe4cd0f9fe4bdfa3cbdeb45d2e869dff640beaaeb1ef0e99db4d8d2ec92f85508c269f50c972174851bc1ae5bd64308
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"simple-update-notifier@npm:2.0.0":
|
"simple-update-notifier@npm:2.0.0":
|
||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
resolution: "simple-update-notifier@npm:2.0.0"
|
resolution: "simple-update-notifier@npm:2.0.0"
|
||||||
@ -12316,13 +12026,6 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"tslib@npm:^2.4.0":
|
|
||||||
version: 2.8.1
|
|
||||||
resolution: "tslib@npm:2.8.1"
|
|
||||||
checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"tunnel-agent@npm:^0.6.0":
|
"tunnel-agent@npm:^0.6.0":
|
||||||
version: 0.6.0
|
version: 0.6.0
|
||||||
resolution: "tunnel-agent@npm:0.6.0"
|
resolution: "tunnel-agent@npm:0.6.0"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user