-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 Bytes
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
{
"name": "trycat",
"version": "0.2.4",
"description": "A lightweight, type-safe, zero-dependency implementation of the Result type.",
"keywords": ["result", "result-type", "error-handling", "error", "monad", "rust", "rust-result"],
"author": "kennethnym",
"license": "MIT",
"type": "module",
"main": "./dist/trycat.cjs",
"module": "./dist/trycat.js",
"types": "./dist/trycat.d.ts",
"files": ["dist", "LICENSE", "README.md", "package.json"],
"exports": {
".": {
"require": "./dist/trycat.cjs",
"import": "./dist/trycat.js",
"types": "./dist/trycat.d.ts"
}
},
"scripts": {
"test": "vitest run",
"prepublish": "tsup trycat.ts --dts --format cjs,esm",
"build": "tsup trycat.ts --dts --format cjs,esm",
"docs": "typedoc --out docs trycat.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}