-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.48 KB
/
package.json
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
64
65
66
67
{
"name": "@tuplo/unhandler",
"description": "Creates bug reports for uncaught exceptions and unhandled rejections",
"version": "0.0.0-development",
"repository": "[email protected]:tuplo/unhandler.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"error handling",
"error monitoring",
"github issues"
],
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/github.d.ts"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": [
{
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/index.js"
]
},
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsx sh/build.ts",
"dev": "tsx sh/dev.ts",
"format": "prettier --write src sh",
"lint:ts": "tsc --noEmit",
"lint": "eslint src",
"coverage": "tsx sh/coverage.ts",
"test:ci": "vitest run",
"test": "vitest --watch",
"upgrade": "npm-check-updates -u && npm install"
},
"devDependencies": {
"@tuplo/shell": "1.2.2",
"@types/node": "22.5.0",
"@vitest/coverage-v8": "2.0.5",
"esbuild": "0.23.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unicorn": "55.0.0",
"eslint-plugin-vitest": "0.5.4",
"npm-check-updates": "17.1.0",
"nyc": "17.0.0",
"prettier": "3.3.3",
"tsup": "8.2.4",
"tsx": "4.17.0",
"typescript": "5.5.4",
"typescript-eslint": "8.2.0",
"vitest": "2.0.5"
}
}