32 lines
744 B
JSON
32 lines
744 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": {
|
|
"@types/bun": "^1.1.2",
|
|
"bun": "^1.1.27",
|
|
"logger-console": "git+https://git.pband.ch/typescript/logger-console.git",
|
|
"prettier": "^3.3.3"
|
|
},
|
|
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"index.ts",
|
|
"src"
|
|
]
|
|
}
|