-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 726 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 726 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
{
"name": "backtracker",
"version": "5.0.0",
"description": "Back track in JS code execution and find where a function was called",
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsup src/index.ts --clean --dts --sourcemap --format cjs --target node14 --minify-whitespace --minify-syntax --treeshake"
},
"repository": "git://github.com/PapiOphidian/BackTracker.git",
"keywords": [
"backtrack",
"backtracker",
"back-track",
"back-tracker",
"errors"
],
"author": "PapiOphidian",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.10.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"files": [
"dist",
"README.md"
]
}