-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 981 Bytes
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 981 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@openagenda/verror",
"description": "richer JavaScript errors",
"version": "3.2.0",
"license": "MIT",
"keywords": [
"error",
"errors",
"err",
"exception",
"exceptions",
"custom"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenAgenda/verror.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "index.js",
"jsnext:main": "dist/index.mjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"prepack": "tsup src --clean --format esm,cjs",
"test": "jest"
},
"dependencies": {
"assertion-error": "^1.1.0",
"depd": "^2.0.0",
"inherits": "^2.0.4",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"jest": "^26.1.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}