Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

sharp

Package Overview
Dependencies
Maintainers
1
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sharp - npm Package Compare versions

Comparing version
0.35.0
to
0.35.1-rc.0
dist/index.d.cts

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

+30
-21
{
"name": "sharp",
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
"version": "0.35.0",
"version": "0.35.1-rc.0",
"author": "Lovell Fuller <npm@lovell.info>",

@@ -101,5 +101,6 @@ "homepage": "https://sharp.pixelplumbing.com",

"test": "npm run lint && npm run test-unit",
"lint": "npm run lint-cpp && npm run lint-js && npm run lint-types",
"lint": "npm run lint-cpp && npm run lint-js && npm run lint-types && npm run lint-publish",
"lint-cpp": "cpplint --quiet src/*.h src/*.cc",
"lint-js": "biome lint",
"lint-publish": "publint --strict",
"lint-types": "tsd --files ./test/types/sharp.test-d.ts",

@@ -124,12 +125,19 @@ "test-leak": "./test/leak/leak.sh",

"module": "./dist/index.mjs",
"types": "./lib/index.d.ts",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": true,
"repository": {
"type": "git",
"url": "git://github.com/lovell/sharp.git"
"url": "git+https://github.com/lovell/sharp.git"
},

@@ -160,5 +168,5 @@ "keywords": [

"optionalDependencies": {
"@img/sharp-darwin-arm64": "0.35.0",
"@img/sharp-darwin-x64": "0.35.0",
"@img/sharp-freebsd-wasm32": "0.35.0",
"@img/sharp-darwin-arm64": "0.35.1-rc.0",
"@img/sharp-darwin-x64": "0.35.1-rc.0",
"@img/sharp-freebsd-wasm32": "0.35.1-rc.0",
"@img/sharp-libvips-darwin-arm64": "1.3.0",

@@ -174,14 +182,14 @@ "@img/sharp-libvips-darwin-x64": "1.3.0",

"@img/sharp-libvips-linuxmusl-x64": "1.3.0",
"@img/sharp-linux-arm": "0.35.0",
"@img/sharp-linux-arm64": "0.35.0",
"@img/sharp-linux-ppc64": "0.35.0",
"@img/sharp-linux-riscv64": "0.35.0",
"@img/sharp-linux-s390x": "0.35.0",
"@img/sharp-linux-x64": "0.35.0",
"@img/sharp-linuxmusl-arm64": "0.35.0",
"@img/sharp-linuxmusl-x64": "0.35.0",
"@img/sharp-webcontainers-wasm32": "0.35.0",
"@img/sharp-win32-arm64": "0.35.0",
"@img/sharp-win32-ia32": "0.35.0",
"@img/sharp-win32-x64": "0.35.0"
"@img/sharp-linux-arm": "0.35.1-rc.0",
"@img/sharp-linux-arm64": "0.35.1-rc.0",
"@img/sharp-linux-ppc64": "0.35.1-rc.0",
"@img/sharp-linux-riscv64": "0.35.1-rc.0",
"@img/sharp-linux-s390x": "0.35.1-rc.0",
"@img/sharp-linux-x64": "0.35.1-rc.0",
"@img/sharp-linuxmusl-arm64": "0.35.1-rc.0",
"@img/sharp-linuxmusl-x64": "0.35.1-rc.0",
"@img/sharp-webcontainers-wasm32": "0.35.1-rc.0",
"@img/sharp-win32-arm64": "0.35.1-rc.0",
"@img/sharp-win32-ia32": "0.35.1-rc.0",
"@img/sharp-win32-x64": "0.35.1-rc.0"
},

@@ -204,2 +212,3 @@ "devDependencies": {

"node-gyp": "^12.4.0",
"publint": "^0.3.21",
"tar-fs": "^3.1.2",

@@ -206,0 +215,0 @@ "tsd": "^0.33.0"

Sorry, the diff of this file is too big to display