Files
crypto-server/package.json
T
pascal baa748cb3e
ci/woodpecker/push/test Pipeline was successful
Unify package.json
2024-05-21 16:09:33 +02:00

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"
}
}