🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@smithy/hash-blob-browser

Package Overview
Dependencies
Maintainers
3
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smithy/hash-blob-browser - npm Package Compare versions

Comparing version
4.2.13
to
4.2.14
+6
-7
package.json
{
"name": "@smithy/hash-blob-browser",
"version": "4.2.13",
"version": "4.2.14",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
"build:cjs": "node ../../scripts/inline hash-blob-browser",
"build:es": "yarn g:tsc -p tsconfig.es.json",
"build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",
"build:es:cjs": "yarn g:tsc -p tsconfig.es.json && node ../../scripts/inline hash-blob-browser",
"build:types": "yarn g:tsc -p tsconfig.types.json",
"build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
"stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
"format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
"format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
"stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
"test": "yarn g:vitest run",

@@ -29,3 +28,3 @@ "test:watch": "yarn g:vitest watch"

"@smithy/chunked-blob-reader-native": "^4.2.3",
"@smithy/types": "^4.13.1",
"@smithy/types": "^4.14.0",
"tslib": "^2.6.2"

@@ -32,0 +31,0 @@ },

@@ -6,6 +6,13 @@ # @smithy/sha256-blob-browser

> An internal package
### :warning: Internal API :warning:
## Usage
> This is an internal package.
> That means this is used as a dependency for other, public packages, but
> should not be taken directly as a dependency in your application's `package.json`.
You probably shouldn't, at least directly.
> If you are updating the version of this package, for example to bring in a
> bug-fix, you should do so by updating your application lockfile with
> e.g. `npm up @scope/package` or equivalent command in another
> package manager, rather than taking a direct dependency.
---
import { StreamHasher } from "@smithy/types";
/**
* @internal
*/
export declare const blobHasher: StreamHasher<Blob>;