-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.55 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "xception",
"version": "9.0.0",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/xception.git"
},
"license": "MIT",
"author": {
"name": "Alvis HT Tang",
"email": "alvis@hilbert.space"
},
"type": "module",
"imports": {
"#*": "./src/*.ts"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "run build",
"lint": "run lint --",
"prepare": "run prepare",
"prepublishOnly": "run prepublishOnly",
"release": "run release --",
"test": "run test --",
"test:coverage": "run coverage --",
"test:watch": "run watch --"
},
"dependencies": {
"type-fest": "^4.23.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"presetter": "^8.0.0",
"presetter-preset-esm": "^8.0.0",
"presetter-preset-strict": "^8.0.0"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"imports": {
"#*": "./lib/*.js"
}
}
}