-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "@_baba/stack-mapper",
"version": "0.0.1",
"description": "A CLI tool to map stack traces to source code.",
"bin": {
"stackmapper": "./bin/cli.js"
},
"main": "./dist/cli.js",
"keywords": [
"sourcemap",
"source-map",
"stack",
"stacktrace",
"stack-trace",
"debug",
"cli",
"error",
"errors",
"node",
"nodejs",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BABA983/stack-mapper.git"
},
"author": "BABA <raoqidi@foxmail.com>",
"license": "MIT",
"scripts": {
"dev": "./node_modules/.bin/tsc --watch",
"build": "./node_modules/.bin/rimraf dist && ./node_modules/.bin/tsc -p tsconfig.build.json",
"test": "vitest"
},
"dependencies": {
"commander": "^12.1.0",
"source-map": "^0.7.4",
"stacktrace-parser": "^0.1.10"
},
"devDependencies": {
"@types/node": "^20.16.5",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20.14.0"
},
"files": [
"dist",
"bin"
]
}