Files
libcrypto/package.json
T
2024-09-09 04:04:04 +02:00

32 lines
771 B
JSON

{
"name": "libcrypto",
"description": "Various crypto utils for encryption, signature, ...",
"version": "1.0.0",
"author": "Pascal Perrenoud <pascal@pband.ch>",
"scripts": {
"test": "bun test",
"fmt": "prettier --config .prettierrc '**/*.ts' --write"
},
"dependencies": {
"@noble/curves": "^1.4.0",
"jose": "^5.3.0",
"log": "git+https://git.pband.ch/typescript/log.git",
"misc": "git+https://git.pband.ch/typescript/misc.git"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.10.2",
"@types/bun": "^1.1.2",
"logger-console": "git+https://git.pband.ch/typescript/logger-console.git",
"prettier": "^3.3.3"
},
"module": "index.ts",
"type": "module",
"files": [
"index.ts",
"src"
]
}