-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "deadleaf",
"version": "0.1.1",
"type": "module",
"description": "Find deadleaf files, exports, and dependencies in a TypeScript/JavaScript project with a confidence score and reason for every result.",
"main": "index.js",
"bin": {
"deadleaf": "dist/cli.mjs"
},
"scripts": {
"build": "tsdown src/cli.ts --format esm",
"start": "node dist/cli.mjs",
"test": "node --test src/**/*.test.ts"
},
"keywords": [
"cli",
"typescript",
"unused-code",
"dead-code",
"unused-exports",
"unused-dependencies",
"static-analysis",
"ts-morph"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codebyrashel/deadleaf.git"
},
"bugs": {
"url": "https://github.com/codebyrashel/deadleaf/issues"
},
"homepage": "https://github.com/codebyrashel/deadleaf#readme",
"author": "Md. Rashel (https://github.com/codebyrashel)",
"license": "ISC",
"dependencies": {
"chalk": "^6.0.0",
"commander": "^15.0.0",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
}
}