Files
pascal b9d806abb1
ci/woodpecker/manual/test Pipeline was successful
Remove noble curves from lib
2024-09-14 15:20:48 +02:00

31 lines
713 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": {
"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"
]
}