-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.28 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.28 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "go-go-try",
"version": "8.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": "thelinuxlich@gmail.com"
},
"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": "pkgroll",
"lint": "biome lint --write src/*.ts",
"test": "npm run build && npm run lint && vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [
"errors",
"try",
"catch",
"error handling",
"nice-try",
"good-try",
"neverthrow",
"ts-result",
"effect",
"go-go-try",
"gotry",
"go-try"
],
"devDependencies": {
"@ark/attest": "^0.56.0",
"@biomejs/biome": "^2.4.2",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pkgroll": "^2.26.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.ts": ["biome lint --write"]
}
}