You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@netlify/blobs

Package Overview
Dependencies
Maintainers
19
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netlify/blobs - npm Package Compare versions

Comparing version

to
2.1.0-rc.1

dist/main.cjs

42

package.json
{
"name": "@netlify/blobs",
"version": "2.0.0",
"version": "2.1.0-rc.1",
"description": "A JavaScript client for the Netlify Blob Store",
"type": "module",
"main": "./dist/src/main.js",
"exports": "./dist/src/main.js",
"engines": {
"node": "^14.16.0 || >=16.0.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"path": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"path": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"path": "./dist/index.js"
}
}
},
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"!dist/src/**/*.test.d.ts"
"dist/**/*"
],

@@ -16,4 +34,4 @@ "scripts": {

"build:check": "tsc",
"build:transpile": "esbuild src/main.ts --bundle --outdir=dist/src --platform=node --format=esm",
"dev": "esbuild src/main.ts --bundle --outdir=dist/src --platform=node --format=esm --watch",
"build:transpile": "./build.mjs",
"dev": "./build.mjs --watch",
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",

@@ -59,13 +77,9 @@ "prepublishOnly": "npm ci && npm test",

"node-fetch": "^3.3.1",
"p-map": "^6.0.0",
"semver": "^7.5.3",
"tmp-promise": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.0.0",
"vitest": "^0.34.0"
},
"engines": {
"node": "^14.16.0 || >=16.0.0"
},
"dependencies": {
"p-map": "^6.0.0"
}
}