Files
smarthash/package.json
T
2026-04-30 07:25:50 +00:00

73 lines
1.7 KiB
JSON

{
"name": "@push.rocks/smarthash",
"version": "3.2.7",
"private": false,
"description": "Cross-environment hash functions (SHA256 and MD5) for Node.js and browsers, with support for strings, streams, and files.",
"exports": {
".": "./dist_ts/index.js",
"./web": "./dist_ts_web/index.js"
},
"scripts": {
"test": "(tstest test/ --web)",
"build": "tsbuild tsfolders",
"buildDocs": "tsdoc"
},
"keywords": [
"crypto",
"hashing",
"SHA256",
"MD5",
"security",
"node.js",
"browser",
"cross-environment",
"web crypto",
"stream hashing",
"file hashing",
"synchronous hashing",
"asynchronous hashing",
"data integrity",
"typescript"
],
"author": "Task Venture Capital GmbH",
"license": "MIT",
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
},
"dependencies": {
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartjson": "^6.0.1",
"@push.rocks/smartpromise": "^4.2.3",
"@types/through2": "^2.0.41",
"through2": "^4.0.2"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"type": "module",
"homepage": "https://code.foss.global/push.rocks/smarthash",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarthash.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smarthash/issues"
},
"packageManager": "pnpm@10.28.2"
}