36 lines
829 B
JSON
36 lines
829 B
JSON
{
|
|
"name": "hashpass-stack",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write .",
|
|
|
|
"test": "vitest --run",
|
|
"test:watch": "vitest",
|
|
|
|
"benchmark:sha256": "tsx benchmarks/sha256.ts",
|
|
"benchmark:diffie-helman": "tsx benchmarks/diffie-helman.ts",
|
|
"benchmark:encryption": "tsx benchmarks/sekp256k1.ts",
|
|
"benchmark:storage": "tsx benchmarks/storage.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"madge": "^8.0.0",
|
|
"prettier": "^3.6.2",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@bitauth/libauth": "^3.0.0",
|
|
"@noble/secp256k1": "^2.3.0",
|
|
"msgpackr": "^1.11.5",
|
|
"zod": "^4.0.14"
|
|
}
|
|
}
|