Implement WebResult

This commit is contained in:
2024-05-20 01:06:07 +02:00
commit 3cf4d36c95
5 changed files with 118 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "webresult",
"description": "Extension of Result with a web specific error type",
"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+https://git.pband.ch/typescript/result.git"
},
"devDependencies": {
"@types/bun": "^1.1.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}