-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.5 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
{
"name": "orphants",
"version": "0.1.3",
"description": "Find and remove unused TypeScript type aliases, interfaces, and enums",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"orphants": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/cli.ts src/index.ts --format esm --dts --clean",
"dev": "tsx src/cli.ts",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"pretest:coverage": "npm run build",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"typescript",
"dead-code",
"unused-types",
"static-analysis",
"ts-morph",
"cli",
"lint"
],
"author": "divinaicodes",
"license": "MIT",
"homepage": "https://github.com/false200/orphants#readme",
"bugs": {
"url": "https://github.com/false200/orphants/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/false200/orphants.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^13.1.0",
"ts-morph": "^25.0.1"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.0.8",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}