-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 814 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 814 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
34
35
36
37
38
39
{
"name": "errd",
"version": "1.0.0",
"description": "Collection of error handling utilities for JavaScript and TypeScript.",
"repository": "https://github.com/agent-ly/errd",
"license": "MIT",
"keywords": [
"error",
"rust",
"result",
"option",
"ok",
"err",
"some",
"none",
"go",
"try"
],
"type": "module",
"exports": {
".": "./dist/mod.js",
"./option": "./dist/option.js",
"./result": "./dist/result.js",
"./try": "./dist/try.js",
"./util": "./dist/util.js"
},
"files": [
"dist"
],
"scripts": {
"build:clean": "rm -rf dist",
"build:compile": "tsc -p tsconfig.build.json",
"build": "pnpm build:clean && pnpm build:compile",
"prepack": "pnpm build"
},
"devDependencies": {
"typescript": "5.0.4"
}
}