Files
libcrypto/package.json
T
pascal 61f77fab0c
ci/woodpecker/push/test Pipeline failed
Logging
Closes #11
2024-05-15 12:44:00 +02:00

32 lines
702 B
JSON

{
"name": "crypto",
"description": "Various crypto utils for encryption, signature, ...",
"version": "1.0.0",
"author": "Pascal Perrenoud <pascal@pband.ch>",
"module": "index.ts",
"type": "module",
"files": ["index.ts"],
"scripts": {
"test": "bun test"
},
"dependencies": {
"jose": "^5.3.0",
"result": "git+git@git.pband.ch:typescript/result",
"misc": "git+git@git.pband.ch:typescript/misc",
"log": "git+git@git.pband.ch:typescript/log",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.10.2",
"@types/bun": "^1.1.2",
"@types/zxcvbn": "^4.4.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}