-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.59 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
68
69
70
71
72
73
74
75
76
{
"name": "xception",
"version": "7.0.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18"
},
"description": "Handle exception smart.",
"keywords": [
"callstack",
"cause",
"code",
"custom",
"data",
"error",
"exception",
"extendable",
"frame",
"meta",
"repack",
"source",
"stack",
"trace",
"wrap"
],
"homepage": "https://github.com/alvis/xception#readme",
"bugs": {
"url": "https://github.com/alvis/xception/issues"
},
"license": "MIT",
"author": {
"name": "Alvis HT Tang",
"email": "[email protected]"
},
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./render": {
"types": "./lib/render.d.ts",
"default": "./lib/render.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "run build",
"coverage": "run coverage --",
"lint": "run lint --",
"prepare": "run prepare",
"prepublishOnly": "run prepublishOnly",
"release": "run release --",
"test": "run test --",
"watch": "run watch --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/xception.git"
},
"devDependencies": {
"@types/node": "^18.8.0",
"presetter-preset-esm": "^5.0.0",
"presetter-preset-strict": "^5.0.0",
"presetter": "^5.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"highlight-es": "^1.0.0",
"type-fest": "^4.23.0",
"yaml": "^2.6.0"
}
}