Init package

This commit is contained in:
2024-05-21 15:58:00 +02:00
parent eb3466cd72
commit 7a5f406698
2 changed files with 67 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"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", "src"],
"scripts": {
"test": "bun test"
},
"dependencies": {
"jose": "^5.3.0",
"rust": "git+https://git.pband.ch/typescript/rust.git",
"misc": "git+https://git.pband.ch/typescript/misc.git",
"log": "git+https://git.pband.ch/typescript/log.git",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.10.2",
"@types/bun": "^1.1.2",
"@types/zxcvbn": "^4.4.4",
"logger-console": "git+https://git.pband.ch/typescript/logger-console.git"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}