isohash/package.json

56 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2020-09-29 16:21:56 +00:00
{
2023-07-10 00:41:20 +00:00
"name": "@push.rocks/isohash",
2024-05-28 10:40:32 +00:00
"version": "2.0.2",
2020-09-29 16:21:56 +00:00
"private": false,
2024-04-14 11:36:35 +00:00
"description": "A cross-environment hash package supporting both browser and Node.js environments.",
2020-09-29 16:21:56 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 12:12:59 +00:00
"type": "module",
2020-09-29 16:21:56 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
},
"devDependencies": {
2024-05-28 10:40:32 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.12.12"
2020-09-29 16:21:56 +00:00
},
"dependencies": {
2024-05-28 10:40:32 +00:00
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smarthash": "^3.0.2"
2020-09-29 16:21:56 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 11:36:35 +00:00
],
"keywords": [
"hashing",
"crypto",
"cross-environment",
"security",
"SHA-256",
"TypeScript",
"browser",
"Node.js"
2024-05-29 12:11:05 +00:00
],
"homepage": "https://code.foss.global/push.rocks/isohash",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/isohash.git"
}
}