-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "insightcode-cli",
"version": "0.8.0",
"description": "TypeScript code quality analyzer that runs 100% locally",
"main": "dist/cli.js",
"bin": {
"insightcode": "dist/cli.js"
},
"scripts": {
"dev": "tsx watch src/cli.ts",
"start": "tsx src/cli.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest",
"prepublishOnly": "npm run build",
"benchmark:production": "tsx src/benchmark.ts --production",
"benchmark:full": "tsx --max-old-space-size=8192 src/benchmark.ts",
"validate-docs": "node scripts/validate-docs.js",
"generate-docs": "node scripts/validate-docs.js generate",
"validate-coefficients": "node scripts/validate-coefficients.js",
"validate-powers": "node scripts/validate-power-coefficients.js",
"test:duplication-modes": "npm run build && node scripts/test-duplication-modes.js",
"qa": "npm run build && npm test && npm run validate-docs",
"prepare": "husky",
"knip": "knip"
},
"keywords": [
"typescript",
"code-quality",
"analyzer",
"cli",
"complexity",
"maintainability",
"cyclomatic-complexity",
"code-duplication",
"static-analysis",
"developer-tools",
"dependencies"
],
"author": "fstepho",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fstepho/insightcode-cli.git"
},
"bugs": {
"url": "https://github.com/fstepho/insightcode-cli/issues"
},
"homepage": "https://github.com/fstepho/insightcode-cli#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^13.1.0",
"enhanced-resolve": "^5.18.2",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"ts-morph": "^26.0.0"
},
"devDependencies": {
"@types/node": "^24.0.15",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"knip": "^5.62.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"overrides": {
"npm-run-path": "5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}