-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 994 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
40
41
42
43
44
45
46
47
48
49
{
"name": "go-go-try",
"version": "5.0.0",
"description": "Tries to execute a sync/async function, returns a result tuple",
"license": "MIT",
"repository": "thelinuxlich/go-go-try",
"author": {
"name": "Alisson Cavalcante Agiani",
"email": "[email protected]"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npx pkgroll",
"lint": "biome lint --apply src/*.ts",
"test": "npm run build && npm run lint && tsx test.ts"
},
"keywords": [
"errors",
"try",
"catch",
"error handling",
"nice-try",
"good-try",
"go-go-try",
"gotry",
"go-try"
],
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"typescript": "^5.4.5",
"tsx": "^4.9.3"
}
}