{
	"name": "crypto-hash",
	"version": "3.1.0",
	"description": "Tiny hashing module that uses the native crypto API in Node.js and the browser",
	"license": "MIT",
	"repository": "sindresorhus/crypto-hash",
	"funding": "https://github.com/sponsors/sindresorhus",
	"author": {
		"name": "Sindre Sorhus",
		"email": "sindresorhus@gmail.com",
		"url": "https://sindresorhus.com"
	},
	"type": "module",
	"exports": {
		"types": "./index.d.ts",
		"node": "./index.js",
		"default": "./browser.js"
	},
	"sideEffects": false,
	"engines": {
		"node": ">=18"
	},
	"scripts": {
		"//test": "xo && ava test.js && karmatic test-browser.js && tsd",
		"test": "xo && ava test.js && tsd"
	},
	"files": [
		"index.js",
		"index.d.ts",
		"browser.js",
		"thread.js",
		"utilities.js"
	],
	"keywords": [
		"crypto",
		"hash",
		"isomorphic",
		"hashing",
		"hasher",
		"cryptography",
		"sha1",
		"sha256",
		"sha384",
		"sha512",
		"browser"
	],
	"devDependencies": {
		"@sindresorhus/is": "^7.0.0",
		"ava": "^6.1.3",
		"hash.js": "^1.1.7",
		"tsd": "^0.31.1",
		"xo": "^0.59.2"
	}
}
