-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"version": "1.0.0",
"license": "MIT",
"name": "using-try-catch",
"homepage": "https://github.com/Oda2/using-try-catch",
"main": "dist/cjs/using-try-catch.js",
"module": "dist/esm/using-try-catch.js",
"types": "dist/esm/types/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/types/index.d.ts",
"import": "./dist/esm/using-try-catch.js",
"require": "./dist/cjs/using-try-catch.js"
}
},
"description": "Simplify the use of try-catch",
"author": {
"name": "Renato Oda",
"email": "renato.oda2@gmail.com",
"url": "https://twitter.com/renato_oda"
},
"repository": {
"type": "git",
"url": "https://github.com/Oda2/using-try-catch"
},
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc",
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig.cjs.json",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"keywords": [
"try-catch",
"typescript",
"error"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}