-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 870 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@lachero/safe-try",
"version": "1.0.2",
"description": "Simplifies error handling with wrappers for sync and async operations, returning a result-error tuple",
"main": "dist/index.js",
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "rm -rf dist && tsup src/index.ts --format esm --dts",
"build:watch": "rm -rf dist && tsup src/index.ts --watch --format esm --dts",
"release": "npm run build && npm publish"
},
"files": [
"dist"
],
"keywords": [
"try",
"async",
"sync",
"await",
"promise",
"safe"
],
"author": "LacheRo`",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/node": "^22.5.4",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lacherogwu/safe-try"
}
}