27 lines
516 B
JSON
27 lines
516 B
JSON
{
|
|
"name": "crypto-server",
|
|
"description": "Various crypto utils that only works on the server side",
|
|
"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",
|
|
"log": "git+https://git.pband.ch/typescript/log.git"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.1.2"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|