-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "ts-typed-errors",
"version": "0.3.0",
"description": "Exhaustive error matching utilities for TypeScript (defineError, matchError, matchErrorOf, wrap)",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --minify --sourcemap",
"test": "vitest",
"prepare": "npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"typescript",
"errors",
"exhaustive",
"pattern matching",
"result"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ackermannQ/ts-typed-errors.git"
},
"author": "Q <ackermann.quentin@gmail.com>",
"license": "MIT",
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0",
"vitepress": "^1.3.4"
}
}