-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 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
66
67
{
"name": "ts-type-cleaner",
"version": "5.1.0",
"description": "🛠️ 智能 TypeScript 类型分析和清理工具 - 专为 Vue3/React 项目设计,自动发现未使用类型、重复定义和类型错误",
"type": "module",
"main": "./lib/index.js",
"bin": {
"ts-type-cleaner": "./bin/cli.js"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin/",
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/cli.js",
"analyze": "node bin/cli.js analyze",
"check": "node bin/cli.js check",
"summary": "node bin/cli.js summary",
"example": "node example.js",
"test": "node --test test/**/*.test.js",
"prepublishOnly": "npm run test"
},
"keywords": [
"typescript",
"type-checker",
"code-analysis",
"static-analysis",
"vue",
"react",
"cli-tool",
"unused-types",
"type-cleaner",
"typescript-analyzer",
"code-quality",
"duplicate-types"
],
"author": "CHENY <ycyplus@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ChenyCHENYU/ts-type-cleaner#readme",
"repository": {
"type": "git",
"url": "https://github.com/ChenyCHENYU/ts-type-cleaner.git"
},
"bugs": {
"url": "https://github.com/ChenyCHENYU/ts-type-cleaner/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ora": "^7.0.1",
"ts-unused-exports": "^11.0.1"
},
"devDependencies": {
"@types/node": "^20.8.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"publishConfig": {
"access": "public"
}
}