-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "tracefile",
"version": "0.1.1",
"type": "module",
"description": "Show why a file exists: git history, who imports it, and how it's grown over time.",
"main": "index.js",
"scripts": {
"build": "tsdown src/cli.ts --format esm",
"test": "node --test src/**/*.test.ts"
},
"bin": {
"tracefile": "dist/cli.mjs"
},
"keywords": [
"cli",
"typescript",
"git",
"code-archaeology",
"developer-tools",
"static-analysis",
"ts-morph"
],
"author": "Md. Rashel (https://github.com/codebyrashel)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/codebyrashel/tracefile.git"
},
"bugs": {
"url": "https://github.com/codebyrashel/tracefile/issues"
},
"homepage": "https://github.com/codebyrashel/tracefile#readme",
"files": [
"dist"
],
"dependencies": {
"chalk": "^6.0.0",
"commander": "^15.0.0",
"simple-git": "^3.36.0",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
}
}