Files
smarthash/package.json
T

73 lines
1.7 KiB
JSON
Raw Normal View History

2016-08-15 04:43:26 +02:00
{
2023-07-10 02:56:14 +02:00
"name": "@push.rocks/smarthash",
2025-09-12 21:52:23 +00:00
"version": "3.2.6",
"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",
2025-06-19 23:43:43 +00:00
"./web": "./dist_ts_web/index.js"
},
2016-08-15 04:43:26 +02:00
"scripts": {
2021-03-01 01:26:55 +00:00
"test": "(tstest test/ --web)",
"build": "tsbuild tsfolders",
2022-06-26 11:34:09 +02:00
"buildDocs": "tsdoc"
2016-08-15 04:43:26 +02:00
},
"keywords": [
2024-04-14 17:40:33 +02:00
"crypto",
"hashing",
"SHA256",
"MD5",
"security",
"node.js",
"browser",
"cross-environment",
"web crypto",
2024-04-14 17:40:33 +02:00
"stream hashing",
"file hashing",
"synchronous hashing",
"asynchronous hashing",
"data integrity",
"typescript"
2016-08-15 04:43:26 +02:00
],
"author": "Task Venture Capital GmbH",
2016-08-15 04:43:26 +02:00
"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"
2016-08-15 05:55:09 +02:00
},
"dependencies": {
"@push.rocks/smartenv": "^6.0.0",
"@push.rocks/smartjson": "^6.0.1",
"@push.rocks/smartpromise": "^4.2.3",
"@types/through2": "^2.0.41",
2020-10-05 15:07:28 +00:00
"through2": "^4.0.2"
2019-07-04 16:56:37 +02:00
},
"files": [
2019-11-21 14:20:57 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-10-05 15:07:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-21 14:20:57 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-04 16:56:37 +02:00
"cli.js",
".smartconfig.json",
2019-07-04 16:56:37 +02:00
"readme.md"
2020-10-05 15:07:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-06-26 11:34:09 +02:00
],
2024-05-29 14:13:30 +02:00
"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"
}