31 lines
726 B
JSON
31 lines
726 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", "src"],
|
|
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
|
|
"dependencies": {
|
|
"@noble/ed25519": "^2.1.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"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|