Files
smarthash/package.json

68 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",
2023-09-22 13:55:56 +02:00
"version": "3.0.4",
"private": false,
"description": "Cross-environment hash functions (SHA256 and MD5) for Node.js and browsers, with support for strings, streams, and files.",
2020-10-05 15:07:28 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-08-15 04:43:26 +02:00
"scripts": {
2021-03-01 01:26:55 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild tsfolders --allowimplicitany)",
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": "Lossless GmbH",
"license": "MIT",
"devDependencies": {
2023-09-22 13:51:11 +02:00
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.81",
"@types/node": "^20.6.3"
2016-08-15 05:55:09 +02:00
},
"dependencies": {
"@push.rocks/smartenv": "^5.0.5",
2023-09-22 13:51:11 +02:00
"@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartpromise": "^4.0.3",
"@types/through2": "^2.0.39",
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",
"npmextra.json",
"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"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}