Files
libcrypto/package.json
T
2024-05-15 10:36:33 +02:00

30 lines
630 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": {
"result": "git+git@git.pband.ch:typescript/result",
"misc": "git+git@git.pband.ch:typescript/misc",
"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"
}
}